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

« back to all changes in this revision

Viewing changes to ivle/conf/apps.py

  • Committer: me at id
  • Date: 2009-01-14 22:42:10 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1133
install_proc.txt: Add dependencies on python-{storm,psycopg2}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
                    requireauth = True,
68
68
                    hashelp = True)
69
69
 
 
70
app_consoleservice = App(dir = "consoleservice",
 
71
                    name = "Console Service",
 
72
                    requireauth = True,
 
73
                    hashelp = False)
 
74
 
70
75
app_tutorial =     App(dir = "tutorial",
71
76
                    name = "Worksheets",
72
77
                    desc = "Online tutorials and exercises for lab work.",
75
80
                    requireauth = True,
76
81
                    hashelp = True)
77
82
 
 
83
app_tutorialservice = App(dir = "tutorialservice",
 
84
                    name = "Tutorial Service",
 
85
                    requireauth = True,
 
86
                    hashelp = False)
 
87
 
78
88
app_server =    App(dir = "server",
79
89
                    name = "Server",
80
90
                    requireauth = True,
110
120
                    requireauth = False,
111
121
                    hashelp = False)
112
122
 
 
123
app_settings = App(dir = "settings",
 
124
                    name = "Account Settings",
 
125
                    icon = "settings.png",
 
126
                    requireauth = True,
 
127
                    hashelp = True)
 
128
 
 
129
app_groups = App(dir = "groups",
 
130
                    name = "Group Management",
 
131
                    icon = "groups.png",
 
132
                    requireauth = True,
 
133
                    hashelp = True)
 
134
 
113
135
app_userservice = App(dir = "userservice",
114
136
                    name = "User Management Service",
115
137
                    requireauth = False,
116
138
                    hashelp = False)
117
139
 
 
140
app_diff = App(dir = "diff",
 
141
                    name = "Diff",
 
142
                    #icon = "forum.png",
 
143
                    requireauth = True,
 
144
                    hashelp = False)
 
145
 
 
146
app_svnlog = App(dir = "svnlog",
 
147
                    name = "Subversion Log",
 
148
                    requireauth = True,
 
149
                    hashelp = False)
 
150
 
118
151
app_subjects = App(dir = "subjects",
119
152
                    name = "Subjects",
120
153
                    desc = "Announcements and information about the subjects "
136
169
    "files" : app_browser,
137
170
    "fileservice" : app_fileservice,
138
171
    "console" : app_console,
 
172
    "consoleservice" : app_consoleservice,
139
173
    "tutorial" : app_tutorial,
 
174
    "tutorialservice" : app_tutorialservice,
140
175
    "serve" : app_server,
141
176
    "download" : app_download,
142
177
    "help" : app_help,
143
178
    "forum" : app_forum,
144
179
    "tos" : app_tos,
 
180
    "settings" : app_settings,
 
181
    "groups" : app_groups,
145
182
    "userservice" : app_userservice,
 
183
    "diff" : app_diff,
 
184
    "svnlog" : app_svnlog,
146
185
    "subjects" : app_subjects,
147
186
    "home" : app_home,
148
187
}