summaryrefslogtreecommitdiff
path: root/TWiki/TWikiImplementationNotes.mdwn
diff options
context:
space:
mode:
authorPeter Thoeny <web-hurd@gnu.org>2000-11-02 08:20:55 +0000
committerPeter Thoeny <web-hurd@gnu.org>2000-11-02 08:20:55 +0000
commitd225f3f7031cb22f8aa15c50fa1121e095ad31c3 (patch)
tree3bc0072507eff719384f9f951fef75d75e61186b /TWiki/TWikiImplementationNotes.mdwn
parent8804285ec3b154efef62aef8026e06bf3f4fa0e7 (diff)
none
Diffstat (limited to 'TWiki/TWikiImplementationNotes.mdwn')
-rw-r--r--TWiki/TWikiImplementationNotes.mdwn64
1 files changed, 38 insertions, 26 deletions
diff --git a/TWiki/TWikiImplementationNotes.mdwn b/TWiki/TWikiImplementationNotes.mdwn
index 21644f1e..293ff37a 100644
--- a/TWiki/TWikiImplementationNotes.mdwn
+++ b/TWiki/TWikiImplementationNotes.mdwn
@@ -1,6 +1,6 @@
**_Platform_**
-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.
+TWiki is written in PERL 5, but it uses also many shell command. The current implementation runs best on a Unix machine; also possible on Windows. RCS for revision control must be installed on the system.
**_Directories_**
@@ -10,19 +10,19 @@ TWiki is written in PERL 5, but it uses also many shell command. The current imp
<th bgcolor="#99CCCC"><strong>Used for:</strong></th>
</tr>
<tr>
- <td> twiki/bin </td>
+ <td><code>twiki/bin</code></td>
<td> TWiki PERL scripts </td>
</tr>
<tr>
- <td> twiki/pub </td>
+ <td><code>twiki/pub</code></td>
<td> Public files (<span style="background:"><font color="">File Attachments</font></span><a href="http://LOCATION/FileAttachments">?</a>, images) </td>
</tr>
<tr>
- <td> twiki/data </td>
+ <td><code>twiki/data</code></td>
<td> source text </td>
</tr>
<tr>
- <td> twiki/templates </td>
+ <td><code>twiki/templates</code></td>
<td> HTML templates, used by TWiki scripts </td>
</tr>
</table>
@@ -35,85 +35,97 @@ TWiki is written in PERL 5, but it uses also many shell command. The current imp
<th bgcolor="#99CCCC"><strong>Used for:</strong></th>
</tr>
<tr>
- <td> .htaccess.txt </td>
+ <td><code>.htaccess.txt</code></td>
<td> Authentication. Rename to .htaccess and customize if used </td>
</tr>
<tr>
- <td> attach </td>
+ <td><code>attach</code></td>
<td> Script that shows the attach file page (<span style="background:"><font color="">File Attachment</font></span><a href="http://LOCATION/FileAttachment">?</a>) </td>
</tr>
<tr>
- <td> delete </td>
+ <td><code>delete</code></td>
<td> (not used yet) </td>
</tr>
<tr>
- <td> edit </td>
+ <td><code>edit</code></td>
<td> Script to edit a topic </td>
</tr>
<tr>
- <td> geturl </td>
+ <td><code>geturl</code></td>
<td> Script to fetch URL data </td>
</tr>
<tr>
- <td> mailnotify </td>
+ <td><code>mailnotify</code></td>
<td> Script called by cron job to notify users of changes </td>
</tr>
<tr>
- <td> oops </td>
+ <td><code>oops</code></td>
<td> Script that shows a OK or oops dialog </td>
</tr>
<tr>
- <td> preview </td>
+ <td><code>preview</code></td>
<td> Script to preview topic after edit </td>
</tr>
<tr>
- <td> rdiff </td>
+ <td><code>rdiff</code></td>
<td> Script to see differences of topics </td>
</tr>
<tr>
- <td> register </td>
+ <td><code>register</code></td>
<td> Script to register new users </td>
</tr>
<tr>
- <td> save </td>
+ <td><code>save</code></td>
<td> Script that saves a topic, called by preview </td>
</tr>
<tr>
- <td> search </td>
+ <td><code>search</code></td>
<td> Script that displays search results </td>
</tr>
<tr>
- <td> statistics </td>
+ <td><code>statistics</code></td>
<td> Script to create statistics topic </td>
</tr>
<tr>
- <td> testenv </td>
+ <td><code>testenv</code></td>
<td> Script to test CGI environment variables </td>
</tr>
<tr>
- <td> upload </td>
+ <td><code>upload</code></td>
<td> Script that does file upload (<span style="background:"><font color="">File Attachment</font></span><a href="http://LOCATION/FileAttachment">?</a>) </td>
</tr>
<tr>
- <td> view </td>
+ <td><code>view</code></td>
<td> Script to view a topic ( <strong>the</strong> script ) </td>
</tr>
<tr>
- <td> viewfile </td>
+ <td><code>viewfile</code></td>
<td> Script to view an file attachment </td>
</tr>
<tr>
- <td> wiki.pm </td>
+ <td><code>wiki.pm</code></td>
<td> main TWiki library </td>
</tr>
<tr>
- <td> wikicfg.pm </td>
+ <td><code>wikiaccess.pm</code></td>
+ <td> access control </td>
+ </tr>
+ <tr>
+ <td><code>wikicfg.pm</code></td>
<td> for initialization and configuration, used by wiki.pm </td>
</tr>
<tr>
- <td> wikisearch.pm </td>
+ <td><code>wikiprefs.pm</code></td>
+ <td> preferences handling </td>
+ </tr>
+ <tr>
+ <td><code>wikisearch.pm</code></td>
<td> search engine, used by wiki.pm </td>
</tr>
+ <tr>
+ <td><code>wikistore.pm</code></td>
+ <td> back-end storage, <code>*.txt</code> text file and <code>*.txt,v</code> RCS repository file handling </td>
+ </tr>
</table>
--- [[Main/PeterThoeny]] - 19 Aug 2000 <br />
+-- [[Main/PeterThoeny]] - 02 Nov 2000 <br />