Rev 14710 | 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 |
||
8002 | bpr | 13 | !let module_address = |
14 | !let module_maintainer_address=wimsdev@groupes.renater.fr |
||
23 | reyssat | 15 | !let module_title =向公众开放的镜像站 |
16 | !let module_description =全球向公众开放的镜像站表 |
||
17 | !let module_version =2.08 |
||
18 | !let module_wims_version=2.08 |
||
19 | |||
20 | !let module_language =cn |
||
21 | |||
22 | !!Your copyright policy. |
||
23 | !!Your page will be included in wims distribution if the word `GNU' |
||
24 | !! appears in the following definition. |
||
5708 | bpr | 25 | !let module_copyright =© 1998 (<a href="COPYING">GNU GPL</a>) |
23 | reyssat | 26 | |
27 | !! Possible categories: exercise, tool, dictionary, course, recreation. |
||
28 | !let module_category =adm |
||
29 | |||
8002 | bpr | 30 | !! En: elementary school. Hn: high school. Un: undergrad. |
23 | reyssat | 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 | !header1 |
17180 | bpr | 45 | <h1 class="wims_title">WWW Interactive Multipurpose Server<br> |
46 | <font color="blue">网上互动式多功能服务站</font><br> |
||
47 | <span style="font-size:small">位于<a href="/">$httpd_HTTP_HOST</a></span> <br> |
||
5836 | bpr | 48 | $module_title</h1> |
23 | reyssat | 49 | |
50 | !set mir=wimshome/public_html/html/mirrors.en |
||
51 | !set thissite=!tolower $httpd_SERVER_NAME |
||
52 | !set n=!recordcnt $mir |
||
53 | !set c= |
||
54 | !for i_=1 to $n |
||
55 | !set m_=!record $i_ of $mir |
||
56 | !set l_=!line 1 of $m_ |
||
57 | !set l_=!trim $l_ |
||
58 | !set l_=!translate / to $\ |
||
59 | $ in $l_ |
||
60 | !set l_=!line 1 of $l_ |
||
61 | !set l_=!lower $l_ |
||
62 | !if $l_!=$thissite |
||
63 | !set c=!append item $i_ to $c |
||
64 | !endif |
||
65 | !next i_ |
||
66 | !set n=!itemcnt $c |
||
67 | !if $n<1 |
||
5836 | bpr | 68 | <p> |
23 | reyssat | 69 | 本 WIMS 站没有镜像站表, 抱歉. |
5836 | bpr | 70 | </p> |
23 | reyssat | 71 | !else |
72 | 以下是向公众开放的其它 WIMS 站. |
||
73 | 如果你经常使用 WIMS, 我们建议你至少把其中几个地址做成书签, |
||
74 | 这样一旦你喜欢的网站不能用时, 你的工作还可以继续. |
||
8002 | bpr | 75 | |
5836 | bpr | 76 | $table_header |
23 | reyssat | 77 | $table_hdtr<th>网站</th> |
78 | <th>地点</th> |
||
79 | <th>国家</th> |
||
17180 | bpr | 80 | <th>支持<br>语言</th> |
23 | reyssat | 81 | <th>说明</th> |
82 | </tr> |
||
83 | !for i_=1 to $n |
||
84 | !set j_=!item $i_ of $c |
||
85 | !set l_=!record $j_ of $mir |
||
86 | !distribute lines $l_ into u_,t_,C_,l_,m_,e_,r_ |
||
87 | !readproc mirror.proc |
||
5708 | bpr | 88 | $table_tr<td> |
23 | reyssat | 89 | <a href="$u_">$U_</a></td> |
5708 | bpr | 90 | <td>$t_</td> |
91 | <td>$C_</td> |
||
92 | <td> |
||
23 | reyssat | 93 | !for L_ in $l_ |
17180 | bpr | 94 | <img src="gifs/$L_.gif" alt="$L_.gif" height="16"> |
23 | reyssat | 95 | !next L_ |
3049 | bpr | 96 | !! <td align="center">!mailurl n$e_ $m_\nWIMS site |
23 | reyssat | 97 | </td><td>$r_ </td></tr> |
98 | !next i_ |
||
5836 | bpr | 99 | $table_end |
23 | reyssat | 100 | !endif |
101 | |||
102 | :end |
||
103 | 如果你安装了WIMS, 并想让它列入上表, 请 |
||
14710 | obado | 104 | !mailurl qualite@wimsedu.info 给我发电邮\ |
23 | reyssat | 105 | wims mirror |
106 | . |
||
107 | <p> |
||
108 | WIMS 是可以自由 |
||
14710 | obado | 109 | <a href="https://wims.univ-cotedazur.fr/download/wims/">下载</a> |
23 | reyssat | 110 | 的安装于Linux操作系统上的软件, 请参看下载目录里的 README 文件以了解如何安装. |
5836 | bpr | 111 | </p> |
23 | reyssat | 112 | !tail |
113 |