none
[openafs-wiki.git] / TWiki / TWikiDocumentation.mdwn
1 ### <a name="Documentation of the TWiki Imple"></a> Documentation of the TWiki Implementation
2
3 - [(1)](#login) Login Username vs. Wiki Username
4 - [(2)](#variables) Wiki Variables
5 - [(3)](#notification) Notification of Changes by Email
6 - [(4)](#category) TWiki Category Table
7 - [(5)](#implementation) Implementation Notes
8 - [(6)](#installation) Installation Notes
9
10 Related Topics: [[TWikiHistory]], [[TWikiPlannedFeatures]], [[TWikiEnhancementRequests]].
11
12 <a name="login"> </a>
13
14 ----
15
16 **(1) Login Username vs. Wiki Username**
17
18 TWiki manages internally two usernames: Login username and Wiki username.
19
20 - **Login username:** When you login to the Intranet you use your login username, e.g. `thoeny`. TWiki uses this name internally to log who changed topics.
21 - **Wiki username:** Is your name in [[WikiNotation]], e.g. `PeterThoeny`. When you create your own home page topic, you should use your [[WikiName]] for the topic name. Like that, your name will be linked automatically where ever it is used. Please create your home page in TWiki.Main, not any other TWiki web.
22
23 **Note:** When you write a [[WikiName]] of a user (your own or somebody else's) be sure to specify the Main web in front of the Wiki user name, e.g. write it as Main.wikiUsername. This assures that the name will be linked automatically to the TWiki.Main web, even if the text is written in a different Wiki web.
24
25 TWiki can map the Intranet username to the Wiki username automatically, provided that the Login username and Wiki username pair has been entered in the [[TWikiUsers]] topic.
26
27 <a name="variables"> </a>
28
29 ----
30
31 **(2) Wiki Variables**
32
33 %INCLUDE:"TWikiVariables.txt"%
34
35 <a name="notification"> </a>
36
37 ----
38
39 **(3) Notification of Changes by Email**
40
41 Each TWiki web does an automatic email notification of recent changes. Users can subscribe / unsubscribe themselves in [[WebNotify]] of each TWiki web. The Perl script ` mailnotify ` is called by a deamon once every 60 minutes. For each Twiki web ` mailnotify ` is sending an automated email to subscribed users in case some topics changed within these 60 minutes.
42
43 Implementation note: Edit the cron table so that ` mailnotify ` is called every 60 minutes. Please consult ` man crontab ` of how to modify the table that schedules program execution at certain intervals. Example:
44
45     % crontab -e
46     15,45 * * * * (cd ~twiki/public_html/bin; ./mailnotify)
47
48 The above line will call mailnotify at 15 minutes and 45 minutes passed every hour.
49
50 <a name="category"> </a>
51
52 ----
53
54 **(4) TWiki Category Table**
55
56 It is possible to add a category table to a TWiki web. This permits storing and searching for more structured information. Editing a topic shows a HTML form with the usual text area and a table with selectors, checkboxes, radio buttons and text fields. The category table is shown at the end of a topic. The format of the category table can be defined per TWiki web.
57
58 If you want to use a Category Table in a TWiki web you need to have the following three files in the twiki/templates/\{Yourweb\} directory:
59
60 - twikicatitems.tmpl : Defines the items in the table
61 - twikicatedit.tmpl : Defines the look of the table when editing a topic
62 - twikicatview.tmpl : Defines the look of the table when viewing a topic
63
64 **\_Format of category definition template twikicatitems.tmpl\_**
65
66 Valid lines:
67
68     select|{name}|{selSize}|{val1}|{val2}|{val3}...
69     checkbox|{name}|{checkFlag}|{itemsPerLine}|{val1}|{val2}|{val3}...
70     radio|{name}|{itemsPerLine}|{val1}|{val2}|{val3}...
71     text|{name}|{charSize}
72     # comments start with a # character
73
74 Explanation:
75
76       {name}                             name of tag
77       {selSize}                  vertical size of SELECT tag
78       {val1}|{val2}...  values
79       {checkFlag}                 set to true for [Set] [Clear] buttons, else set to false
80       {itemsPerLine}      input items per line before wrap around, 0 if no wrap around
81       {charSize}                        number of characters for text fields
82
83 **\_Remark:\_** Line ` radio|UseCategory|0|Yes|No ` has a special meaning. If present, it is possible to choose in "edit" if the category table is included in the topic or not
84
85 Example file:
86
87     radio|UseCategory|0|Yes|No, delete this category table
88     select|TopicClassification|1|Select one...|NoDisclosure|PublicSupported|PublicFAQ
89     checkbox|OperatingSystem|true|5|OsSolaris|OsSunOS|OsHPUX|OsWin
90     text|OsVersion|16
91
92 **\_Format of twikicatedit.tmpl and twikicatview.tmpl\_**
93
94 Use the example below and customize if needed. twikicatedit.tmpl and twikicatview.tmpl can be identical, but they do not have to be.
95
96 **\_Attention:\_** ` <!--TWikiCat--> ` is needed at the beginning and end as markers. Do not delete them!
97
98 Example:
99
100     <!--TWikiCat--> <h4> TWikiCategory </h4>
101     <table border="2" cellspacing="1" cellpadding="1">
102     %REPEAT%<tr>
103     <td valign="top" align="right"> %CATNAME%:  <br>%CATMODIFIER%</td><td>  %CATVALUE% </td>
104     </tr>%REPEAT%
105     </table><!--TWikiCat-->
106
107 Above template files will result in the following category table when **\_viewing\_** a topic:
108
109 #### <a name="TWikiCategory"></a><a name="_TWikiCategory"></a> [TWikiCategory]()
110
111 <table border="2" cellpadding="1" cellspacing="1">
112   <tr>
113     <td align="right" valign="top"><a href="">TopicClassification</a>: <br />
114     </td>
115     <td><a href="">PublicFAQ</a></td>
116   </tr>
117   <tr>
118     <td align="right" valign="top"><a href="">OperatingSystem</a>: <br />
119     </td>
120     <td><a href="">OsSolaris</a></td>
121   </tr>
122   <tr>
123     <td align="right" valign="top"><a href="">OsVersion</a>: <br />
124     </td>
125     <td>2.5  </td>
126   </tr>
127 </table>
128
129 Above template files will result in the following table when **\_editing\_** a topic:
130
131 <form>
132   <h4><a name="TWikiCategory"></a><a name="_TWikiCategory"></a> <a href="">TWikiCategory</a></h4>
133   <table border="2" cellpadding="1" cellspacing="1">
134     <tr>
135       <td align="right" valign="top"><a href="">UseCategory</a> : <br />
136       </td>
137       <td>
138         <table cellpadding="0" cellspacing="0">
139           <tr>
140             <td><input checked name="UseCategory" type="radio" value="Yes" />Yes   </td>
141             <td><input name="UseCategory" type="radio" value="Nodeletethiscategorytable" />No, delete this category table   </td>
142           </tr>
143         </table>
144       </td>
145     </tr>
146     <tr>
147       <td align="right" valign="top"><a href="">TopicClassification</a> : <br />
148       </td>
149       <td><select name="TopicClassification" size="1"><option value="Selectone">Select one... </option>
150           <option value="NoDisclosure">NoDisclosure </option>
151           <option value="PublicSupported">PublicSupported </option>
152           <option selected value="PublicFAQ">PublicFAQ </option></select></td>
153     </tr>
154     <tr>
155       <td align="right" valign="top"><a href="">OperatingSystem</a> : <br /><input onclick="" type="button" value=" Set " />  <input onclick="" type="button" value="Clear" /> </td>
156       <td>
157         <table cellpadding="0" cellspacing="0">
158           <tr>
159             <td><input checked name="OperatingSystemOsSolaris" type="checkbox" />OsSolaris   </td>
160             <td><input name="OperatingSystemOsSunOS" type="checkbox" />OsSunOS   </td>
161             <td><input name="OperatingSystemOsHPUX" type="checkbox" />OsHPUX   </td>
162             <td><input name="OperatingSystemOsWin" type="checkbox" />OsWin   </td>
163           </tr>
164         </table>
165       </td>
166     </tr>
167     <tr>
168       <td align="right" valign="top"><a href="">OsVersion</a> : <br />
169       </td>
170       <td><input name="OsVersion" size="16" type="text" value="2.5" /></td>
171     </tr>
172   </table>
173 </form>
174
175 <a name="implementation"> </a>
176
177 ----
178
179 **(5) Implementation Notes**
180
181 **\_Platform\_**
182
183 TWiki is written in PERL 5, but it uses also many shell command. The current implementation runs only on a Unix machine. RCS for revision control must be installed on the system.
184
185 **\_Directories\_**
186
187 <table border="1" cellpadding="0" cellspacing="0">
188   <tr>
189     <th bgcolor="#99CCCC"><strong> Directory: </strong></th>
190     <th bgcolor="#99CCCC"><strong> Used for: </strong></th>
191   </tr>
192   <tr>
193     <td> twiki/bin </td>
194     <td> TWiki PERL scripts </td>
195   </tr>
196   <tr>
197     <td> twiki/pub </td>
198     <td> Public files ([[Main/FileAttachments]], images) </td>
199   </tr>
200   <tr>
201     <td> twiki/data </td>
202     <td> source text </td>
203   </tr>
204   <tr>
205     <td> twiki/templates </td>
206     <td> HTML templates, used by TWiki scripts </td>
207   </tr>
208 </table>
209
210 **\_Files in twiki/bin\_**
211
212 <table border="1" cellpadding="0" cellspacing="0">
213   <tr>
214     <th bgcolor="#99CCCC"><strong> File: </strong></th>
215     <th bgcolor="#99CCCC"><strong> Used for: </strong></th>
216   </tr>
217   <tr>
218     <td> .htaccess.txt </td>
219     <td> Authentication. Rename to .htaccess and customize if used </td>
220   </tr>
221   <tr>
222     <td> attach </td>
223     <td> Script that shows the attach file page ([[Main/FileAttachment]]) </td>
224   </tr>
225   <tr>
226     <td> changes </td>
227     <td> Script that shows recent changes </td>
228   </tr>
229   <tr>
230     <td> delete </td>
231     <td> (not used yet) </td>
232   </tr>
233   <tr>
234     <td> edit </td>
235     <td> Script to edit a topic </td>
236   </tr>
237   <tr>
238     <td> mailnotify </td>
239     <td> Script called by cron job to notify users of changes </td>
240   </tr>
241   <tr>
242     <td> oops </td>
243     <td> Script that shows a OK or oops dialog </td>
244   </tr>
245   <tr>
246     <td> preview </td>
247     <td> Script to preview topic after edit </td>
248   </tr>
249   <tr>
250     <td> rdiff </td>
251     <td> Script to see differences of topics </td>
252   </tr>
253   <tr>
254     <td> register </td>
255     <td> Script to register new users </td>
256   </tr>
257   <tr>
258     <td> save </td>
259     <td> Script that saves a topic, called by preview </td>
260   </tr>
261   <tr>
262     <td> search </td>
263     <td> Script that displays search results </td>
264   </tr>
265   <tr>
266     <td> upload </td>
267     <td> Script that does file upload ([[Main/FileAttachment]]) </td>
268   </tr>
269   <tr>
270     <td> view </td>
271     <td> Script to view a topic ( <strong>the</strong> script ) </td>
272   </tr>
273   <tr>
274     <td> viewfile </td>
275     <td> Script to view an file attachment </td>
276   </tr>
277   <tr>
278     <td> wiki.pm </td>
279     <td> main TWiki library </td>
280   </tr>
281   <tr>
282     <td> wikicfg.pm </td>
283     <td> for initialization and configuration, used by wiki.pm </td>
284   </tr>
285 </table>
286
287 <a name="installation"> </a>
288
289 ----
290
291 **(6) Installation Notes**
292
293 These installation steps use Apache web server on Linux as an example. TWiki should run on other web servers and Unix systems as well.
294
295 - Request the TWiki distribution (in Unix ZIP format) from <http://www.mindspring.net/~peterthoeny/twiki/index.html> .
296 - Create directory `/home/httpd/twiki` and unzip the TWiki distribution to this directory.
297 - The `twiki/bin` directory of TWiki must be set as a cgi-bin directory. Add `/home/httpd/twiki/bin` to `/etc/httpd/conf/access.conf` with only `ExecCGI` option.
298 - The `twiki/pub` directory of TWiki must be set so that it is visible as a URL. Add `/home/httpd/twiki/pub` to `/etc/httpd/conf/access.conf` with normal access options (copy from /home/httpd/html).
299 - Now add `Alias` for `/twiki/pub` and `ScriptAlias` for `/twiki/bin` to `/etc/httpd/conf/srm-conf` .
300 - Restart Apache by `/etc/rc.d/rc5.d/S85httpd restart` .
301 - Test if the `twiki/bin` directory is cgi-enabled: Enter the URL of that directory into your browser (<http://your.domain.com/twiki/bin>). It is not set correctly as cgi-bin in case you get something like `"Index of /twiki/bin"` . It is OK if you get a message like `"Forbidden. You don't have permission to access /twiki/bin/ on this server."` .
302 - Make sure PERL and the PERL CGI library is installed on your system. Default location of PERL executable is `/usr/bin/perl` . In case PERL is installed in a different location, the first line of all perl scripts in the `twiki/bin` directory need to be changed (alternatively you can create a symbolic link from `/usr/bin/perl` ).
303 - To be able to edit the perl scripts and .tmpl files it is necessary to `chown` and `chgrp -R twiki` so all the files have the owner you want.
304 - The scripts execute as `nobody` . Set the file permission of all Perl scripts in the `twiki/bin` directory as executable to `-rw-r-xr-x` .
305 - Set the file permission of all files below `twiki/data` to 666 ( `-rw-rw-rw-` ).
306 - Set the file permission of the `twiki/data` directory and all its subdirectories to 777 ( `drwxrwxrwx` ).
307 - Set the file permission of the `twiki/pub` directory to 777 ( `drwxrwxrwx` ).
308 - Edit the file `twiki/bin/wikicfg.pm` and set the variables at the beginning of the file to your needs.
309 - Make sure RCS is installed. In case RCS is not in the `path` environment variable, add it to `path` . Alternatively, add the full path name to the `rcs, ci, co, rlog, rcsdiff` commands in the variables of `twiki/bin/wikicfg.pm` .
310 - Point your browser at <http://your.domain.com/twiki/bin/view> and start wiki-ing away!
311 - Security issue: Directories `twiki/data` , `twiki/templates` and all its subdirectories should be set so that they are **not** visible as a URL. (Alternatively, move the directries to a place where they are not visible, and change the variables in `twiki/bin/wikicfg.pm` accordingly)
312 - Optional: You can add new rendering rules or new %variables%. To insure an easy upgrade of TWiki it is recommended to do this customization in `twiki/bin/wikicfg.pm` , not `twiki/bin/wiki.pm` .
313 - Optional: If you are on a public server and you would like to authenticate users you need to rename file `.htaccess.txt` in the `twiki/bin` directory to `.htaccess` and change it to your needs. Consult the HTTP server documentation for details.
314
315 - To create a new web:
316   - Use a topic name consisting of characters `A..Z` , `a..z` but **not** in [[WikiNotation]].
317   - Create a new template directory under `twiki/templates` .
318   - Create a new data directory under `twiki/data` .
319   - Copy the files [[TWikiUsers]].txt, [[WebHome]].txt, [[WebNotify]].txt, [[WebSearch]].txt, webcolor.inc, and weblist.inc from the `twiki/data/Main` directory to the new data directory.
320   - Make changes to webcolor.inc (unique color for web), and possibly also weblist.inc (web specific links on top).
321   - In case you need a web specific copyright notice (at the bottom), copy file webcopyright.inc from the `twiki/data` directory to the new data directory, and customize it.
322   - If needed, create customized templates in the new templates directory. (Non existing templates are inherited from `twiki/templates` )
323   - If you want to use a category table, copy the three files twikicatitems.tmpl, twikicatedit.tmpl and twikicatview.tmpl from the `twiki/templates/Know` directory to the new templates directory, and customize it. The TWiki Category Table section has more.
324
325 For debugging reasons, here are contents of directories with file permissions:
326
327 directory `twiki/bin` :
328
329     drwxr-xr-x  5 twiki  t5                             512 Nov 11 02:52 .
330     drwxr-xr-x  5 twiki  t5                             512 Nov  6 02:57 ..
331     drwxrwxrwx  6 twiki  t5                             512 Nov  6 03:13 data
332     drwxr-xr-x  6 twiki  t5                             512 Nov  4 20:34 templates
333     -rw-r--r--  1 twiki  t5                             430 Oct 21 18:51 .htaccess
334     -rwxrwxrwx  1 twiki  t5                       3752 Mar 27 02:21 attach
335     -rwxr-xr-x  1 twiki  t5                       2810 Oct 21 18:51 changes
336     -rwxrwxrwx  1 twiki  t5                       1244 Mar 27 02:21 delete
337     -rw-r-xr-x  1 twiki  t5                       2589 Nov  6 03:05 edit
338     -rwxr-xr-x  1 twiki  t5                       4614 Oct 21 18:52 mailnotify
339     -rw-r-xr-x  1 twiki  t5                       1353 Oct 23 20:19 oops
340     -rw-r-xr-x  1 twiki  t5                       2043 Nov  6 03:05 preview
341     -rw-r-xr-x  1 twiki  t5                       6249 Aug  3 04:34 register
342     -rw-r-xr-x  1 twiki  t5                       6890 Nov 11 03:06 rdiff
343     -rw-r-xr-x  1 twiki  t5                       1819 Nov  6 03:06 save
344     -rwxr-xr-x  1 twiki  t5                       3174 Oct 21 18:51 search
345     -rwxrwxrwx  1 twiki  t5                       6696 Mar 27 02:22 upload
346     -rw-r-xr-x  1 twiki  t5                       3878 Nov 11 03:06 view
347     -rwxrwxrwx  1 twiki  t5                       1538 Mar 27 02:22 viewfile
348     -rw-r-xr-x  1 twiki  t5                      16169 Nov  7 01:43 wiki.pm
349     -rw-r-xr-x  1 twiki  t5                       3945 Jun 23 01:24 wikicfg.pm
350
351 directory `twiki/templates/` :
352
353     drwxr-xr-x  6 twiki  t5                             512 Nov  4 20:34 .
354     drwxr-xr-x  5 twiki  t5                             512 Nov 11 02:52 ..
355     drwxr-xr-x  2 twiki  t5                             512 Oct 23 20:57 Know
356     drwxr-xr-x  2 twiki  t5                             512 Nov  4 20:35 Main
357     -rw-r--r--  1 twiki  t5                       2232 Mar 27 02:03 attach.tmpl
358     -rw-r--r--  1 twiki  t5                       1200 Mar 27 02:03 attachtable.tmpl
359     -rw-r--r--  1 twiki  t5                       1751 Nov 11 02:41 changes.tmpl
360     -rw-r--r--  1 twiki  t5                       1711 Nov  6 03:01 edit.tmpl
361     -rw-r--r--  1 twiki  t5                             896 Oct 21 18:51 mailnotify.tmpl
362     -rw-r--r--  1 twiki  t5                              25 Oct 21 18:51 notedited.tmpl
363     -rw-r--r--  1 twiki  t5                              21 Oct 21 18:51 notext.tmpl
364     -rw-r--r--  1 twiki  t5                             157 Oct 23 21:05 notwiki.tmpl
365     -rw-r--r--  1 twiki  t5                             218 Oct 23 20:06 noweb.tmpl
366     -rw-r--r--  1 twiki  t5                             279 Oct 23 20:29 oops.tmpl
367     -rw-r--r--  1 twiki  t5                             833 Mar 27 02:03 oopsdel.tmpl
368     -rw-r--r--  1 twiki  t5                       1331 Oct 23 20:29 oopslocked.tmpl
369     -rw-r--r--  1 twiki  t5                       1026 Aug 03 08:21 oopsregexist.tmpl
370     -rw-r--r--  1 twiki  t5                             935 Aug 03 08:23 oopsregpasswd.tmpl
371     -rw-r--r--  1 twiki  t5                             924 Aug 03 08:26 oopsregrequ.tmpl
372     -rw-r--r--  1 twiki  t5                             931 Aug 03 08:29 oopsregwiki.tmpl
373     -rw-r--r--  1 twiki  t5                             868 Mar 27 02:03 oopsupload.tmpl
374     -rw-r--r--  1 twiki  t5                       2010 Nov  6 03:01 preview.tmpl
375     -rw-r--r--  1 twiki  t5                       1501 Nov 12 22:56 rdiff.tmpl
376     -rw-r--r--  1 twiki  t5                             263 Aug  3 02:44 register.tmpl
377     -rw-r--r--  1 twiki  t5                       1548 Oct 23 21:10 search.tmpl
378     -rw-r--r--  1 twiki  t5                       1541 Oct 26 21:07 view.tmpl
379
380 directory `twiki/templates/Main` :
381
382     drwxr-xr-x  2 twiki  t5                             512 Nov  4 20:35 .
383     drwxr-xr-x  6 twiki  t5                             512 Nov  4 20:34 ..
384     -rw-r--r--  1 twiki  t5                       2328 Nov  6 03:03 edit.tmpl
385
386 directory `twiki/templates/Know` (has a TWiki Category Table) :
387
388     drwxr-xr-x  2 twiki  t5                             512 Nov  4 20:35 .
389     drwxr-xr-x  6 twiki  t5                             512 Nov  4 20:34 ..
390     -rw-r--r--  1 twiki  t5                             611 Dec  7 20:59 notedited.tmpl
391     -rw-r--r--  1 twiki  t5                             210 Dec 24 23:22 twikicatedit.tmpl
392     -rw-r--r--  1 twiki  t5                       1887 Jan  6 20:54 twikicatitems.tmpl
393     -rw-r--r--  1 twiki  t5                             245 Dec 24 23:27 twikicatview.tmpl
394
395 directory `twiki/data/` :
396
397     drwxrwxrwx  6 twiki  t5                             512 Nov 19 01:01 .
398     drwxr-xr-x  5 twiki  t5                             512 Nov 11 02:52 ..
399     drwxrwxrwx  2 twiki  t5                       9216 Nov 13 13:55 Know
400     drwxrwxrwx  2 twiki  t5                       4608 Nov 15 21:42 Main
401     -rw-r--r--  1 nobody        65535                    53 Aug 03 08:31 .htpasswd
402     -rw-rw-rw-  1 twiki  t5                       1091 Nov  6 04:15 debug.txt
403     -rw-r--r--  1 nobody        65535             4153 Nov 19 01:01 log199810.txt
404     -rw-r--r--  1 nobody        65535             7189 Nov 19 01:01 log199811.txt
405     -rw-r--r--  1 twiki  t5                       2356 Oct 22 00:56 webcopyright.inc
406     -rw-r--r--  1 twiki  t5                             276 Oct 22 00:28 wikiwebs.inc
407     -rw-r--r--  1 twiki  t5                       1484 Oct 22 01:11 wikiwebtable.inc
408
409 part of directory `twiki/data/Main` :
410
411     drwxrwxrwx  2 twiki  t5                       4608 Nov 19 00:56 .
412     drwxrwxrwx  6 twiki  t5                             512 Nov 19 01:01 ..
413     -rw-rw-rw-  1 twiki  t5                       5974 Nov 15 21:42 .changes
414     -rw-rw-rw-  1 twiki  t5                               9 Nov 15 23:00 .mailnotify
415     -rw-r--r--  1 nobody        65535             3991 Jul 22 04:33 FileAttachment.txt
416     -r--r--r--  1 nobody        65535             4173 Jul 22 04:33 FileAttachment.txt,v
417     -rw-r--r--  1 nobody        65535             6773 Aug  5 16:18 TWikiRegistration.txt
418     -r--r--r--  1 nobody        65535             6960 Aug  5 16:18 TWikiRegistration.txt,v
419     -rw-r--r--  1 nobody        65535             1990 Nov  6 18:25 TWikiUsers.txt
420     -r--r--r--  1 nobody        65535             3045 Nov  6 18:25 TWikiUsers.txt,v
421     -rw-r--r--  1 nobody        65535             1181 Oct 29 20:54 WebHome.txt
422     -r--r--r--  1 nobody        65535             1537 Oct 29 20:54 WebHome.txt,v
423     -rw-r--r--  1 nobody        65535                   454 Oct 21 18:52 WebNotify.txt
424     -r--r--r--  1 nobody        65535                   638 Oct 27 02:45 WebNotify.txt,v
425     -rw-r--r--  1 nobody        65535             3653 Oct 21 18:52 WebSearch.txt
426     -r--r--r--  1 nobody        65535             3835 Oct 27 02:45 WebSearch.txt,v
427     -rw-rw-rw-  1 twiki  t5                               7 Oct 21 18:52 webcolor.inc
428     -rw-rw-rw-  1 twiki  t5                             278 May 20 17:42 webcopyright.inc
429     -rw-rw-rw-  1 twiki  t5                             402 Oct 26 07:45 weblist.inc
430
431 directory `twiki/pub/` :
432
433     drwxrwxrwx  4 twiki  t5                       1024 Mar 27 02:58 .
434     drwxr-xr-x  4 twiki  t5                       1024 Mar 27 02:08 ..
435     drwxrwxrwx  4 nobody        nobody           1024 Mar 27 03:54 Main
436     -rw-r--r--  1 twiki  t5                       2877 Mar 27 02:27 wikiHome.gif
437     drwxr-xr-x  2 twiki  t5                       1024 Mar 27 03:17 icn
438
439 directory `twiki/pub/icn/` :
440
441     drwxr-xr-x  2 twiki  t5                       1024 Mar 27 03:17 .
442     drwxrwxrwx  4 twiki  t5                       1024 Mar 27 02:58 ..
443     -rw-r--r--  1 twiki  t5                             801 Mar 27 03:02 _filetypes.txt
444     -rw-r--r--  1 twiki  t5                             143 Mar 27 03:16 bat.gif
445     -rw-r--r--  1 twiki  t5                             926 Mar 27 03:16 bmp.gif
446     -rw-r--r--  1 twiki  t5                             141 Mar 27 03:16 c.gif
447     -rw-r--r--  1 twiki  t5                             144 Mar 27 03:16 dll.gif
448     -rw-r--r--  1 twiki  t5                             152 Mar 27 03:16 doc.gif
449     -rw-r--r--  1 twiki  t5                             130 Mar 27 03:16 else.gif
450     -rw-r--r--  1 twiki  t5                             876 Mar 27 03:16 exe.gif
451     -rw-r--r--  1 twiki  t5                             147 Mar 27 03:16 fon.gif
452     -rw-r--r--  1 twiki  t5                             142 Mar 27 03:16 h.gif
453     -rw-r--r--  1 twiki  t5                             156 Mar 27 03:16 hlp.gif
454     -rw-r--r--  1 twiki  t5                             186 Mar 27 03:16 html.gif
455     -rw-r--r--  1 twiki  t5                             144 Mar 27 03:16 java.gif
456     -rw-r--r--  1 twiki  t5                             148 Mar 27 03:16 mov.gif
457     -rw-r--r--  1 twiki  t5                             150 Mar 27 03:16 pdf.gif
458     -rw-r--r--  1 twiki  t5                             146 Mar 27 03:16 pl.gif
459     -rw-r--r--  1 twiki  t5                             150 Mar 27 03:16 ppt.gif
460     -rw-r--r--  1 twiki  t5                             148 Mar 27 03:16 ps.gif
461     -rw-r--r--  1 twiki  t5                             148 Mar 27 03:16 py.gif
462     -rw-r--r--  1 twiki  t5                             130 Mar 27 03:17 ram.gif
463     -rw-r--r--  1 twiki  t5                             154 Mar 27 03:17 reg.gif
464     -rw-r--r--  1 twiki  t5                             147 Mar 27 03:17 sh.gif
465     -rw-r--r--  1 twiki  t5                             155 Mar 27 03:17 sniff.gif
466     -rw-r--r--  1 twiki  t5                             149 Mar 27 03:17 ttf.gif
467     -rw-r--r--  1 twiki  t5                             134 Mar 27 03:17 txt.gif
468     -rw-r--r--  1 twiki  t5                             154 Mar 27 03:17 wav.gif
469     -rw-r--r--  1 twiki  t5                             152 Mar 27 03:17 wri.gif
470     -rw-r--r--  1 twiki  t5                             152 Mar 27 03:17 xls.gif
471     -rw-r--r--  1 twiki  t5                             144 Mar 27 03:17 zip.gif
472
473 -- [[PeterThoeny]] - 22 Oct 1998 <br /> -- [[PeterThoeny]] - 18 Nov 1998 <br /> -- [[PeterThoeny]] - 11 Jan 1999 <br /> -- [[PeterThoeny]] - 20 Jan 1999 <br /> -- [[PeterThoeny]] - 06 Mar 1999 <br /> -- [[PeterThoeny]] - 27 Mar 1999 <br /> -- [[PeterThoeny]] - 02 Jun 1999 <br /> -- [[PeterThoeny]] - 14 Jun 1999 <br /> -- [[PeterThoeny]] - 23 Jun 1999 <br /> -- [[PeterThoeny]] - 01 Sep 1999 <br />