Subversion Repositories wimsdev

Rev

Rev 2389 | Rev 6246 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23 reyssat 1
!if $special_parm!=$empty
2
 !read help/$special_parm.phtml
3
 !goto end
4
!endif
5
 
6
!if $login=$empty
7
 This tool is for online creation and 
8
 development of free style WIMS activity modules.
9
 <p>
10
 Such a module may be a full-power exercise (compared with OEF exercises
11
 which are easier to develop but have limited capacities; see
12
 !href module=adm/createxo Createxo
13
 ) or a sophisticated computational tool. It should be written in the WIMS
14
 interpreted language as explained in
15
 !href target=wims_help module=help/wimsdoc WIMS technical documentation
16
.
17
 <p>
18
 If you are interested, you can ask
19
 !mailurl $wims_site_manager the manager of this WIMS site\
20
WIMS Modtool id
21
 for a developper's login/password pair to get the
22
 authentification for working with this tool.
23
 !exit
24
!endif
25
 
26
!if $mod=$empty
27
 In order to work on a module, you should first create it. To create a
28
 new module, please click on the appropriate links and fill-in the forms
29
 for this purpose.
30
 <p>
31
!endif
32
 
33
Please refer to
34
 !href target=wims_help module=help/wimsdoc WIMS technical documentation
35
 for the structure of a WIMS module and the syntax and format of its content.
36
 
37
<p>
2059 bpr 38
You will find here 
2322 bpr 39
href target=wims_help module=adm/createxo $wims_name_docoef
2059 bpr 40
 
41
<p>
23 reyssat 42
Special hints:
43
<ol>
3569 bpr 44
<li>In order to debug a file, you can place a line
23 reyssat 45
<pre>
46
$!debug ...
47
</pre>
48
in that file, where ... can be any text string. When you test your module, the
49
execution will stop at this line, with the content of ... shown to you. If
50
... includes variables, the latter will be substituted according to the usual
51
WIMS variable substitution rules.
52
 
3569 bpr 53
</li></ol>
23 reyssat 54
 
55
:end
1704 bpr 56