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