Instructions on making the WWWAssign Quiz in the itc account:

These instructions would be for someone who wishes to replicate the WWWAssign Quiz, and is using the itc account. For you to follow along, you would substitute your login for itc and you would substitute the name of your quiz, e.g. "intro", for "wwwassign".
  1. log on to the gamut/email/telnet account (e.g. login itc and password XXXXXXXX)
  2. at the prompt, type "mkdir myclass"
  3. at the prompt, type "cd myclass"
  4. at the prompt, type "mkdir wwwassign"
  5. at the prompt, type "cd wwwassign"
  6. at the prompt, type "pico wwwassign"
  7. in pico, type the following (or paste it in)
    LongName=Web_101_WWWAssign_Quiz
    Roster=/home/staff/itc/myclass/roster
    Teacher=itc
    FilePath=/home/staff/itc/myclass/wwwassign/
    FileList=Section1
    CGIName=/cgi-bin/WWWAssign.cgi
    KeyAvailable=1
    BaseURL=/~itc/web101/
    URLreturn=/~itc/web101/quizzes/index.html
    GradingMethod=last
     
  8. type "Control-x" to exit and save your file
  9. When the pico editor shows "File name to write: wwwassign" hit Enter
    You would change itc to your login, and the BaseURL and URLreturn might be slightly different
  10. at the prompt, type "pico Section1"
  11. in pico, type in (or paste it in):
    Getting and giving feedback is a helpful part of the learning/teaching process.
    true	false
    
    Online quizzes provide an opportunity for students to become more computer literate.
    true	false
    
    Which of the following is a value of online quizzes and tests?
    online quizzes and tests give the student immediate feedback	online quizzes and tests are easier than traditional quizzes and tests	online quizzes and tests require an expensive software program
    
    Faculty (and others) who learn how to create and implement online quizzes:
    will learn valuable computer and Internet skills along the way	are highly paid	are going to be fired soon	must be nerds
    
    QB Online quizzes use a(n) <_> script or program.
    CGI	Perl	Java	Javascript
    
    QN This quiz has how many questions?<_>
    7
    
    QE Why might a faculty member place a quiz online?
    2	90	A faculty member might place a quiz online because it will increase learning.
    
    
  12. type "Control-x" to exit and save your file
  13. When the pico editor shows "File name to write: Section1" hit Enter
  14. type "cd ../"
  15. type "pico roster"
    in pico, type the following:
    itc teacher
    test    test
    pete    breaker 
    
  16. after typing each login (e.g. itc, test, pete) press TAB, then type the password (teacher, test, breaker).
  17. the itc login is named in the descriptor file as the teacher, so it must be included here so that the teacher can login to see quiz results, etc.
  18. type "Control-x" to exit and save your file
    Note: "Control-x" could be "Control-o" to save, but not exit.
  19. type "cd ../" to go back to ~ directory
  20. type "dir" or "dir|more" (if I type dir|more I scroll through the contents with the space bar until I see the myclass info.

    I see:
    drwxr-xr-x   3 itc      staff       8192 Oct 18 09:30 myclass 
    
    and myclass permissions must be:
    -rwxrwxr-x   1 jalucas  system       884 Oct 10 10:55 roster
    
  21. so, I type "chmod 775 roster" and now I see:
    drwxrwxr-x   3 itc      staff       8192 Oct 18 09:30 myclass
    
    type "cd myclass"
  22. type "dir"

    and I see:
    drwxr-xr-x   2 itc      staff       8192 Oct 18 09:24 wwwassign
    -rw-r--r--   1 itc      staff         39 Oct 18 09:30 roster  
    
    wwwassign will have to be drxrwxrwx and roster will have to be -rwxrwxr-x, so

  23. type "chmod 777 wwwassign"
  24. type "chmod 775 roster"

    and I see:
    drwxrwxrwx   2 itc      staff       8192 Oct 18 09:24 wwwassign
    -rwxrwxr-x   1 itc      staff         39 Oct 18 09:30 roster     
    
  25. type "cd wwwassign"

    I see
    -rw-r--r--   1 itc      staff        441 Oct 18 09:24 Section1
    -rw-r--r--   1 itc      staff        262 Oct 18 09:12 wwwassign
     
    wwwassign (descriptor file) is OK, but Section1 must be -rwxrwxr-x, so

  26. type "chmod 775 Section1"
  27. type "cd ../../http/web101/quizzes"
  28. type "pico index.html"

    use arrows to get to the place in the page where you want the link to be, and

  29. type "<a href="http://www.neiu.edu/cgi-bin/WWWAssign.cgi?AssignmentName=/home/staff/itc/myclass/wwwassign/wwwassign">WWWAssign Quiz</a>"