1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
|
$ Message catalog for http-analyze (en)
$ $Id: ha-en.str,v 1.7 1999/11/01 18:33:51 stefan Exp $
$ ### Messages from http-analyze.c ###
1 Registered for
2 Evaluation copy - see %s\n
3 Usage:\n
4 Use `%s -h' for a help list.\n\n
5 \t-h\t\tprint this help list\n
6 \t-d\t\tgenerate short statistics ("daily" mode)\n
7 \t-m\t\tgenerate full statistics ("monthly" mode, default)\n
8 \t-V\t\tprint program version and exit\n
9 \t-3\t\tcreate a VRML 2.0 compliant 3D model\n
10 \t-a\t\tignore requests which required authentication\n
11 \t-e\t\tuse history data even in full statistics mode\n
12 \t-f\t\tcreate an additional frames-based interface\n
13 \t-g\t\t"generic" interface: no navigation panel\n
14 \t-n\t\tcompletely ignore the history data\n
15 \t-q\t\tinclude arguments in CGI URLs\n
16 \t-v\t\tincrement the verbosity level\n
17 \t-x\t\tdon't collect images under "All images"\n
18 \t-y\t\tprint timing stats (if timing code is compiled in)\n
19 \t-c cfgfile\tpathname of the configuration file\n
20 \t-l libdir\tdirectory with buttons and support files\n
21 \t-o outdir\tdirectory to use for the statistics report\n
22 \t-p prvdir\tsubdirectory (private area) for detailed lists\n
23 (`-hh' for more help)\n
24 \t-s opt,...\tsuppress parts of the report
25 \t-t num,...\tsize of top N lists
26 \t-u time\t\ttime-window for unique sessions (default: one day)\n
27 \t-w hits\t\tset the noise-level (hits skipped in overview lists)\n
28 \t-F logfmt\tlogfile format, may be one of auto, clf, dlf, elf\n
29 \t-G suffix,...\tpageview suffixes (in addition to `.html')\n
30 \t-H idxfile,...\tdirectory index filenames (in addition to `index.html')\n
31 \t-I date\t\tskip entries until this date (DD/MM/YYYY or MM/YYYY)\n
32 \t-E date\t\tskip entries after this date (DD/MM/YYYY or MM/YYYY)\n
33 \t-O virtname,...\tadditional virtual names for this server\n
34 \t-P prolog\tpathname of the prolog file for yearly 3D models\n
35 \t-R docroot\tname of the document root to restrict analysis to\n
36 \t-S srvname\tthe official server name:
37 \t-T tldfile\tfile containing a list of all top-level domains\n
38 \t-U srvurl\tthe server's URL:
39 \t-W 3Dwin\t3D window (extern/intern, default: extern)\n
40 \t-s subopt,...\tdefine `subopt' to suppress ...\n
41 \t AVLoad\tthe average load (top hour/min/sec)\n
42 \t URLs\t\tthe overview of URLs/items\n
43 \t URLList\tthe list of all URLs grouped by item\n
44 \t Code404\tthe list of Code 404 (NotFound) responses\n
45 \t Sites\tthe overview of client domains\n
46 \t RSites\tthe overview of reverse client domains\n
47 \t SiteList\tthe list of all hostnames\n
48 \t Agents\tthe overview/list of browser types\n
49 \t Referrer\tthe overview/list of referrer URLs\n
50 \t Country\tthe list of countries\n
51 \t Pageviews\tPageview rating\n
52 \t AuthReq\trequests which required authentication\n
53 \t Graphics\timages such as graphs and pie charts\n
54 \t Hotlinks\thotlinks in the list of all URLs\n
55 \t Interpol\tinterpolation of values in graphs\n
56 \t-t num,...\tdefine size of Top N lists:\n
57 \t #U\t\tnumber of entries in Top N URL list (30)\n
58 \t #L\t\tnumber of entries in Least N URL list (10)\n
59 \t #S\t\tnumber of entries in Top N domain list (30)\n
60 \t #A\t\tnumber of entries in Top N browser list (30)\n
61 \t #R\t\tnumber of entries in Top N referrer URL list (30)\n
62 \t #d\t\tnumber of entries in Top N days list (7)\n
63 \t #h\t\tnumber of entries in Top N hours list (24)\n
64 \t #m\t\tnumber of entries in Top N minutes list (5)\n
65 \t #s\t\tnumber of entries in Top N seconds list (5)\n
66 \t #N\t\tsize of navigation frame in pixels (120)\n\n
67 \tlogfile ...\tname(s) of the logfile(s) or `-' for stdin\n\n
68 Can't parse the current date:
69 Options -d and -m are mutually exclusive\n
70 Too many pageview definitions, ignore
71 Too many index filenames, ignore
72 Illegal value for
73 \t-i newcfg\tcreate a new config file and exit\n
74 Invalid level of subdomains to show: %d ([1-5], using 2)\n
75 Use the command:\n\n\thttp-analyze -r "company name" registration_ID [free|comm]\n\n\
to install the registration ID and optionally the registration images.\n\
If specified, 'free' installs the images for the freeware (personal)\n\
version, while 'comm' installs the images for the commercial version\n\
if they have been unpacked in the current directory according to the\n\
instructions in the email.\n
76 Couldn't write registration information into file
77 Registration information saved in file
78 \t-L lang\t\tLanguage to use for messages\n
79 \t-C chrset\tCharacter set to use in reports\n
80 Timing code not compiled in, -y ignored\n
81 VRML code not compiled in, -3 ignored\n
82 Couldn't determine current directory
83 Can't open file `%s' (%s)\n
84 Can't access `%s' (%s)\n
85 Unknown logfile format:
86 The name of the private directory (%s) may not contain slashes.\n
87 The server name (%s) must be a domain name, not an URL.\n
88 Access Statistics for
89 Invalid time-window for sessions: %s (using 24h)\n
90 Invalid navigation frame size: %d ([80-160], using 124)\n
91 Invalid navigation window size: %dx%d (using 420x190)\n
92 Invalid 3D window size: %dx%d (using 520x420)\n
93 Invalid zero length name for index file.\n
94 Additional index filenames must begin with a slash.\n
95 Invalid pageview prefix/suffix.\n
96 Pageview items must start with a dot ('.') or a slash ('/').\n
97 Invalid zero length name for virtual document root/hostname.\n
98 Can't parse the current date: `%s' (use [DD/]MM/YYYY)\n
99 Can't parse the start date: `%s' (use [DD/]MM/YYYY)\n
100 Can't parse the end date: `%s' (use [DD/]MM/YYYY)\n
101 Can't change into output directory `%s'\n
102 for virthost `%s' in output directory `%s'
103 in output directory `%s'
104 for virthost `%s'
105 in current directory
106 Generating short statistics %s\n
107 Generating full statistics %s\n
108 Couldn't create button directory `%s' (%s)\n
109 Frames creation disabled due to missing buttons\n
110 Can't find VRML prolog file `%s' (%s)\n
111 Skip all entries until %02hu/%3.3s/%04hu\n
112 Stop processing at %02hu/%3.3s/%04hu\n
113 Reading data from `%s'\n
114 Start new period at %02hu/%3.3s/%04hu\n
115 Total entries read: %lu, processed: %lu\n
116 Skipped: %lu corrupt, %lu ignored, %lu empty, %lu invalid, %lu auth\n
117 Clear almost all counters at %02hu/%3.3s/%04hu\n\
Start new period at %02hu/%3.3s/%04hu\n
118 Now reading data from `%s'\n
119 Disorder detected, skip entries from %02hu/%3.3s/%04hu to %02hu/%3.3s/%04hu (%s)\n
120 \tnew session after %hu.%02hu:%02hu:%02hu\n
121 Ignored all %lu logfile entries?!?\n
122 No hits at all?!?\n
123 Let the dust settle down: ignore %lu hits since %02hu/%3.3s/%04hu\n
124 No more hits since %02hu/%3.3s/%04hu\n
125 Statistics complete until %02hu/%3.3s/%04hu\n
126 \nTime to process %lu entries: %ld.%03ld sec (%lu hits/sec)\n\
Time to create the summary: %ld.%03ld sec\n
127 Total time elapsed: %ld.%03ld sec (%lu hits/sec)\n\n
128 Couldn't create subdirectory `%s' (%s)\n
129 NOTE: output files will be created in subdirectory `%s'\n
130 Day
131 Total
132 Average
133 Creating short statistics for %s\n
134 Short statistics for
135 Couldn't install message catalog for language `%s'\n
136 Evaluation version -
137 please register your copy
138 No.
139 Hits
140 Files
141 Cached
142 Pageviews
143 Sessions
144 KB sent
145 days
146 hours
147 minutes
148 seconds
149 Date
150 Date/Time
151 The Top %d %s of the period
152 Full Statistics for
153 Hits:
154 by Day
155 by Weekday & Hour
156 by Country
157 3D model
158 Items/URLs:
159 Top Ten
160 Overview
161 List
162 Not Found
163 Client Domain:
164 Reverse Domain
165 Browser Type:
166 Referrer URL:
167 Summary for
168 Close navigation window
169 WWW Access Statistics for
170 Main Page
171 Invalid name in table format definition: `%s'\n
172 Please use the <A HREF="index.html">non-frames version</A> \
of the summary report.
173 tocGraphic[tocNumber].text+' for '
174 tocGraphic[tocNumber].text+' not available for '
175 No report available for
176 \t-B\t\tcreate buttons and files only and exit\n
177 \t-M\t\tMS IIS mode: URLs are case-insensitive\n
178 Could not find all buttons in %s/%s\n
179 All buttons and files have been installed\n
180 \t-b bufsize\tdefines the size of the I/O buffer (default: 64KB)\n
181 Couldn't install registration images in `%s' (%s).\n
182 Couldn't find registration image %s-%s nor %s in current directory.\n
183 Installed registration images in `%s'\n
184 \t-X\t\tprint URL to file a bug report and exit\n
185 \t-Z showdom\tthe no. of subdomains to display in domain lists\n
186 Disorder detected: the Top Hours/Minutes/Seconds may be inaccurate\n
187 Note: If the images on this and the following pages appear to\n\
be broken, your browser probably can't display PNG images.<BR>\n\
Please use a PNG-capable browser to view the statistics report.\n\
<A HREF="%s">Follow this link</A> to learn more about the PNG image format.
188 save %s: %s [%d;%d]\n
189 NO MESSAGE
190 NO MESSAGE
191 the last 12 months
192 Main Page
193 Online Documentation
194 Creating VRML model for
195 Updating VRML model for
196 The VRML model requires a VRML 2.0 plug-in such as CosmoPlayer from\n\
Cosmo Software. If you have another viewer which is fully VRML 2.0 compliant,\n
197 download the compressed model here
198 Created by
199 Access Statistics
200 Statistics for
201 Frames version
202 (requires JavaScript)
203 Not available (yet)
204 Couldn't create file `index.html'
205 Statistics by
206 ... updating `%s': last report is for %s %hu\n
207 Hits by Month
208 <A HREF="stats.html" TARGET="_self">Short statistics for %s %d</A> \
(updated more frequently)
209 Month
210 Back to the Main Page
211 (requires VRML)
212 Creating full statistics for
213 ... no URLs found\n
214 ... no hostnames found\n
215 ... no user agents found\n
216 ... no referrer URLs found\n
217 Monthly Summary
218 Total hits (any request)
219 Total files sent (Code 200)
220 Total files saved by cache (Code 304)
221 Other response codes (see below)
222 Total pageviews
223 Remaining responses
224 Total KB requested
225 Total KB transferred (Code 200)
226 Total KB saved by cache (Code 304)
227 Total unique URLs
228 Total unique sites
229 Total user sessions
230 NO MESSAGE
231 Total unique agents
232 Total unique referrer URLs
233 Maximum
234 Average
235 Hits per day
236 Files sent per day
237 Files cached per day
238 Pageviews per day
239 Sessions per day
240 KB sent per day
241 Logfile statistics
242 Total logfile entries read
243 Total logfile entries processed
244 Total authenticated requests (skipped)
245 Total authenticated requests (inclusive)
246 Corrupt logfile entries
247 Empty Request Method
248 Unknown Request Method
249 Other Response Codes
250 Request Methods other than GET/POST
251 Hits by Day
252 NO MESSAGE
253 Average load
254 Load by weekday
255 Load by hour
256 The Top %u items/URLs
257 Files chart
258 More details
259 URL
260 The %u least frequently accessed items/URLs
261 The Top %u client domains
262 Domain chart
263 Domain
264 The Top %u browser types
265 Browser chart
266 Browser
267 The Top %u referrer URLs
268 Referrer chart
269 Referrer Host
270 Hits by Country
271 Country chart
272 Country
273 Total hits
274 Hits
275 Files sent
276 Files
277 Files cached
278 Cached
279 User sessions
280 Sessions
281 Data sent (KB)
282 KB sent
283 Data sent (MB)
284 MB sent
285 Bytes sent
286 Size | URL
287 | Hostname
288 | Browser
289 | Referrer URL
290 Noise
291 Items/URLs
292 Reverse Domain
293 Client Domain
294 Browser Type
295 Referrer URL
296 Total Transfers by %s (Overview)
297 Size | URL
298 | Reverse Domain
299 | Domain
300 | Browser Type
301 | Referrer URL
302 | URL
303 (%lu entries below %d hits)\n
304 Not enough memory for table format specification?!?\n
305 | Remaining entries shown above\n
306 ... processing hostnames\n
307 Failed to allocate %u more bytes.\n\
The list of sites will be omitted from the report\n
308 The Top %u Client Domains
309 The list of domains will be omitted from the report\n
310 The list of reverse domains will be omitted from the report\n
311 The detailed list of hostnames will be omitted from the report\n
312 Total Transfers by Client Domain
313 ... processing URLs\n
314 Failed to allocate %u more bytes.\n\
The list of files will be omitted from the report\n
315 The Top %u Items/URLs
316 The overview of filenames (URLs) will be omitted from the report\n
317 The list of filenames (URLs) will be omitted from the report\n
318 Total Transfers by Items/URLs
319 The list of Code 404 NotFound responses will be omitted from the report\n
320 Code 404 Not Found Requests
321 | URL
322 ... processing user agents\n
323 Failed to allocate %u more bytes.\n\
The list of user agents will be omitted from the report\n
324 The Top %u Browser Types
325 The overview of browser types will be omitted from the report\n
326 The list of user agents will be omitted from the report\n
327 Total Transfers by User Agent (Browser)
328 ... processing referrer URLs\n
329 Failed to allocate %u more bytes.\n\
The list of referrer URLs will be omitted from the report\n
330 The Top %u Referrer URLs
331 The overview of referrer URLs will be omitted from the report\n
332 The list of referrer URLs will be omitted from the report\n
333 Total Transfers by Referrer URL
334 Can't create private lists directory `%s'.\n\
The detailed lists will be omitted from the report.\n
335 All images
336 Couldn't compress the VRML model `%s' using gzip?!?\n
337 Not enough memory -- need %u more bytes\n
338 Mon
339 Tue
340 Wed
341 Thu
342 Fri
343 Sat
344 Sun
345 January
346 February
347 March
348 April
349 May
350 June
351 July
352 August
353 September
354 October
355 November
356 December
357 Garbagge detected: %02X, skip binary data until next valid line ...\n
358 Skip Netscape log format definition: `%.23s ...'\n
359 Couldn't find the sitename, skip line %lu: %s\n
360 Couldn't find the virtual hostname, skip line %lu: %s\n
361 Couldn't find the authentication field, skip line %lu: %s\n
362 Couldn't find the date, skip line %lu: %s\n
363 Invalid timestamp detected in line %lu: %s\n
364 Couldn't find start of request, skip line %lu: %s\n
365 Unknown request method, skip line %lu: %s\n
366 Couldn't find end of request, skip line %lu: %s\n
367 Couldn't find the response code, skip line %lu: %s\n
368 Couldn't find the request size, skip line %lu: %s\n
369 Invalid request size, skip line %lu: %s\n
370 Common Logfile Format (CLF) detected\n
371 Hmm, looks like Combined Logfile Format (DLF)\n
372 Hmm, looks like Extended Logfile Format (ELF)\n
373 Empty request?!? Skip line %lu\n
374 | Unknown (no %s found)\n
375 | Unresolved (no %s found)\n
376 | Self Referrer\n
377 Table overflow in ignore list, some host definitions will be skipped.\n
378 Table overflow in ignore list, some URL definitions will be skipped.\n
379 Can't add zero length URL/hostname to the list of ignored items?!?\n
380 Not enough memory to add %s `%s'?!?\n
381 Not enough memory for %s list, some %ss are ignored.\n
382 FILE REFERRER
383 USENET REFERRER
384 FTP REFERRER
385 MAILTO REFERRER
386 Invalid self referrer URL (zero length)\n
387 Invalid font size for `%s': %d ([1-5], reverting to %d)\n
388 Missing third value field in `%s' entry for `%s'.\n
389 Skip invalid entry in file `%s', line %d: %s\n
390 Too few memory for definitions from file `%s', line %d?!?\n
391 Too many index filenames (max %u), ignore `%s'\n
392 Too many pageview items (max %u), ignore `%s'\n
393 Invalid value (%s) for `%s' directive in line %d\n
394 %s value in line %d (%s) must start with either a '/' or '*'.\n
395 Can't open %s file `%s'\n
396 %s file `%s' unreadable or empty\n
$ ### Messages from utils.c ###
397 Can't allocate %lu bytes for I/O buffer\n
398 Best blocksize for I/O is set to %ld KB\n
399 Couldn't execute gzip (%s)\n
400 Couldn't spawn new process (%s)\n
401 No children to wait for (%s)?!?\n
402 [INFO]:
403 [WARNING]:
404 [FATAL]:
405 local WWW server
406 illegal option --
407 option requires an argument --
$ ### Messages from cntrycode.c ###
408 Can't grow country table from %u to %u bytes\n
409 Unresolved
410 AddDomain: not enough memory for `%s (%s)'\n
411 Couldn't open TLD file `%s' for reading\n
412 Invalid entry in TLD file (missing tabs?): %s\n
413 TLD `%s' for `%s' too short/long\n
414 TLDFile: Not enough memory for `%s (%s)'\n
415 Invalid TLD, add `%s' to unresolved\n
$ ### Messages from images.c ###
416 No hits for this month!
417 Hits
418 Files
419 Pageviews
420 Sessions
421 Kilobytes
422 by day
423 by weekday
424 last week
425 by month
426 No hits so far!
427 Average hits by hour
428 No hits for last 12 months!
429 Other
$ ### Messages from vrml.c ###
430 Can't open prolog file `%s' (%s)\n
431 Not a valid VRML 2.0 prolog file: `%s'\n
432 3D Access Statistics for
433 Created by
434 Summary for
435 By Day
436 By Hour
437 Approach
438 Entry
439 Top view
440 Hits by day
441 Hits by hour
442 Top view
443 Total
444 Cached
445 Other
446 Data sent
$ ### Mostly static strings ###
447 Couldn't open button file `%s'\n
448 Couldn't create button `%s' - check permissions of OutputDir\n
449 I/O error during creation of `%s' - removed\n
450 Symlinks are not available on this platform, `BtnSymlink' ignored.\n
451 Symlink to file `%s' failed (%s)\n
452 Missing file `%s' in libdir `%s'\n
453 sitename
454 URL
455 referrer URL
456 user agent
457 Unknown request method
458 Unknown response
459 Yearly summary
460 Monthly totals
461 Hits by Day
462 Average load
463 Top N URLs
464 Top N domains
465 Top N user agents
466 Top N referrer URLs
467 Country list
468 All URLs
469 NotFound responses
470 All domains
471 All reverse domains
472 All user agents
473 All referrer URLs
$ ISO two-letter domain names in cntrycode.h
474 Andorra
475 United Arab Emirates
476 Afghanistan
477 Antigua and Barbuda
478 Anguilla
479 Albania
480 Armenia
481 Netherlands Antilles
482 Angola
483 Antarctica
484 Argentina
485 American Samoa
486 Austria
487 Australia
488 Aruba
489 Azerbaijan
490 Bosnia and Herzegovina
491 Barbados
492 Bangladesh
493 Belgium
494 Burkina Faso
495 Bulgaria
496 Bahrain
497 Burundi
498 Benin
499 Bermuda
500 Brunei Darussalam
501 Bolivia
502 Brazil
503 Bahamas
504 Bhutan
505 Bouvet Island
506 Botswana
507 Belarus
508 Belize
509 Canada
510 Cocos (Keeling) Islands
511 Democratic Republic of the Congo
512 Central African Republic
513 Congo
514 Switzerland
515 Cote D'Ivoire (Ivory Coast)
516 Cook Islands
517 Chile
518 Cameroon
519 China
520 Colombia
521 Costa Rica
522 Czechoslovakia (former)
523 Cuba
524 Cape Verde
525 Christmas Island
526 Cyprus
527 Czech Republic
528 Germany
529 Djibouti
530 Denmark
531 Dominica
532 Dominican Republic
533 Algeria
534 Ecuador
535 Estonia
536 Egypt
537 Western Sahara
538 Eritrea
539 Spain
540 Ethiopia
541 Finland
542 Fiji
543 Falkland Islands (Malvinas)
544 Micronesia
545 Faroe Islands
546 France
547 France, Metropolitan
548 Gabon
549 Great Britain (UK)
550 Grenada
551 Georgia
552 French Guiana
553 Ghana
554 Gibraltar
555 Greenland
556 Gambia
557 Guinea
558 Guadeloupe
559 Equatorial Guinea
560 Greece
561 S. Georgia and S. Sandwich Isls.
562 Guatemala
563 Guam
564 Guinea-Bissau
565 Guyana
566 Hong Kong
567 Heard and McDonald Islands
568 Honduras
569 Croatia (Hrvatska)
570 Haiti
571 Hungary
572 Indonesia
573 Ireland
574 Israel
575 India
576 British Indian Ocean Territory
577 Iraq
578 Iran
579 Iceland
580 Italy
581 Jamaica
582 Jordan
583 Japan
584 Kenya
585 Kyrgyzstan
586 Cambodia
587 Kiribati
588 Comoros
589 Saint Kitts and Nevis
590 Korea (North)
591 Korea (South)
592 Kuwait
593 Cayman Islands
594 Kazakhstan
595 Laos
596 Lebanon
597 Saint Lucia
598 Liechtenstein
599 Sri Lanka
600 Liberia
601 Lesotho
602 Lithuania
603 Luxembourg
604 Latvia
605 Libya
606 Morocco
607 Monaco
608 Moldova
609 Madagascar
610 Marshall Islands
611 Macedonia
612 Mali
613 Myanmar
614 Mongolia
615 Macau
616 Northern Mariana Islands
617 Martinique
618 Mauritania
619 Montserrat
620 Malta
621 Mauritius
622 Maldives
623 Malawi
624 Mexico
625 Malaysia
626 Mozambique
627 Namibia
628 New Caledonia
629 Niger
630 Norfolk Island
631 Nigeria
632 Nicaragua
633 Netherlands
634 Norway
635 Nepal
636 Nauru
637 Neutral Zone
638 Niue
639 New Zealand (Aotearoa)
640 Oman
641 Panama
642 Peru
643 French Polynesia
644 Papua New Guinea
645 Philippines
646 Pakistan
647 Poland
648 St. Pierre and Miquelon
649 Pitcairn
650 Puerto Rico
651 Portugal
652 Palau
653 Paraguay
654 Qatar
655 Reunion
656 Romania
657 Russian Federation
658 Rwanda
659 Saudi Arabia
660 Solomon Islands
661 Seychelles
662 Sudan
663 Sweden
664 Singapore
665 St. Helena
666 Slovenia
667 Svalbard and Jan Mayen Islands
668 Slovak Republic
669 Sierra Leone
670 San Marino
671 Senegal
672 Somalia
673 Suriname
674 Sao Tome and Principe
675 USSR (former)
676 El Salvador
677 Syria
678 Swaziland
679 Turks and Caicos Islands
680 Chad
681 French Southern Territories
682 Togo
683 Thailand
684 Tajikistan
685 Tokelau
686 Turkmenistan
687 Tunisia
688 Tonga
689 East Timor
690 Turkey
691 Trinidad and Tobago
692 Tuvalu
693 Taiwan
694 Tanzania
695 Ukraine
696 Uganda
697 United Kingdom
698 US Minor Outlying Islands
699 United States
700 Uruguay
701 Uzbekistan
702 Vatican City State (Holy See)
703 Saint Vincent and the Grenadines
704 Venezuela
705 Virgin Islands (British)
706 Virgin Islands (U.S.)
707 Viet Nam
708 Vanuatu
709 Wallis and Futuna Islands
710 Samoa
711 Yemen
712 Mayotte
713 Yugoslavia
714 South Africa
715 Zambia
716 Zaire (former)
717 Zimbabwe
$ Other well-known domains.
718 Network
719 International
720 Non-Profit Organization
721 US Commercial
722 US Educational
723 US Government
724 US Military
725 Old style Arpanet
726 Nato field
$ CORE domains
727 WWW Provider
728 Recreation
729 Personal WWW
730 Company/Firm
731 Information
732 Online Shop
733 Arts
$ Messages for automatic setup of configuration file
734 Can't create configuration file `%s' (%s)\n
735 Configuration file `%s' successfully created\n
736 #\n\
# Configuration file for http-analyze\n\
# Generated by %s at %s\n
737 #\n\
# Entries are separated by one or more tabulators.\n\
# The first field is the directive (case-insensitive).\n\
# The second and an optional third field contain the\n\
# string, numerical or boolean values. Most definitions\n\
# here may be overwritten by command line options.\n
$ RegInfo, CustLogo{W,B}
738 \n\
# Registration ID (all versions)\n\
#RegInfo\tPersonal Edition\tRegistration-ID\n\n\
# Customer logos (commercial version only)\n\
# One (W) for use on white background, one (B) for black background.\n\
# Second field is name of logo, third is URL to link to.\n
$ ServerName
739 \n\
# The name of your server (defaults to the local hostname).\n\
# Must be a full qualified domain name (FQDN) here, not an URL.\n
$ ServerURL
740 \n\
# The prefix to use in URLs for hotlinks. Needed only if the\n\
# statistics report is hosted on another server than the pages\n\
# listed in the report. If the protocol specifier is not given,\n\
# 'http' is assumed. Trailing slashes are removed.\n
$ VirtualNames
741 \n\
# Other (virtual) names for this host. If no protocol specifier\n\
# (http, https) is specified explicitely, http-analyze creates\n\
# two entries per name, one with the `http' and another one with\n\
# the `https' protocol specifier. Either the ServerURL or the\n\
# ServerName is added automatically to this list, whichever\n\
# is defined. No additional protocols are added for the latter\n\
# two except the 'http' default. Trailing slashes are removed.\n
$ DocRoot
742 \n\
# The name of a virtual server document root. If defined,\n\
# http-analyze restricts analysis to the given document root.\n\
# If the name is prefixed by a `!', analysis takes place for\n\
# all directories except this subdirctory. If docroot does\n\
# not start with a slash ('/'), it is interpreted as the name\n\
# of a virtual server, which is matched against the (normally\n\
# unused) second field of a logfile entry. Intented for use\n\
# with (software-) virtual servers with a separate Document\n\
# Root or for which the hostname is recorded in the second\n\
# field of a logfile entry.\n
$ LogFile
743 \n\
# The name of the default logfile to be used if none given\n\
# at invocation of http-analyze.\n
$ LogFormat
744 \n\
# The format of the logfile:\n\
#\tauto\tAutomatically determine format (default)\n\
#\tclf\tCommon Logfile Format (CLF)\n\
#\tdlf\tCombined Logfile Format (CLF + Referrer + UserAgent)\n\
#\telf\tExtended Logfile Format (CLF + UserAgent + Referrer)\n
$ DefaultMode, OutputDir
745 \n\
# The default mode of operation now is full statistics ("monthly") mode.\n\
#DefaultMode\tmonthly\n\n\
# The name of the directory where the output files of the statistics\n\
# report are to be created.\n
$ Language, HTMLCharset
746 \n\
# Multi-language support.\n\
# To use a language for every message, define the 'LANG' or the\n\
# 'LC_MESSAGES' environment variable before invoking http-analyze.\n#\n\
# The 'Language' directive can be used to provide statistics\n\
# in other languages, e.g. for customers of an ISP. If set, it\n\
# will change the language every message is displayed in after\n\
# the settings from the configuration file have been loaded.\n#\n\
# HTMLCharSet defines the Content-Encoding to use for the files\n\
# of the statistics report. This may be necessary if the selected\n\
# language requires another char set than the browser's default\n\
# (usually iso-8859-1/latin1). If left undefined, the default is\n\
# 'iso-8859-1', which includes 'us-ascii' as a subset.\n#\n\
# Here are some suggestions for Language (Locale) and\n\
# HTMLCharSet (Encoding) values:\n
747 #\n\
# Country\t\tLocale\tEncoding\n\
# --------------------------------------------------------\n\
# Standard C\t\tC\tus-ascii\n\
# Arabic Countries\tar\tiso-8859-6\n\
# Belarus\t\tbe\tiso-8859-5\n\
# Bulgaria\t\tbg\tiso-8859-5\n\
# Czech Republic\tcs\tiso-8859-2\n\
# Denmark\t\tda\tiso-8859-1\n\
# Germany\t\tde\tiso-8859-1\n\
# Greece\t\tel\tiso-8859-7\n\
# Great Britain\ten\tiso-8859-1\n\
# United States\ten_US\tiso-8859-1\n\
# Spain\t\tes\tiso-8859-1\n\
# Mexico\t\tes_MX\tiso-8859-1\n\
# Finland\t\tfi\tiso-8859-1\n
748 # France\t\tfr\tiso-8859-1\n\
# Belgium\t\tfr_BE\tiso-8859-1\n\
# Canada\t\tfr_CA\tiso-8859-1\n\
# Switzerland\t\tfr_CH\tiso-8859-1\n\
# Croatia\t\thr\tiso-8859-2\n\
# Hungary\t\thu\tiso-8859-2\n\
# Iceland\t\tis\tiso-8859-1\n\
# Italy\t\tit\tiso-8859-1\n\
# Israel\t\tiw\tiso-8859-8\n\
# Japan\t\tja\tShift_JIS or iso-2022-jp\n\
# Korea\t\tko\tEUC-kr or iso-2022-kr\n
749 # Netherlands\t\tnl\tiso-8859-1\n\
# Belgium\t\tnl_BE\tiso-8859-1\n\
# Norway\t\tno\tiso-8859-1\n\
# Poland\t\tpl\tiso-8859-2\n\
# Portugal\t\tpt\tiso-8859-1\n\
# Brazil\t\tpt_BR\tiso-8859-1\n\
# Romania\t\tro\tiso-8859-2\n\
# Russia\t\tru\tKOI8-R or iso-8859-5\n\
# Sweden\t\tsv\tiso-8859-1\n\
# Turkey\t\ttr\tiso-8859-9\n\
# Chinese\t\tzh\tbig5\n\
# --------------------------------------------------------\n#\n
$ PrivateDir
750 \n\
# The name of a private directory where detailed lists are to be placed.\n\
# Must be a subdirectory of OutputDir and may contain no slashes. Note\n\
# that you have to set up server authentication if you want to protect\n\
# those lists. http-analyze just creates the detailed list of URLs, sites,\n\
# agents and referrers in this subdirectory. See the online documentation\n\
# for an example.\n
$ IndexFiles
751 \n\
# Alternate names for directory index files other than "index.html".\n\
# Note: The leading slash is important!\n
$ AuthURL
752 \n\
# Skip all URLs which required authentication. By default, such URLs\n\
# are handled just like all other URLs. Setting AuthURL to Off, No,\n\
# None, False, or 0 causes the analyzer to skip those private URLs\n\
# in the logfile.\n
$ StripCGI
753 \n\
# Remove arguments from CGI-URLs in the overview and detailed lists\n\
# (default: true). Can be set to Off, No, None, False, 0 to have CGI-\n\
# URLs with different arguments listed separately in the report. Note\n\
# that arguments to a CGI-script are recorded in the logfile only for\n\
# scripts using the GET method for passing parameters.\n
$ Pageviews
754 \n\
# Definitions for Pageviews: If the value starts with a slash (/),\n\
# it defines the prefix of an URL which is counted as s pageview\n\
# if hit. If it does not start with a slash, it defines the suffix\n\
# of such an URL. In the latter case, the analyzer prepends a dot\n\
# to the suffix automatically for backward compatibility. Use this\n\
# directive to specify alternate suffixes for text files other than\n\
# ".html" (which is added automatically) and to specify prefixes\n\
# of documents generated by CGI scripts (for example: /cgi-bin/).\n
$ Session
755 \n\
# Time-window for accounting user sessions (default: 24 hours).\n\
# Use t[icks], s[econds], m[inutes], h[ours] or d[ays] after\n\
# the number as a scaling unit.\n
$ ShowDomain
756 \n\
# Level of subdomains in hostnames to use in the Top N sites list as an\n\
# item, under which all hostnames from this domain are lumped together.\n\
# Valid range: 1-5, Default: 2\n
$ NoiseLevel
757 \n\
# Noise level: suppress details about all items with hits below\n\
# this level in order to keep the size of reports manageable.\n
$ ReportTitle
758 \n# The title to display in the statistics reports.\n
$ TLDFile
759 \n\
# The name of a file containing all valid domains.\n\
# You may add top-level domains with up to 6 characters\n\
# in length. See the included file TLD for an example.\n\
# Not needed usually unless you want change the built-in\n\
# list of country names. If TLDFile is set to `none', no\n\
# country list is produced in the summary.\n
$ VRMLProlog
760 \n\
# The name of the VRML prolog file for yearly models.\n\
# For use on graphic workstations only!\n
$ HeadFont, HeadSize, TextFont, TextSize, ListSize, SmallSize
761 \n\
# Font faces and sizes. HeadFont and HeadSize are used for headers,\n\
# while TextFont and TextSize are used for normal text. ListSize (the\n\
# former FontSize directive) is the size of the preformatted text in\n\
# the detailed lists. SmallSize is the size used for small text like\n\
# percentages following the actual numbers, etc.\n\
#\n\
# Valid values for the font face directives are name lists of browser\n\
# fonts or the keyword "default" to use the browser's standard font.\n
762 NO MESSAGE
763 NO MESSAGE
$ HTMLPrefix
764 \n\
# The Prefix to output after the header section (if defined, it must\n\
# include the <BODY> tag). If the string starts with a slash, it is\n\
# taken as the name of a file containing the HTML code.\n
$ HTMLTrailer
765 \n\
# The Trailer to output at the end of a page, immediately before the\n\
# copyright note. If the string starts with a slash, it is taken as\n\
# the name of a file containing the HTML code.\n
$ Suppress
766 \n# Suppress certain parts of the summary.\n
$ TopURLs, LeastURLs, TopSites, TopAgents, TopRefers
$ TopDays, TopHours, TopMinutes, TopSeconds
767 \n\
# The number of URLs, sites, agents and referrers in the "top N" lists.\n\
# If set to zero, the appropriate parts of the summary will be supressed.\n
$ TblFormat
768 \n\
# TblFormat defines the layout of the tables in the report.\n\
# The syntax is:\n\
# TblFormat\ttblname\t\tspecifier\n\
#\n# where `tblname'\tstands for the\n\
#\tMonth\t\tstatistics of the last 12 months (main page)\n\
#\tDay\t\tdaily stats in short & full summaries\n\
#\tLoad\t\taverage load by weekday, hour, minute, second\n\
#\tCountry\t\tCountry list\n\
#\tTopTen\t\tall Top N lists\n\
#\tOverview\tall overviews\n\
#\tLists\t\tall detailed lists (preformatted text)\n\
#\tNotFound\tlist of NotFound responses\n
769 #\n\
# and `specifier' is a list of the following characters:\n#\n\
#\tn\tAn index number/label (don't remove!)\n\
#\th\tThe number of hits (any request)\n\
#\tf\tThe number of files sent (Code 200 OK)\n\
#\tc\tThe number of files saved by cache (Code 304 Not Modified)\n\
#\tp\tThe number of pageviews\n\
#\ts\tThe number of user sessions\n\
#\tk\tThe data sent in KBytes (integer representation)\n\
#\tB\tThe data sent in Bytes (float representation)\n\
#\tL\tA changing label (don't remove!)\n#\n\
# This are the built-in table formats:\n
$ NavigFrame
770 \n# The size of the navigation frame in pixels.\n
$ 3DWindow
771 \n\
# The type of the 3D window:\n\
# extern (new window) or intern (inside frame).\n
$ 3DWinSize
772 \n# The size of the 3D window in pixels (width x height).\n
$ NavWinSize
773 \n\# The size of the navigation window in pixels (width x height).\n
$ MSIISMode
774 \n\
# MSIISMode: Use case-insensitive comparison for URLs. Needed for MS IIS\n\
# which makes no difference between upper- and lower-case characters.\n\
# MS users may regard this as an enhancement, while for the rest of\n\
# the world this is just a violation of RFC 2068 and should be ignored.\n
$ IgnSys, IgnURL, HideSys, HideURL
775 \n#\n\
# List of sites and URLs to ignore or hide.\n\
# Format:\n\
#\tIgnSys <tab> HOST\n\
#\tIgnURL <tab> URL\n\
#\tHideSys <tab> HOST <tab> DESC [TLD]\n\
#\tHideURL <tab> URL <tab> DESC\n#\n\
#\tURL is the file's URL relative to the Document Root of the server\n\
#\tHOST is a full qualified domain name\n\
#\tDESC is the new category this item is hidden under\n
776 #\n\
# The URL/hostname may either begin or end with a `*'\n\
# wildcard. There is only one wildcard allowed. The `*'\n\
# must be the first or very last character of the string.\n\
# Inside the string, a `*' is taken literal.\n#\n\
# If an URL doesn't start with a `*', it's first character\n\
# must be a slash (`/').\n\
# If DESC begins with the character `[', the item is not\n\
# shown in any of the "Top Ten" lists.\n
777 \n\
# Ignore this hostnames. Increases processing time by a\n\
# significant amount, so keep this list small or don't\n\
# use it at all if speed is a concern.\n
778 \n\
# Ignore this URLs. Increases processing time by a\n\
# significant amount, so keep this list small or don't\n\
# use it at all if speed is a concern.\n
779 \n\
# Hide this hostnames. May be used to map local IP numbers\n\
# to hostnames. See the online documentation for examples.\n
780 \n# Hide this URLs.\n\
# Square brackets around the item means to suppress\n\
# the item from the Top N lists.\n
$ HideAgent
781 \n\
# Browser types to be added to the browser list.\n\
# Needed for a certain browser type whose vendor\n\
# still can't spell it's name correctly.\n
$ HideRefer
782 \n\
# Referrers to be added to the referrer list. If a string in\n\
# square brackets is given, this is the CGI parameter which\n\
# specifies the search key for search engines.\n
$ AddDomain
783 \n# Mock domains to be added to the Country list.\n
$ BtnSymlink
784 \n\
# Use symlinks for the required files and buttons if missing.\n\
# Requires installation of all files/buttons in HA_LIBDIR.\n
|