Subversion Repositories wimsdev

Rev

Rev 32 | Rev 1111 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32 Rev 1091
Line 8... Line 8...
8
<li>Session management.
8
<li>Session management.
9
<li>Send the result of the process to the user.
9
<li>Send the result of the process to the user.
10
<li>Write to different log files.
10
<li>Write to different log files.
11
</ol>
11
</ol>
12
 
12
 
13
<H4> Modules of wims</H4>
13
<h4> Modules of wims</h4>
14
 
14
 
15
A wims server is a modular system, with different applications as modules.
15
A wims server is a modular system, with different applications as modules.
16
At each new call to wims, the user has to specify which module he want to
16
At each new call to wims, the user has to specify which module he want to
17
access. <p>
17
access. <p>
18
 
18
 
Line 30... Line 30...
30
 
30
 
31
<H4>How to access a wims server</H4>
31
<H4>How to access a wims server</H4>
32
 
32
 
33
Wims is accessed by a request to the main cgi program, for example
33
Wims is accessed by a request to the main cgi program, for example
34
<pre>
34
<pre>
35
http://wims.unice.fr/wims/wims.cgi
35
http:"//wims.unice.fr/wims/wims.cgi"
36
</pre>
36
</pre>
37
which usually should be followed by parameters. A call to the main wims.cgi
37
which usually should be followed by parameters. A call to the main wims.cgi
38
program without parameter will bring up the wims homepage of the site. <p>
38
program without parameter will bring up the wims homepage of the site. <p>
39
 
39
 
40
Parameters of wims.cgi is a usual http $emph name=value$emphend pair, where the
40
Parameters of wims.cgi is a usual http $emph name=value$emphend pair, where the
Line 77... Line 77...
77
wants to work on).
77
wants to work on).
78
</ul>
78
</ul>
79
 
79
 
80
Example:
80
Example:
81
<pre>
81
<pre>
82
http://wims.unice.fr/~wims/wims.cgi?cmd=new&module=tool/algebra/factor.en
82
http:"//wims.unice.fr/~wims/wims.cgi?cmd=new&+module=tool/algebra/factor.en"
83
</pre>
83
</pre>
84
calls the wims server at wims.unice.fr, with `new' as the value of `cmd',
84
calls the wims server at wims.unice.fr, with `new' as the value of `cmd',
85
`tool/algebra/factor.en' as the module name.
85
`tool/algebra/factor.en' as the module name.
86
 
86
 
87
 
87