Differences between revisions 1 and 19 (spanning 18 versions)
Revision 1 as of 2013-01-04 14:06:24
Size: 1740
Comment:
Revision 19 as of 2020-06-19 07:37:14
Size: 3042
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#acl All:read
Line 2: Line 4:
||<#CCCC00-2>||
||<#FFFFAD> [[https://cgi.cse.unsw.edu.au/~give/Student/give.php | Manage Assignments]]<<BR>>~+`classrun [give|check|collect]`+~||<#FFFFAD> [[https://cgi.cse.unsw.edu.au/~give/Student/sturec.php | View Marks]] ~+`?session=YYsS`+~<<BR>>~+`classrun [YYsS] sturec`+~||
Line 5: Line 9:
   `% 9999 classrun ...`    ~+`% 9999 classrun ...`+~
Line 8: Line 12:
   `% ssss9999 classrun ...`    ~+`% ssss9999 classrun ...`+~
Line 13: Line 17:
   ||<#E0E0E0(-2> From the student's account ||
   ||`classrun -give <assignment> <files>...` || (~- aka -~ `give`) submit assignments ||
   ||`classrun -check <assignment>` || check submissions ||
   ||`classrun -collect <assignment>` || collect marked assignments ||
   ||`classrun -sturec` || view marks (student) ||
   ||<#E0E0E0(-2> From the student's account ||
   ||~+`classrun -give <assignment> <files>...`+~ || submit assignments,<<BR>>known in this form: ~+`give <account> <assignment> <files>...`+~ ||
   ||~+`classrun -check <assignment>`+~ || check submissions ||
   ||~+`classrun -collect <assignment>`+~ || collect marked assignments ||
   ||~+`classrun [YYsS] -sturec`+~ || view marks (student) ||
Line 19: Line 23:
   ||`classrun -mark` || mark assignments ||
   ||`classrun -rsms` || enter marks ||
   ||<#E0E0E0(-2> From the class account ||
   ||`classrun -u <studentid>` || be a student, followed by one of the options above ||
   ||~+`classrun -mark`+~ || mark assignments [[http://www.cse.unsw.edu.au/~give/Admindata/tutors/xmark.html|Xmark Quick Start Guide]]||
   ||~+`classrun -rsms`+~ || enter marks ||
   ||<#E0E0E0(-2> From the class account     ||
   ||~+`classrun -u <studentid>`+~ || be a student, followed by one of the options above ||
<<BR>>
 * Examples:
Line 24: Line 30:
 * Examples:
Line 26: Line 31:
   . `% 1911 classrun -give simple simple.c diary.txt`
   . `% 1911 classrun -check simple`
   . `% engg1811 classrun -collect assign1`
   . `% binf1001 classrun -sturec`
   . ~+`% 1911 classrun -give simple simple.c diary.txt`+~
   . ~+`% 1911 classrun -check simple`+~
   . ~+`% engg1811 classrun -collect assign1`+~
   . ~+`% binf1001 classrun 20T3 -sturec`+~
Line 31: Line 37:
   . `% seng2011 classrun -rsms`    . ~+`% seng2011 classrun -rsms`+~
Line 33: Line 40:
   . `% classrun -u 1234567 -give simple simple.c diary.txt`
   . `% classrun -u 1234567 -sturec`
   . `% classrun -mark`
   . ~+`% classrun -u 1234567 -give simple simple.c diary.txt`+~
   . ~+`% classrun -u 1234567 -sturec`+~
   . ~+`% classrun -mark`+~
Line 37: Line 44:
 * To give tutors access to `-mark` and `-rsms`, add their account names to `$WORK/give.spec` under the `&authorisation` directive. e.g.
 {{{

 * To avoid invoking the GUI with the ~+`sturec`+~ option, unset the ~+`DISPLAY`+~
   e.g. from the class account
   {{{
DISPLAY=; classrun -u 1234567 -sturec
}}}

   e.g. from the student account, (if ~+`DISPLAY`+~ is set)
   {{{
DISPLAY=; 1911 classrun -sturec
}}}

 * To give tutors access to ~+`-mark`+~ and ~+`-rsms`+~, add their account names to ~+`$WORK/give.spec`+~ under the ~+`&authorisation`+~ directive. e.g.
   {{{
Line 44: Line 63:
 }}} }}}

 * Use [[http://www.cse.unsw.edu.au/~give/Admindata/tutors/vnc.html|VNC]] or [[https://taggi.cse.unsw.edu.au/FAQ/Really_quick_guide_to_VLAB/|VLAB]]to run ~+`Xmark`+~ and ~+`sms`+~ on your personal computer. These applications run slow using X-windows.

== Other scripts ==
Scripts can be added to the class account bin directory ~+`$HOME/bin`+~.
To run them
{{{
9999 filename
replacing 9999 with the course code and filename with the name of the script
}}}

classrun

Manage Assignments
classrun [give|check|collect]

View Marks ?session=YYsS
classrun [YYsS] sturec

  • Usage:
    • For COMP courses,

      % 9999 classrun ...

    • For other subject area courses,

      % ssss9999 classrun ...

      where ssss is subject area and 9999 is course number e.g. engg1811, binf1001, seng1031

    • options:

      From the student's account

      classrun -give <assignment> <files>...

      submit assignments,
      known in this form: give <account> <assignment> <files>...

      classrun -check <assignment>

      check submissions

      classrun -collect <assignment>

      collect marked assignments

      classrun [YYsS] -sturec

      view marks (student)

      From the tutor's or class account

      classrun -mark

      mark assignments Xmark Quick Start Guide

      classrun -rsms

      enter marks

      From the class account

      classrun -u <studentid>

      be a student, followed by one of the options above


  • Examples:
    • From the student's account
    • % 1911 classrun -give simple simple.c diary.txt

    • % 1911 classrun -check simple

    • % engg1811 classrun -collect assign1

    • % binf1001 classrun 20T3 -sturec

    • From the tutor's account
    • % seng2011 classrun -rsms

    • From the class account
    • % classrun -u 1234567 -give simple simple.c diary.txt

    • % classrun -u 1234567 -sturec

    • % classrun -mark

      • the course at the front is optional when running classrun from the class account

  • To avoid invoking the GUI with the sturec option, unset the DISPLAY

    • e.g. from the class account
      DISPLAY=; classrun -u 1234567 -sturec

      e.g. from the student account, (if DISPLAY is set)

      DISPLAY=; 1911 classrun -sturec
  • To give tutors access to -mark and -rsms, add their account names to $WORK/give.spec under the &authorisation directive. e.g.

    • &authorisation
      abc MARK RSMS
      xyz MARK RSMS
      cs9999 MARK RSMS
      &end
  • Use VNC or VLABto run Xmark and sms on your personal computer. These applications run slow using X-windows.

Other scripts

Scripts can be added to the class account bin directory $HOME/bin. To run them

9999 filename
replacing 9999 with the course code and filename with the name of the script 

Classrun (last edited 2024-02-28 13:36:56 by MeiChengWhale)