Use new $stats->print() method.
[irspy-moved-to-github.git] / web / htdocs / details / stats.mc
1 %# $Id: stats.mc,v 1.2 2006-12-15 10:37:29 mike Exp $
2 <%doc>
3 Here are the headings in the Z-Spy version:
4         The ten most commonly supported Bib-1 Use attributes
5         Record syntax support by database
6         Explain support
7         Z39.50 Protocol Services Support
8         Z39.50 Server Atlas
9         Top Domains
10         Implementation
11 You can see his version live at
12         http://targettest.indexdata.com/stat.php
13 Or a static local copy at ../../../archive/stats.html
14
15 There may be way to generate some of this information by cleverly
16 couched searchges, but it would still be necessary to trawl the
17 records in order to find all the results, so we just take the path of
18 least resistance and look at all the records by hand.
19 </%doc>
20 <%perl>
21 my $stats = new ZOOM::IRSpy::Stats("localhost:3313/IR-Explain---1");
22 print "<pre>";
23 $stats->print();
24 print "</pre>\n";
25 </%perl>