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 **_Note:_** It is possible to force the values of a category table when creating a new topic. This is useful to create new topics using a form for the topic name. The default values of the category table can be specified as hidden fields if needed, i.e. `<input type="hidden" name="someCategory" value="someValue">`
176
177 Example (edit this page to see the source) :
178
179 - <form action="../../edit/Know/" name="main"> New [[Know/PublicFAQ]] topic: <input name="topic" size="32" type="text" /> <input name="TopicClassification" type="hidden" value="PublicFAQ" /> <input name="OperatingSystem" type="hidden" value="OsSolaris,OsSunOS" /> <input name="OsVersion" type="hidden" value="Just testing..." /> <input type="submit" value="Create" /></form>
180
181 <a name="implementation"> </a>
182
183 ----
184
185 **(5) Implementation Notes**
186
187 **\_Platform\_**
188
189 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.
190
191 **\_Directories\_**
192
193 <table border="1" cellpadding="0" cellspacing="0">
194   <tr>
195     <th bgcolor="#99CCCC"><strong> Directory: </strong></th>
196     <th bgcolor="#99CCCC"><strong> Used for: </strong></th>
197   </tr>
198   <tr>
199     <td> twiki/bin </td>
200     <td> TWiki PERL scripts </td>
201   </tr>
202   <tr>
203     <td> twiki/pub </td>
204     <td> Public files ([[Main/FileAttachments]], images) </td>
205   </tr>
206   <tr>
207     <td> twiki/data </td>
208     <td> source text </td>
209   </tr>
210   <tr>
211     <td> twiki/templates </td>
212     <td> HTML templates, used by TWiki scripts </td>
213   </tr>
214 </table>
215
216 **\_Files in twiki/bin\_**
217
218 <table border="1" cellpadding="0" cellspacing="0">
219   <tr>
220     <th bgcolor="#99CCCC"><strong> File: </strong></th>
221     <th bgcolor="#99CCCC"><strong> Used for: </strong></th>
222   </tr>
223   <tr>
224     <td> .htaccess.txt </td>
225     <td> Authentication. Rename to .htaccess and customize if used </td>
226   </tr>
227   <tr>
228     <td> attach </td>
229     <td> Script that shows the attach file page ([[Main/FileAttachment]]) </td>
230   </tr>
231   <tr>
232     <td> changes </td>
233     <td> Script that shows recent changes </td>
234   </tr>
235   <tr>
236     <td> delete </td>
237     <td> (not used yet) </td>
238   </tr>
239   <tr>
240     <td> edit </td>
241     <td> Script to edit a topic </td>
242   </tr>
243   <tr>
244     <td> mailnotify </td>
245     <td> Script called by cron job to notify users of changes </td>
246   </tr>
247   <tr>
248     <td> oops </td>
249     <td> Script that shows a OK or oops dialog </td>
250   </tr>
251   <tr>
252     <td> preview </td>
253     <td> Script to preview topic after edit </td>
254   </tr>
255   <tr>
256     <td> rdiff </td>
257     <td> Script to see differences of topics </td>
258   </tr>
259   <tr>
260     <td> register </td>
261     <td> Script to register new users </td>
262   </tr>
263   <tr>
264     <td> save </td>
265     <td> Script that saves a topic, called by preview </td>
266   </tr>
267   <tr>
268     <td> search </td>
269     <td> Script that displays search results </td>
270   </tr>
271   <tr>
272     <td> upload </td>
273     <td> Script that does file upload ([[Main/FileAttachment]]) </td>
274   </tr>
275   <tr>
276     <td> view </td>
277     <td> Script to view a topic ( <strong>the</strong> script ) </td>
278   </tr>
279   <tr>
280     <td> viewfile </td>
281     <td> Script to view an file attachment </td>
282   </tr>
283   <tr>
284     <td> wiki.pm </td>
285     <td> main TWiki library </td>
286   </tr>
287   <tr>
288     <td> wikicfg.pm </td>
289     <td> for initialization and configuration, used by wiki.pm </td>
290   </tr>
291 </table>
292
293 <a name="installation"> </a>
294
295 ----
296
297 **(6) Installation Notes**
298
299 These installation steps use Apache web server on Linux as an example. TWiki should run on other web servers and Unix systems as well.
300
301 **_Note:_** These installation notes assume user `nobody` for all files manupulated by the cgi scripts (executed by the web server), and user `twiki` for all other files. You need to replace user `nobody` with an other user in case the web server executes the script with a different user ( default for Debian is `www-data` ). Also, you can substitute user `twiki` with your own user name.
302
303 - Request the TWiki distribution (in Unix ZIP format) from <http://www.mindspring.net/~peterthoeny/twiki/index.html> .
304 - Create directory `/home/httpd/twiki` and unzip the TWiki distribution to this directory.
305 - 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.
306 - 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).
307 - Now add `Alias` for `/twiki/pub` and `ScriptAlias` for `/twiki/bin` to `/etc/httpd/conf/srm-conf` .
308 - Restart Apache by `/etc/rc.d/rc5.d/S85httpd restart` .
309 - 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."` .
310 - 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` ).
311 - 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.
312 - 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` .
313 - Set the file permission of all files below `twiki/data` to 666 ( `-rw-rw-rw-` ).
314 - Set the file permission of the `twiki/data` directory and all its subdirectories to 777 ( `drwxrwxrwx` ).
315 - Set the file permission of the `twiki/pub` directory to 777 ( `drwxrwxrwx` ).
316 - Edit the file `twiki/bin/wikicfg.pm` and set the variables at the beginning of the file to your needs.
317 - 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` .
318 - Point your browser at <http://your.domain.com/twiki/bin/view> and start wiki-ing away!
319 - Note in case cgi user is **_not_** `nobody` : The `*,v` RCS repository files delivered with the installation package are locked by user `nobody` . In case the user is different (e.g. `www-data` ), it is not possible to check in files, this has the effect that the topic version number does not increase when saving a topic. In this case you need to unlock all repository files and lock them as user `www-data` , or simply delete all the repository files.
320 - 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)
321 - 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` .
322 - 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.
323
324 - To create a new web:
325   - Use a topic name consisting of characters `A..Z` , `a..z` but **not** in [[WikiNotation]].
326   - Create a new template directory under `twiki/templates` .
327   - Create a new data directory under `twiki/data` and check the file permission of the directory.
328   - 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.
329   - Make changes to webcolor.inc (unique color for web), and possibly also weblist.inc (web specific links on top).
330   - 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.
331   - If needed, create customized templates in the new templates directory. (Non existing templates are inherited from `twiki/templates` )
332   - 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.
333
334 Here are contents of directories with file permissions. Please note that this is for debugging reasons only and does not exactly reflect the distribution:
335
336 directory `twiki/bin` :
337
338     drwxr-xr-x  5 twiki  t5                             512 Nov 11 02:52 .
339     drwxr-xr-x  5 twiki  t5                             512 Nov  6 02:57 ..
340     -rw-r--r--  1 twiki  t5                             430 Oct 21 18:51 .htaccess
341     -rw-r-xr-x  1 twiki  t5                       3752 Mar 27 02:21 attach
342     -rw-r-xr-x  1 twiki  t5                       2810 Oct 21 18:51 changes
343     -rw-r-xr-x  1 twiki  t5                       1244 Mar 27 02:21 delete
344     -rw-r-xr-x  1 twiki  t5                       2589 Nov  6 03:05 edit
345     -rwxr-xr-x  1 twiki  t5                       4614 Oct 21 18:52 mailnotify
346     -rw-r-xr-x  1 twiki  t5                       1353 Oct 23 20:19 oops
347     -rw-r-xr-x  1 twiki  t5                       2043 Nov  6 03:05 preview
348     -rw-r-xr-x  1 twiki  t5                       6249 Aug  3 04:34 register
349     -rw-r-xr-x  1 twiki  t5                       6890 Nov 11 03:06 rdiff
350     -rw-r-xr-x  1 twiki  t5                       1819 Nov  6 03:06 save
351     -rw-r-xr-x  1 twiki  t5                       3174 Oct 21 18:51 search
352     -rw-r-xr-x  1 twiki  t5                       6696 Mar 27 02:22 upload
353     -rw-r-xr-x  1 twiki  t5                       3878 Nov 11 03:06 view
354     -rw-r-xr-x  1 twiki  t5                       1538 Mar 27 02:22 viewfile
355     -rw-r-xr-x  1 twiki  t5                      16169 Nov  7 01:43 wiki.pm
356     -rw-r-xr-x  1 twiki  t5                       3945 Jun 23 01:24 wikicfg.pm
357
358 directory `twiki/templates/` :
359
360     drwxr-xr-x  6 twiki  t5                             512 Nov  4 20:34 .
361     drwxr-xr-x  5 twiki  t5                             512 Nov 11 02:52 ..
362     drwxr-xr-x  2 twiki  t5                             512 Oct 23 20:57 Know
363     drwxr-xr-x  2 twiki  t5                             512 Nov  4 20:35 Main
364     -rw-r--r--  1 twiki  t5                       2232 Mar 27 02:03 attach.tmpl
365     -rw-r--r--  1 twiki  t5                       1200 Mar 27 02:03 attachtable.tmpl
366     -rw-r--r--  1 twiki  t5                       1751 Nov 11 02:41 changes.tmpl
367     -rw-r--r--  1 twiki  t5                       1711 Nov  6 03:01 edit.tmpl
368     -rw-r--r--  1 twiki  t5                             896 Oct 21 18:51 mailnotify.tmpl
369     -rw-r--r--  1 twiki  t5                              25 Oct 21 18:51 notedited.tmpl
370     -rw-r--r--  1 twiki  t5                              21 Oct 21 18:51 notext.tmpl
371     -rw-r--r--  1 twiki  t5                             157 Oct 23 21:05 notwiki.tmpl
372     -rw-r--r--  1 twiki  t5                             218 Oct 23 20:06 noweb.tmpl
373     -rw-r--r--  1 twiki  t5                             279 Oct 23 20:29 oops.tmpl
374     -rw-r--r--  1 twiki  t5                             833 Mar 27 02:03 oopsdel.tmpl
375     -rw-r--r--  1 twiki  t5                       1331 Oct 23 20:29 oopslocked.tmpl
376     -rw-r--r--  1 twiki  t5                       1026 Aug 03 08:21 oopsregexist.tmpl
377     -rw-r--r--  1 twiki  t5                             935 Aug 03 08:23 oopsregpasswd.tmpl
378     -rw-r--r--  1 twiki  t5                             924 Aug 03 08:26 oopsregrequ.tmpl
379     -rw-r--r--  1 twiki  t5                             931 Aug 03 08:29 oopsregwiki.tmpl
380     -rw-r--r--  1 twiki  t5                             868 Mar 27 02:03 oopsupload.tmpl
381     -rw-r--r--  1 twiki  t5                       2010 Nov  6 03:01 preview.tmpl
382     -rw-r--r--  1 twiki  t5                       1501 Nov 12 22:56 rdiff.tmpl
383     -rw-r--r--  1 twiki  t5                             263 Aug  3 02:44 register.tmpl
384     -rw-r--r--  1 twiki  t5                       1548 Oct 23 21:10 search.tmpl
385     -rw-r--r--  1 twiki  t5                       1541 Oct 26 21:07 view.tmpl
386
387 directory `twiki/templates/Main` :
388
389     drwxr-xr-x  2 twiki  t5                             512 Nov  4 20:35 .
390     drwxr-xr-x  6 twiki  t5                             512 Nov  4 20:34 ..
391     -rw-r--r--  1 twiki  t5                       2328 Nov  6 03:03 edit.tmpl
392
393 directory `twiki/templates/Know` (has a TWiki Category Table) :
394
395     drwxr-xr-x  2 twiki  t5                             512 Nov  4 20:35 .
396     drwxr-xr-x  6 twiki  t5                             512 Nov  4 20:34 ..
397     -rw-r--r--  1 twiki  t5                             611 Dec  7 20:59 notedited.tmpl
398     -rw-r--r--  1 twiki  t5                             210 Dec 24 23:22 twikicatedit.tmpl
399     -rw-r--r--  1 twiki  t5                       1887 Jan  6 20:54 twikicatitems.tmpl
400     -rw-r--r--  1 twiki  t5                             245 Dec 24 23:27 twikicatview.tmpl
401
402 directory `twiki/data/` :
403
404     drwxrwxrwx  6 twiki  t5                             512 Nov 19 01:01 .
405     drwxr-xr-x  5 twiki  t5                             512 Nov 11 02:52 ..
406     drwxrwxrwx  2 twiki  t5                       9216 Nov 13 13:55 Know
407     drwxrwxrwx  2 twiki  t5                       4608 Nov 15 21:42 Main
408     -rw-r--r--  1 nobody        65535                    53 Aug 03 08:31 .htpasswd
409     -rw-rw-rw-  1 twiki  t5                       1091 Nov  6 04:15 debug.txt
410     -rw-r--r--  1 nobody        65535             4153 Nov 19 01:01 log199810.txt
411     -rw-r--r--  1 nobody        65535             7189 Nov 19 01:01 log199811.txt
412     -rw-r--r--  1 twiki  t5                       2356 Oct 22 00:56 webcopyright.inc
413     -rw-r--r--  1 twiki  t5                             276 Oct 22 00:28 wikiwebs.inc
414     -rw-r--r--  1 twiki  t5                       1484 Oct 22 01:11 wikiwebtable.inc
415
416 part of directory `twiki/data/Main` :
417
418     drwxrwxrwx  2 twiki  t5                       4608 Nov 19 00:56 .
419     drwxrwxrwx  6 twiki  t5                             512 Nov 19 01:01 ..
420     -rw-rw-rw-  1 twiki  t5                       5974 Nov 15 21:42 .changes
421     -rw-rw-rw-  1 twiki  t5                               9 Nov 15 23:00 .mailnotify
422     -rw-r--r--  1 nobody        65535             3991 Jul 22 04:33 FileAttachment.txt
423     -r--r--r--  1 nobody        65535             4173 Jul 22 04:33 FileAttachment.txt,v
424     -rw-r--r--  1 nobody        65535             6773 Aug  5 16:18 TWikiRegistration.txt
425     -r--r--r--  1 nobody        65535             6960 Aug  5 16:18 TWikiRegistration.txt,v
426     -rw-r--r--  1 nobody        65535             1990 Nov  6 18:25 TWikiUsers.txt
427     -r--r--r--  1 nobody        65535             3045 Nov  6 18:25 TWikiUsers.txt,v
428     -rw-r--r--  1 nobody        65535             1181 Oct 29 20:54 WebHome.txt
429     -r--r--r--  1 nobody        65535             1537 Oct 29 20:54 WebHome.txt,v
430     -rw-r--r--  1 nobody        65535                   454 Oct 21 18:52 WebNotify.txt
431     -r--r--r--  1 nobody        65535                   638 Oct 27 02:45 WebNotify.txt,v
432     -rw-r--r--  1 nobody        65535             3653 Oct 21 18:52 WebSearch.txt
433     -r--r--r--  1 nobody        65535             3835 Oct 27 02:45 WebSearch.txt,v
434     -rw-r--r--  1 twiki  t5                               7 Oct 21 18:52 webcolor.inc
435     -rw-r--r--  1 twiki  t5                             278 May 20 17:42 webcopyright.inc
436     -rw-r--r--  1 twiki  t5                             402 Oct 26 07:45 weblist.inc
437
438 directory `twiki/pub/` :
439
440     drwxrwxrwx  4 twiki  t5                       1024 Mar 27 02:58 .
441     drwxr-xr-x  4 twiki  t5                       1024 Mar 27 02:08 ..
442     drwxrwxrwx  4 nobody        nobody           1024 Mar 27 03:54 Main
443     -rw-r--r--  1 twiki  t5                       2877 Mar 27 02:27 wikiHome.gif
444     drwxr-xr-x  2 twiki  t5                       1024 Mar 27 03:17 icn
445
446 directory `twiki/pub/icn/` :
447
448     drwxr-xr-x  2 twiki  t5                       1024 Mar 27 03:17 .
449     drwxrwxrwx  4 twiki  t5                       1024 Mar 27 02:58 ..
450     -rw-r--r--  1 twiki  t5                             801 Mar 27 03:02 _filetypes.txt
451     -rw-r--r--  1 twiki  t5                             143 Mar 27 03:16 bat.gif
452     -rw-r--r--  1 twiki  t5                             926 Mar 27 03:16 bmp.gif
453     -rw-r--r--  1 twiki  t5                             141 Mar 27 03:16 c.gif
454     -rw-r--r--  1 twiki  t5                             144 Mar 27 03:16 dll.gif
455     -rw-r--r--  1 twiki  t5                             152 Mar 27 03:16 doc.gif
456     -rw-r--r--  1 twiki  t5                             130 Mar 27 03:16 else.gif
457     -rw-r--r--  1 twiki  t5                             876 Mar 27 03:16 exe.gif
458     -rw-r--r--  1 twiki  t5                             147 Mar 27 03:16 fon.gif
459     -rw-r--r--  1 twiki  t5                             142 Mar 27 03:16 h.gif
460     -rw-r--r--  1 twiki  t5                             156 Mar 27 03:16 hlp.gif
461     -rw-r--r--  1 twiki  t5                             186 Mar 27 03:16 html.gif
462     -rw-r--r--  1 twiki  t5                             144 Mar 27 03:16 java.gif
463     -rw-r--r--  1 twiki  t5                             148 Mar 27 03:16 mov.gif
464     -rw-r--r--  1 twiki  t5                             150 Mar 27 03:16 pdf.gif
465     -rw-r--r--  1 twiki  t5                             146 Mar 27 03:16 pl.gif
466     -rw-r--r--  1 twiki  t5                             150 Mar 27 03:16 ppt.gif
467     -rw-r--r--  1 twiki  t5                             148 Mar 27 03:16 ps.gif
468     -rw-r--r--  1 twiki  t5                             148 Mar 27 03:16 py.gif
469     -rw-r--r--  1 twiki  t5                             130 Mar 27 03:17 ram.gif
470     -rw-r--r--  1 twiki  t5                             154 Mar 27 03:17 reg.gif
471     -rw-r--r--  1 twiki  t5                             147 Mar 27 03:17 sh.gif
472     -rw-r--r--  1 twiki  t5                             155 Mar 27 03:17 sniff.gif
473     -rw-r--r--  1 twiki  t5                             149 Mar 27 03:17 ttf.gif
474     -rw-r--r--  1 twiki  t5                             134 Mar 27 03:17 txt.gif
475     -rw-r--r--  1 twiki  t5                             154 Mar 27 03:17 wav.gif
476     -rw-r--r--  1 twiki  t5                             152 Mar 27 03:17 wri.gif
477     -rw-r--r--  1 twiki  t5                             152 Mar 27 03:17 xls.gif
478     -rw-r--r--  1 twiki  t5                             144 Mar 27 03:17 zip.gif
479
480 -- [[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 /> -- [[PeterThoeny]] - 29 Sep 1999 <br /> -- [[PeterThoeny]] - 14 Jan 2000 <br />