Rev 15818 | Rev 16591 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3666 | obado | 1 | # encoding |
2 | encoding=iso-8859-1 |
||
3 | |||
391 | obado | 4 | # header returned by the module |
3666 | obado | 5 | header=Content-Type: text/plain ; charset=$encoding\ |
391 | obado | 6 | |
3261 | obado | 7 | # header returned by the module within xmlformat |
3666 | obado | 8 | header_xml=Content-Type: text/xml ; charset=$encoding\ |
3105 | obado | 9 | |
3666 | obado | 10 | # header returned by the module within json |
11 | header_json=Content-Type: application/json ; charset=$encoding\ |
||
3261 | obado | 12 | |
3996 | obado | 13 | # header returned by the module within gz /tgz |
13460 | obado | 14 | header_zip=Content-Type: multipart/x-gzip ; charset=$encoding |
3666 | obado | 15 | |
391 | obado | 16 | # List of allowed file-mode jobs |
16579 | guerimand | 17 | allowed_file_jobs= getcsv, getclassfile, getclasstgz, getexofile, getibookwidget, getserverstat, getmodulesstat |
391 | obado | 18 | |
19 | # List of jobs allowed to make some actions on wims classes |
||
11095 | obado | 20 | allowed_actions_jobs=checkclass, addclass, modclass, delclass, getclass,\ |
21 | cleanclass, copyclass, repairclass, getclassmodif,\ |
||
8427 | obado | 22 | checkuser, adduser, moduser, deluser, recuser, getuser, getexamlog,\ |
11095 | obado | 23 | getscore, getscores, getsheetscores, getexamscores, getlog, putcsv, search,\ |
391 | obado | 24 | checkident, update, authuser, gettime, listmodules, getmodule,\ |
3261 | obado | 25 | addsheet, listsheets, delsheet, getsheet, checksheet, modsheet,\ |
4561 | obado | 26 | putexo, listexams, addexam, getexam, checkexam, linkexo, linksheet,\ |
4609 | obado | 27 | modexam, delexam, listlinks, getexo, addexo, delexo,\ |
6364 | obado | 28 | getexamsessions, addcontent, listclasses, getclassesuser, testexo,\ |
5665 | obado | 29 | movexo, movexos, listexos, sharecontent, getexosheet, modexosheet,\ |
14384 | obado | 30 | getinfoserver, getsheetstats, buildexos, changedates |
4640 | obado | 31 | |
3666 | obado | 32 | # List of jobs allowed without authentication |
16579 | guerimand | 33 | allowed_jobs_without_auth=listmodules, getmodule, getinfoserver, getserverstat, getmodulesstat |
391 | obado | 34 | |
4058 | obado | 35 | #List class descriptions (in .def class file) - "creation" and "connections" are voluntary not here |
4640 | obado | 36 | #low_classdefs list minor informations |
37 | low_classdefs=supervisor, description, institution, \ |
||
4058 | obado | 38 | lang, email, expiration, limit, topscores, superclass, \ |
4641 | obado | 39 | type, level, parent, typename, \ |
4058 | obado | 40 | bgcolor, bgimg, scorecolor, css, logo, logoside, \ |
41 | refcolor, ref_menucolor, ref_button_color, ref_button_bgcolor, \ |
||
13107 | czzmrn | 42 | ref_button_help_color, ref_button_help_bgcolor, theme , theme_icon, \ |
13828 | obado | 43 | sendmailteacher, allowcloning |
8255 | bpr | 44 | |
4640 | obado | 45 | #high_classdefs list security informations (not to be displayed in non secure requests) |
4999 | czzmrn | 46 | high_classdefs=password, creator, secure, \ |
13828 | obado | 47 | external_auth, mixed_external_auth, cas_auth, php_auth, authidp, cloningpwd |
4640 | obado | 48 | |
49 | classdefs=$high_classdefs,$low_classdefs, |
||
50 | |||
4058 | obado | 51 | #List class types |
8051 | czzmrn | 52 | # 0 : class , 1 : class in a group (name is "class"), 2 : group , 3 : portal , 4 : ??? |
9909 | obado | 53 | classtypes=class, class, group, portal |
23 | reyssat | 54 | |
391 | obado | 55 | #List of user descriptions |
9690 | bpr | 56 | userdefs=firstname, lastname, password, email, comments, regnum, photourl, participate, courses,\ |
57 | classes, supervise, supervisable, external_auth, agreecgu,\ |
||
9909 | obado | 58 | regprop1, regprop2, regprop3, regprop4, regprop5 |
391 | obado | 59 | |
60 | #List of module descriptions |
||
9963 | obado | 61 | moduledefs=title, description, language, category, domain, level, keywords, require, scoring, copyright, author, address, version,wims_version, vardef, translator, translator_address |
391 | obado | 62 | |
11661 | obado | 63 | #List of sheet properties (the 4 first are ordered as in .sheets, the last 3 are ordered as in .severity) |
64 | sheetdefs=status, expiration, title, description, weight, formula, indicator |
||
3261 | obado | 65 | |
4589 | obado | 66 | #List of exam descriptions, ordered as in .exams file |
9909 | obado | 67 | examdefs=status, expiration, duration_and_attempts, title, description, cut_hours |
4176 | obado | 68 | |
69 | #List of some WIMS limitations |
||
70 | edesc_limit=250 |
||
6558 | czzmrn | 71 | etitle_limit=40 |
9963 | obado | 72 | MAX_EXOS = !defof MAX_EXOS in wimshome/public_html/bases/sys/define.conf |
73 | MAX_EXAMS = !defof MAX_EXAMS in wimshome/public_html/bases/sys/define.conf |
||
74 | MAX_SHEETS = !defof MAX_SHEETS in wimshome/public_html/bases/sys/define.conf |