Subversion Repositories wimsdev

Rev

Rev 2161 | Rev 3569 | 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
 
2161 czzmrn 37
Vous trouverez ici la
38
!href target=wims_help module=adm/createxo Documentation OEF
23 reyssat 39
<p>
40
Special hints:
41
<ol>
1065 bpr 42
<li><p>In order to debug a file, you can place a line
23 reyssat 43
<pre>
44
$!debug ...
45
</pre>
46
in that file, where ... can be any text string. When you test your module, the
47
execution will stop at this line, with the content of ... shown to you. If
48
... includes variables, the latter will be substituted according to the usual
49
WIMS variable substitution rules.
50
 
51
</ol>
52
 
53
:end
2161 czzmrn 54