home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / vrac / nwbth127.zip / NEWBOOTH.DOC < prev    next >
Text File  |  1994-02-21  |  3KB  |  106 lines

  1.  
  2.                  NewBooth 1.27 Copyright 1992-94  Keith N. Cochran
  3.  
  4.   NewBooth is a door which is part of the Voter Plus Voting Door System.
  5.  
  6.   It is meant to be run as a login type door, and when run, will notify
  7.   the caller if a new voting booth has been created and optionally whether
  8.   any booths have been modified since their last call date/time.
  9.  
  10.   Also optionally, the caller may directly enter the Voter Plus Door and
  11.   vote on any new booths.
  12.  
  13.  
  14.   NewBooth 1.27 will only work with versions of Voter Plus 1.93 and later.
  15.  
  16.  
  17.   Installing NewBooth:
  18.  
  19.   -[ Step 1 ]-----------------------------
  20.   
  21.   Create a door batch file for NewBooth
  22.  
  23.  
  24.   @echo off
  25.   cd \newbooth
  26.   NEWBOOTH.EXE NEWBOOTH.CNF C:\PCB C:\VOTE\VOTER.CNF
  27.   cd \pcb      ──────────── ─────- ────────────────-
  28.                │            │      └── PATH and NAME of VOTER.CNF file
  29.                │            │      
  30.                │            └─────── Location ONLY for this node's
  31.                │                     door information file.
  32.                └─ Config file name
  33.  
  34.  
  35. The following is optional and works with line 8 in NEWBOOTH.CNF
  36.  
  37. If the caller answers Yes as to whether they wish to vote now,
  38. NewBooth will return an ERRORLEVEL of 1.  The "set VPLUSCMD=N"
  39. statement will activate the "Auto-Vote" option in the Voter Plus
  40. door and will take the caller directly to the Voting process.
  41. Be sure to set the VPLUSCMD environment back to "" afterwards
  42. with the "SET VPLUSCMD=" statement.
  43.  
  44. Be advised that if the door batch file that calls NewBooth is a PCB
  45. shell type door, that there may be insufficient memory available to
  46. run the Voter Plus program.  It works fine here in a 565k DV window.
  47.  
  48.  
  49. {Call NewBooth as shown above}
  50.  
  51. if errorlevel == 1 goto VOTE
  52. goto jump
  53.  
  54. :VOTE
  55. J:
  56. cd \pcb1\door\provote
  57. set VPLUSCMD=N
  58. voter voter.cnf D:\pcb1
  59. SET VPLUSCMD=
  60. :JUMP
  61.  
  62. {Continue on with rest of login batch file}
  63.  
  64.  
  65.   Tell your BBS you have installed NewBooth.
  66.  
  67.   ***********************************************************
  68.   ****  Make sure you toggle the LOGIN flag in DOORS.LST ****
  69.   ***********************************************************
  70.  
  71.  
  72.    -[ Step 2 ]-----------------------------
  73.  
  74.   Modify the NEWBOOTH.CNF file
  75.  
  76.   interrupt
  77.   PCB
  78.   C:\PCB1\DOORS\VOTER\
  79.   20
  80.   YES
  81.   YES
  82.   YES
  83.   YES
  84.     
  85.   @X0B To vote on a booth, simply type @X09VOTE @X0Bat the Main Command prompt.
  86.     
  87.  
  88.   Line  1 - INTERRUPT or FOSSIL
  89.   Line  2 - BBS type - PCB or SPIT
  90.   Line  3 - Path to where VOTER.EXE resides. (Include trailing "\")
  91.   Line  4 - Prompt delay length.  1 equals .5 sec.
  92.   Line  5 - Skip display if no NEW booths. YES/NO
  93.   Line  6 - Show CHANGED as well as NEW booths. YES/NO
  94.   Line  7 - Show RESET as well as NEW booths. YES/NO
  95.   Line  8 - Ask caller if they want to VOTE now. YES/NO
  96.   Line  9 - 
  97.   Line 10 - @X0B To vote on a booth, simply type @X09VOTE @X0Bat the Main Command prompt.
  98.   Line 11 - 
  99.  
  100.             Lines 9-11 will be displayed after the new booths are listed.
  101.   
  102.  
  103.             That's about it.
  104.  
  105. ***************************************************************************
  106.