~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-02-12 06:12:03 UTC
  • Revision ID: matt.giuca@gmail.com-20100212061203-87ff55el03wb80yf
doc/man/tour.rst: Added section on viewing submissions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
means that you will want to create a single project set for a subject, and
185
185
just partition the projects into solo and group projects.
186
186
 
 
187
Viewing submissions
 
188
-------------------
 
189
 
 
190
Lecturers and tutors can view any student or group's project submission, using
 
191
an external Subversion client. As submissions are really just Subversion
 
192
commits, you can examine a student's work by simply checking out the correct
 
193
revision of the repository.
 
194
 
 
195
From the Projects page, click on the "Phase 1" heading. This takes you to a
 
196
page which lists the latest submissions from every student (presumably you
 
197
will just see the submission made by "studenta" earlier in this tour). Next to
 
198
each submission is a command line, beginning with "svn co". For instance, you
 
199
might see the line::
 
200
 
 
201
 svn co --username lecturer -r7 http://svn.ivle.localhost/users/studenta/ivle-102/phase1.html
 
202
 
 
203
Paste this line into a command-line (or, if you use a GUI Subversion client,
 
204
use the username, revision and URL given). Subversion will likely prompt for a
 
205
password. For the sample data, this password is "password", but in general, it
 
206
will **not** be your normal IVLE password. You can learn your Subversion
 
207
password by opening a Console in IVLE and typing::
 
208
 
 
209
 import ivle.config
 
210
 ivle.config.Config()['user_info']['svn_pass']
 
211
 
 
212
This will check out the student's work into the current directory, to inspect.
 
213
 
 
214
You can also try to check out the group submission from Phase 2.
 
215
 
 
216
.. warning::
 
217
   It is currently not possible to check out a single file (not a directory)
 
218
   submission using the instructions given. Instead, run ``svn cat``, and
 
219
   redirect the output into a file.
 
220
 
187
221
Managing worksheets and exercises
188
222
---------------------------------
189
223