home *** CD-ROM | disk | FTP | other *** search
- --------------------------------------------------------------------------
- FileMgr template keywords
- --------------------------------------------------------------------------
-
- @filename ; full filename 'SAMPLE.ARJ'
- @fileext ; file extension 'ARJ'
- @filesize ; file size
- @filecrc ; file CRC
- @filedesc ; file description
- @fileorigin ; file origin address
- @filefrom ; file from address
- @filepath ; file path (systems)
- @fileexport ; number of system file is forwarded to
- @filerepl ; file wich is replaced by the announced file
- @filemagic ; files 'magic' request name
-
- @areatag ; area tag 'SAMPLE'
- @areaname ; area name 'Sample file areaname'
-
- @grouptag ; group tag 'A'
- @groupname ; group name 'Another group description'
-
- @sysop ; sysop full name 'Erick Van.Emmerik'
- @sysopfirst ; sysop first name 'Erick'
- @system ; system name 'CrossRoads'
- @aka ; active system address '2:281/611'
-
- @msgto ; message 'to' field 'All users'
- @msgfirst ; first part of message 'to' field 'All'
- @quote ; 'quote of the day'. Needs a textfile with quotes (define
- ; in FMSETUP).
- @fsearch ; search argument (only valid for FileFind replies)
-
- @hour ; hours
- @min ; minutes
- @sec ; seconds
-
- @dd ; day '10'
- @d3 ; day 'Thu'
- @day ; day 'Thursday'
- @mm ; month '09'
- @m3 ; month 'Sep'
- @month ; month 'September'
- @yy ; year '92'
- @y4 ; year '1992'
- @dnr ; daynumber
-
- @program ; Current filemgr program version 'FileMgr BETA'
-
- @blockcount ; Number of files in the last block
- @blocksize ; Total size (in bytes) of files in the last block
- @blockkb ; Total size (in Kb) of files in the last block
-
- @totalcount ; Number of files in this announcement
- @totalsize ; Total size (in bytes) of files in this announcement
- @totalkb ; Total size (in Kb) of files in this announcement
-
- --------------------------------------------------------------------------
- FileMgr template formatting commands
- --------------------------------------------------------------------------
- To modify the way FileMgr treats these keywords, use the following syntax:
-
- @(<command>[,<command])<keyword>
-
- Currently, the following commands are supported (suggestions are welcome):
-
- <len> Force lenght to be <length>
-
- @(5)program 'FileM'
- @(15)filename '12345678.123 '
-
- <fr>:<len> Start at pos <fr>, and force length to be <len>
-
- @(2:5)program 'ileMg'
- @(2,15)filename '2345678.123 '
-
- U Force uppercase
-
- @(U)program 'FILEMGR BETA'
- @(U)filename '12345678.123'
-
- L Force lowercase
-
- @(L)program 'filemgr beta'
- @(L)program '12345678.123'
-
- ~ Just try it (in ENET.SOFT for example :-)
-
- @<char> Pad with <char>. Is only valid with <len> or <fr:len>
- This one defaults to <space>
-
- @(@-,15)program 'FileMgr BETA---'
- @(@*,15)filename '12345678.123***'
-
- R Right justification. Only usefull when used with <len> or
- <fr>:<len>.
-
- @(R,15)program ' FileMgr BETA'
- @(R,15)filename ' 12345678.123'
-
- Using the @<char> command
-
- @(R,@-,15)program '---FileMgr BETA'
- @(R,@*,15)filename '***12345678.123'
-
- C Center justification. Only usefull when used with <len> or
- <fr>:<len>.
-
- @(C,16)program ' FileMgr BETA '
- @(C,16)filename ' 12345678.123 '
-
- Using the @<char> command
-
- @(C,@-,16)program '--FileMgr BETA--'
- @(C,@*,16)filename '**12345678.123**'
-
- --------------------------------------------------------------------------
- Some more examples
- --------------------------------------------------------------------------
- @(R,@0,2)dd-@(R,@0,2)mm-@(2)yy '11-03-92'
- --@(R,@-,15)areatag---- '---------PDNPASCL----'
- FileMgr version @(4:4)filename 'FileMgr version 1103'
- @(@0,R,7)filesize '0126482'
- @(R,7)filesize ' 126482'
- --------------------------------------------------------------------------
-