Rev 1407 | Rev 7235 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
20 | reyssat | 1 | !nocache |
2 | doc=1 |
||
2373 | bpr | 3 | !set modu_lang=$lang |
4 | !read docu/$lang/names |
||
5 | !if $lang_exists!=yes |
||
6 | !let modu_lang=en |
||
7 | !read docu/$lang/names |
||
8 | !endif |
||
9 | !set module_language=$lang |
||
20 | reyssat | 10 | |
11 | wims_multiexec=pari maxima yacas octave |
||
12 | module_title2=!detag $module_title |
||
13 | insmath_rawmath=yes |
||
14 | wims_backslash_insmath=yes |
||
2373 | bpr | 15 | !read docu/$modu_lang/names |
20 | reyssat | 16 | !if $cmd=help |
17 | !exit |
||
18 | !endif |
||
19 | |||
20 | !bound job within read,print,list,exosource default read |
||
21 | !if robot isin $session |
||
22 | job=print |
||
23 | !endif |
||
24 | |||
25 | !read tabletheme |
||
26 | !for i=1 to 20 |
||
27 | m_parm$i=$(parm$i) |
||
28 | parm$i= |
||
29 | !next i |
||
1407 | bpr | 30 | !if $seq>0 |
31 | !set m_wims_sequence=$seq |
||
32 | !endif |
||
20 | reyssat | 33 | |
34 | namechars=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_ |
||
35 | namelim=32 |
||
36 | codemin=4 |
||
37 | codemax=16 |
||
38 | titlim=256 |
||
39 | blocklim=512 |
||
40 | max_blocklen=65536 |
||
41 | max_texlen=32768 |
||
42 | insmath_slashsubst=yes |
||
43 | block=!text select $namechars in $block |
||
44 | docdir=doc |
||
45 | Docdir=$module_dir/$docdir |
||
46 | readable=yes |
||
47 | editable=no |
||
48 | !default readcnt=0 |
||
49 | |||
50 | m_filedir=$Docdir/$doc/files |
||
51 | !readdef $docdir/$doc/.def |
||
52 | !if $tit!=$empty |
||
53 | !default block=main |
||
54 | block=!char 1 to $namelim of $block |
||
55 | !read $docdir/$doc/$block.def |
||
56 | !else |
||
57 | error=doc_not_exist |
||
58 | !endif |
||
59 | |||
60 | !set wims_module_log=$job $doc $block |
||
61 | |||
62 | !read docu/$job.proc |
||
63 |