Rev 12811 | 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 |
||
656 | mquerol | 15 | !let module_translator =Manel Querol |
16 | !let module_translator_address=mquerol@xtec.cat |
||
17 | !let module_title =Rèpliques Públiques |
||
18 | !let module_description =llista de llocs WIMS accessibles al públic. |
||
23 | reyssat | 19 | !let module_version =2.08 |
20 | !let module_wims_version=2.08 |
||
21 | |||
656 | mquerol | 22 | !let module_language =ca |
23 | reyssat | 23 | |
24 | !!Your copyright policy. |
||
25 | !!Your page will be included in wims distribution if the word `GNU' |
||
26 | !! appears in the following definition. |
||
5708 | bpr | 27 | !let module_copyright =© 1998 (<a href="COPYING">GNU GPL</a>) |
23 | reyssat | 28 | |
29 | !! Possible categories: exercise, tool, dictionary, course, recreation. |
||
30 | !let module_category =adm |
||
31 | |||
8002 | bpr | 32 | !! En: elementary school. Hn: high school. Un: undergrad. |
23 | reyssat | 33 | !! G: graduate. R: research. |
34 | !! E1,...,E6; H1...,H6; U1,...,U4; G; R |
||
35 | !let module_level =E1 E2 E3 E4 E5 E6 H1 H2 H3 H4 H5 H6 U1 U2 U3 U4 G R |
||
36 | |||
37 | !! e.g. algebra, analysis, geometry, etc. |
||
38 | !let module_domain = |
||
39 | |||
40 | !! For search engines; anything you like. |
||
41 | !let module_keywords = |
||
42 | |||
43 | |||
44 | !!INDEXEND |
||
45 | |||
1092 | bpr | 46 | !header1 |
1154 | bpr | 47 | <h1 class="wims_title"> |
5918 | bpr | 48 | <span style="text-transform:capitalize;">www |
17180 | bpr | 49 | Interactive Multipurpose Server</span><br> |
50 | <span style="font-size:small">à <a href="/">$httpd_HTTP_HOST</a></span><br> |
||
5836 | bpr | 51 | $module_title</h1> |
23 | reyssat | 52 | |
656 | mquerol | 53 | !set mir=wimshome/public_html/html/mirrors.ca |
23 | reyssat | 54 | !set thissite=!tolower $httpd_SERVER_NAME |
55 | !set n=!recordcnt $mir |
||
56 | !set c= |
||
57 | !for i_=1 to $n |
||
58 | !set m_=!record $i_ of $mir |
||
59 | !set l_=!line 1 of $m_ |
||
60 | !set l_=!trim $l_ |
||
61 | !set l_=!translate / to $\ |
||
62 | $ in $l_ |
||
63 | !set l_=!line 1 of $l_ |
||
64 | !set l_=!lower $l_ |
||
65 | !if $l_!=$thissite |
||
66 | !set c=!append item $i_ to $c |
||
67 | !endif |
||
68 | !next i_ |
||
69 | !set n=!itemcnt $c |
||
70 | !if $n<1 |
||
5836 | bpr | 71 | <p> |
656 | mquerol | 72 | Aquest lloc WIMS sembla que no té llista de rèpliques. Ho sento. |
5836 | bpr | 73 | </p> |
23 | reyssat | 74 | !else |
656 | mquerol | 75 | Aquests són els altres llocs WIMS que sabem que estan oberts al públic. Si utilitzes normalment WIMS a la teva feina, inclou a les teves Adreces d'interès alguna de les següents adreces. |
76 | |||
5836 | bpr | 77 | $table_header |
4110 | bpr | 78 | $table_hdtr<th>Lloc</th><th>Localització</th><th>País</td><th>Llengües</th><th>Observacions</th></tr> |
23 | reyssat | 79 | !for i_=1 to $n |
80 | !set j_=!item $i_ of $c |
||
81 | !set l_=!record $j_ of $mir |
||
82 | !distribute lines $l_ into u_,t_,C_,l_,m_,e_,r_ |
||
83 | !readproc mirror.proc |
||
5708 | bpr | 84 | $table_tr<td> |
4110 | bpr | 85 | <a href="$u_">$U_</a></td> |
5708 | bpr | 86 | <td>$t_</td> |
87 | <td>$C_</td> |
||
88 | <td> |
||
23 | reyssat | 89 | !for L_ in $l_ |
17180 | bpr | 90 | <img src="gifs/$L_.gif" alt="$L_.gif" height="16"> |
23 | reyssat | 91 | !next L_ |
3049 | bpr | 92 | !! <td align="center">!mailurl n$e_ $m_\nWIMS site |
4110 | bpr | 93 | </td><td>$r_ </td></tr> |
23 | reyssat | 94 | !next i_ |
5836 | bpr | 95 | $table_end |
23 | reyssat | 96 | !endif |
97 | |||
98 | :end |
||
656 | mquerol | 99 | Si tens un lloc WIMS i vols que aparegui en aquest llistat, sisplau |
5254 | bpr | 100 | !mailurl wimsdev@groupes.renater.fr escriu-me\ |
23 | reyssat | 101 | wims mirror |
102 | . |
||
103 | <p> |
||
8002 | bpr | 104 | WIMS és un software que es pot |
2910 | bpr | 105 | !href module=adm/light&phtml=download.phtml.$lang descarregar |
106 | de franc, |
||
656 | mquerol | 107 | i s'instal·la sobre Linux. |
2910 | bpr | 108 | Sisplau, llegiu l'arxiu <a href="README">README</a> per obtenir més informació sobre com instal·lar WIMS. |
5836 | bpr | 109 | </p> |
23 | reyssat | 110 | !tail |
111 |