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

« back to all changes in this revision

Viewing changes to doc/setup/ivle.conf

  • Committer: mattgiuca
  • Date: 2008-03-15 05:55:20 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:698
Added Save feature to tutorial system.
tutorialservice: Added "save" action, which works the same as submit, but
    saves to the DB instead of making an attempt, and doesn't run the code.
    Factored out code to open an exercise file.
tutorial: Added Save button to exercise boxen.
tutorial.js: Added saveexercise function, which makes an Ajax request to the
    "save" action of tutorialservice.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
ServerName IVLE.EXAMPLE.COM
6
6
 
7
7
<VirtualHost *>
8
 
    DocumentRoot /usr/local/share/ivle/www
 
8
    DocumentRoot /opt/ivle/www
9
9
    <Directory />
10
10
        Options FollowSymLinks
11
11
        AllowOverride None
12
12
    </Directory>
13
 
    <Directory "/usr/local/share/ivle/www/">
 
13
    <Directory "/opt/ivle/www/">
14
14
        AllowOverride None
15
15
        Order allow,deny
16
16
        allow from all
17
17
        SetHandler mod_python
18
 
        PythonHandler ivle.dispatch
 
18
        PythonHandler dispatch
19
19
        #PythonDebug On
20
20
        Options FollowSymLinks
21
 
        PythonOption mod_python.file_session.database_directory /var/lib/ivle/sessions
22
 
        PythonOption mod_python.session.cookie_name ivle
 
21
        PythonOption mod_python.file_session.database_directory /home/informatics/sessions
23
22
    </Directory>
24
 
    <Directory "/usr/local/share/ivle/www/media">
 
23
    <Directory "/opt/ivle/www/media">
25
24
        SetHandler None
26
25
    </Directory>
27
 
    <Directory "/usr/local/share/ivle/www/php">
 
26
    <Directory "/opt/ivle/www/php">
28
27
        SetHandler None
29
28
    </Directory>
30
29