home *** CD-ROM | disk | FTP | other *** search
/ Amiga Times / AmigaTimes.iso / programme / trionbbs110 / Trion / docs / Utils / topdl.doc < prev    next >
Encoding:
Text File  |  1998-10-06  |  2.7 KB  |  114 lines

  1.  
  2.  
  3.  
  4.    =====( TopDL V1.12 )===============================================
  5.  
  6.  
  7.         Trion 'TopDownloaders' Utility.
  8.  
  9.         (c) Copyright Paul Spijkerman, '94-'98. All rights reserved.
  10.  
  11.         Written for use with the Trion BBS package.
  12.  
  13.  
  14.    ===================================================================
  15.  
  16.  
  17.    This is a little programm that makes an ANSI screen of the
  18.    top-10 of people who did the most file transfers.
  19.  
  20.    Later the program was upgraded with extra modes to
  21.    make stats of people who made the most calls, of people
  22.    who are the most people on line and of people who wrote
  23.    the most messages.
  24.  
  25.  
  26.    It shows in on 1 ANSI screen total 4 top-10 of people who:
  27.  
  28.    Uploaded the most bytes.
  29.    Uploaded the most files.
  30.    Downloaded the most bytes.
  31.    Downloaded the most files.
  32.  
  33.    Also it can make screens with a top-15 of only one of the mentioned
  34.    modes and the modes listed here:
  35.  
  36.    Top Call numbers
  37.    Top Minutes online
  38.    Top Messages written
  39.  
  40.  
  41.  
  42.    Note that "TopDL" maybe a little slow scanning all users for
  43.    their stats. There is a program "ScanUserStats" which does the
  44.    same as TopDL but stores the result in a binary files.
  45.    The program ShowStats can produce ANSI files of these stats.
  46.  
  47.  
  48.  
  49.    You start the program with a number on the commandline to
  50.    indicate which screen should be made.
  51.  
  52.    Use the -S flag on the command line if you don't want Users
  53.    with Sysop level in the list. They probably are in the top-5
  54.    of users with the most calls, most minutes online and most
  55.    messages written.
  56.  
  57.  
  58.     TrionTopDL V1.12 (c)94-97 Paul Spijkerman.
  59.     Use : TopDL [n] [-options] >file
  60.  
  61.     Options:   -s   .. Don't use users with sysop level
  62.  
  63.     n = 0 .. Top Downloads/uploads Bytes/file    (Default)
  64.     n = 1 .. Top Downloaded Files
  65.     n = 2 .. Top Downloaded Bytes
  66.     n = 3 .. Top Uploaded   Files
  67.     n = 4 .. Top Uploaded   Bytes
  68.     n = 5 .. Top Call number
  69.     n = 6 .. Top Minutes online
  70.     n = 7 .. Top Messages written
  71.  
  72.  
  73.  
  74.  
  75.    You can use it in different ways.
  76.  
  77.    Making a screen takes a little time, so you could make
  78.    a screen once a day with the folowing.
  79.  
  80.    Add something like this to the 'maintenance script':
  81.  
  82.  
  83.    topdl 0 >trion:text/topdl.ansi
  84.  
  85.  
  86.    This line redirects the output of topdl to a file called
  87.    trion:text/topdl.ansi wich is an ANSI screen.
  88.    Wich can be shown with someting like this:
  89.  
  90.  
  91. Cmd "T" , 0 - 255
  92.    PrintFile   "trion:text/topdl.ansi"
  93.    More
  94. EndCmd
  95.  
  96.  
  97.  
  98.    Another use could be adding it as a command to a menu.
  99.    Note that it takes a little time to make the screen.
  100.  
  101.    In that case, add something like the folowing to the
  102.    bulletin menu:
  103.  
  104.  
  105. Cmd "O" , 0-255
  106.    CliDoor  "trion:utils/topDL 0"
  107.    More
  108. EndCmd
  109.  
  110.  
  111.  
  112.  
  113.  
  114.