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