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

« back to all changes in this revision

Viewing changes to www/apps/fileservice/__init__.py

  • Committer: mattgiuca
  • Date: 2008-02-05 03:04:05 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:413
fileservice: Accidentally forgot to add __init__.py. (So last commit was an
    empty directory).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# IVLE
 
2
# Copyright (C) 2007-2008 The University of Melbourne
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
# App: File Service (AJAX server)
 
19
# Author: Matt Giuca
 
20
# Date: 9/1/2008
 
21
 
 
22
# This application is a wrapper around the library module fileservice.
 
23
# It can be configured to either call the library directly (in which case it
 
24
# behaves just like a regular application), or run it through the trampoline
 
25
# as a CGI app.
 
26
 
 
27
# It receives file handling instructions as requests. Performs actions on the
 
28
# student's workspace, and returns directory listings in JSON.
 
29
 
 
30
# See the documentation in lib/fileservice for details.
 
31
 
 
32
import fileservice_lib
 
33
 
 
34
def handle(req):
 
35
    """Handler for the File Services application."""
 
36
    fileservice_lib.handle(req)