~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to doc/man/tour.rst

  • Committer: Matt Giuca
  • Date: 2010-07-20 08:31:02 UTC
  • Revision ID: matt.giuca@gmail.com-20100720083102-i739uh74be6dcl1c
Added new function on Project page to export a Bash script which exports all submissions for that project. (LP: #579771)

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
any submitted project from the subject page.
94
94
 
95
95
If you go into the *Intermediate IVLE ‣ group1* directory, you will be able
96
 
to make a group submission to Phase 2 (which is a group project). Also note
97
 
that the file here (``phase2.html``) was edited by studenta and
 
96
to make a group submission to Phase 2 (which is a group project). Note that
 
97
the Phase 3 submission has already closed.
 
98
Also note that the file here (``phase2.html``) was edited by studenta and
98
99
studentb collaboratively, as you can see in the project's revision log.
99
100
 
100
 
Note that the Phase 3 submission has already closed. You can still make a
101
 
"late submission" to a project that has closed, but there is an extra
102
 
confirmation step. Lecturers are given details on late submissions and may
103
 
deduct marks accordingly.
104
 
 
105
 
 
106
101
Worksheets
107
102
----------
108
103
 
205
200
This takes you to a page which lists the latest submissions from every student
206
201
(presumably you will just see the submission made by ``studenta`` earlier in
207
202
this tour). Next to each submission is a command line, beginning with
208
 
``svn export``. For instance, you might see the line::
 
203
``svn co``. For instance, you might see the line::
209
204
 
210
 
 svn export --username lecturer -r7 'http://svn.ivle.localhost/users/studenta/ivle-102/phase1.html' studenta.html
 
205
 svn co --username lecturer -r7 http://svn.ivle.localhost/users/studenta/ivle-102/phase1.html
211
206
 
212
207
Paste this line into a command-line (or, if you use a GUI Subversion client,
213
208
use the username, revision and URL given). Subversion will likely prompt for a
216
211
password by going to your user settings page (it is hidden by default, for
217
212
security reasons).
218
213
 
219
 
This will download the student's work into the current directory, to inspect.
220
 
 
221
 
.. note::
222
 
   This page shows late submissions in red, with a "*", and the number of
223
 
   days late, rounded upwards. Therefore, a submission which is 1 second late
224
 
   is shown with a "(1)", while a submission that is 24 hours and 1 second
225
 
   late is shown with a "(2)".
 
214
This will check out the student's work into the current directory, to inspect.
226
215
 
227
216
You can also try to check out the group submission from Phase 2.
228
217
 
 
218
.. warning::
 
219
   It is currently not possible to check out a single file (not a directory)
 
220
   submission using the instructions given. Instead, run ``svn cat``, and
 
221
   redirect the output into a file.
 
222
 
229
223
Managing worksheets and exercises
230
224
---------------------------------
231
225