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

« back to all changes in this revision

Viewing changes to examples/config/apache-svn.conf

  • Committer: mattgiuca
  • Date: 2008-01-23 06:55:12 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:276
Console now runs inside IVLE (without requiring an IFRAME). The separate
console server is still spawned, but the client never directly communicates
with it.

apps/console: Writes the HTML code for the actual console (the 2 text boxes),
    instead of just a contained div for the IFRAME.

media/console/console.js:
    Removed code to create IFRAME and link to console server.
    Incorporated Tom's console.js code from trunk/console/console.js.
    Modified this code to:
        a) Use functions from util.js, such as make_query_string and
            ajax_call.
        b) Talk to consoleservice/chat instead of the console server.
        c) Pass host and port as arguments (needed by IVLE to talk to the
            console server).
    Also had the "startup" code save the host, port and magic, needed for
    communication with the console server.

media/console/console.css: Added CSS file (derived from Tom's inline CSS in
    the original index.html).

apps/consoleservice: Fixed bugs which caused the wrong text to be sent, and
    also avoid throwing an error for empty text.

Note that trunk/console will still serve the HTML, JavaScript and CSS files if
needed. The next step is to make this just a service and not actually a web
server as well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# IVLE SVN server configuration for Apache 2
2
 
<VirtualHost *:80>
3
 
  ServerName svn.ivle.localhost
4
 
 
5
 
  <Location /users>
6
 
    DAV svn
7
 
    SVNParentPath /var/lib/ivle/svn/repositories/users
8
 
    AuthzSVNAccessFile /var/lib/ivle/svn/svn.conf
9
 
    Require valid-user
10
 
    AuthType Basic
11
 
    AuthName "IVLE Subversion repository"
12
 
    AuthUserFile /var/lib/ivle/svn/ivle.auth
13
 
  </Location>
14
 
 
15
 
  <Location /groups>
16
 
    DAV svn
17
 
    SVNParentPath /var/lib/ivle/svn/repositories/groups
18
 
    AuthzSVNAccessFile /var/lib/ivle/svn/svn-group.conf
19
 
    Require valid-user
20
 
    AuthType Basic
21
 
    AuthName "IVLE Subversion repository"
22
 
    AuthUserFile /var/lib/ivle/svn/ivle.auth
23
 
  </Location>
24
 
</VirtualHost>