Subversion Repositories wimsdev

Rev

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

Rev Author Line No. Line
23 reyssat 1
!!INDEX
2
!! Erase the above line to hide your page from wims search engine.
3
!! Line starting with double exclamations are comment lines.
4
!!
5
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6
!!
7
!! Indexing definitions. You should modify them according to your case.
8
!!
9
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
 
11
!! Put every definition in ONE LINE!!
12
!let module_author	=XIAO, Gang
13
!let module_address	=xiao@unice.fr
14
!let module_title	=Public Mirror Sites
15
!let module_description	=list of publically accessible WIMS sites around the world.
16
!let module_version	=2.08
17
!let module_wims_version=2.08
18
 
19
!! This is English template file
20
!let module_language	=en
21
 
22
!!Your copyright policy.
23
!!Your page will be included in wims distribution if the word `GNU'
24
!! appears in the following definition.
25
!let module_copyright	=&copy; 1998 (<a href=COPYING>GNU GPL</a>)
26
 
27
!! Possible categories: exercise, tool, dictionary, course, recreation.
28
!let module_category	=adm
29
 
30
!! En: elementary school. Hn: high school. Un: undergrad. 
31
!! G: graduate. R: research.
32
!! E1,...,E6; H1...,H6; U1,...,U4; G; R
33
!let module_level	=E1 E2 E3 E4 E5 E6 H1 H2 H3 H4 H5 H6 U1 U2 U3 U4 G R
34
 
35
!! e.g. algebra, analysis, geometry, etc.
36
!let module_domain	=
37
 
38
!! For search engines; anything you like.
39
!let module_keywords	=
40
 
41
 
42
!!INDEXEND
43
 
1092 bpr 44
!!<html><head>
45
!!$wims_html_header
46
!!</head>
47
!!<body $wims_htmlbody>
48
!header1
1154 bpr 49
<h1 class="wims_title">
2914 reyssat 50
<font size=+2>W</font>WW
51
<font size=+2>I</font>nteractive
52
<font size=+2>M</font>ultipurpose
53
<font size=+2>S</font>erver<br>
1154 bpr 54
<font size="-1">at <a href="/">$httpd_HTTP_HOST</a></font> <br>
55
$module_title</h1> <p>
23 reyssat 56
 
57
!set mir=wimshome/public_html/html/mirrors.en
58
!set thissite=!tolower $httpd_SERVER_NAME
59
!set n=!recordcnt $mir
60
!set c=
61
!for i_=1 to $n
62
 !set m_=!record $i_ of $mir
63
 !set l_=!line 1 of $m_
64
 !set l_=!trim $l_
65
 !set l_=!translate / to $\
66
$ in $l_
67
 !set l_=!line 1 of $l_
68
 !set l_=!lower $l_
69
 !if $l_!=$thissite
70
  !set c=!append item $i_ to $c
71
 !endif
72
!next i_
73
!set n=!itemcnt $c
74
!if $n<1
75
 This WIMS site does not keep a list of mirror sites. Sorry.
76
 <p>
77
!else
78
 Here are the other WIMS sites known to be open to the general public.
79
 If you use WIMS regularly in your work, we suggest
80
 that you bookmark at least some of these addresses, so that if your favorite
3947 bpr 81
 site becomes temporarily unavailable, you would not see your work disrupted.
23 reyssat 82
 <p>$table_header
83
 $table_hdtr<th>Site</th>
84
 <th>Location</th>
85
 <th>Country</th>
86
 <th>Supported<br>languages</th>
87
 <th>Comments</th>
88
 </tr>
89
 !for i_=1 to $n
90
  !set j_=!item $i_ of $c
91
  !set l_=!record $j_ of $mir
92
  !distribute lines $l_ into u_,t_,C_,l_,m_,e_,r_
93
  !readproc mirror.proc
3049 bpr 94
  $table_tr<td align="center">
23 reyssat 95
  <a href="$u_">$U_</a></td>
3049 bpr 96
  <td align="center">$t_</td>
97
  <td align="center">$C_</td>
98
  <td align="center">
23 reyssat 99
  !for L_ in $l_
1038 bpr 100
   <img src="gifs/$L_.gif" alt="$L_.gif" height=16>
23 reyssat 101
  !next L_
3049 bpr 102
!!  <td align="center">!mailurl n$e_ $m_\nWIMS site
23 reyssat 103
  </td><td>$r_&nbsp;</td></tr>
104
 !next i_
105
 $table_end <p>
106
!endif
107
 
108
:end
2910 bpr 109
If you have a WIMS installation and want it to be listed here, please write to
110
!mailurl wimsdev@cru.fr wimsdev\
23 reyssat 111
wims mirror
112
.
113
<p>
114
WIMS is a software which can be freely
2910 bpr 115
!href module=adm/light&phtml=download.phtml.$lang downloaded
116
 
117
 and can be installed on Linux operating systems.
118
Please see the <a href="README">README</a> file for more
23 reyssat 119
details on how to install WIMS.
120
 
121
!tail
122