summaryrefslogtreecommitdiff
path: root/TWiki/TWikiImplementationNotes.mdwn
diff options
context:
space:
mode:
authorPeter Thoeny <web-hurd@gnu.org>2000-04-22 00:59:49 +0000
committerPeter Thoeny <web-hurd@gnu.org>2000-04-22 00:59:49 +0000
commit8cb3b01fe021d4461f30c595b74a60a1a17233e0 (patch)
tree350af45de9be15a69dd1f6df08680205236f5c17 /TWiki/TWikiImplementationNotes.mdwn
parent4451c8db382e59b3b7ae7698aea6a12b1f13b766 (diff)
none
Diffstat (limited to 'TWiki/TWikiImplementationNotes.mdwn')
-rw-r--r--TWiki/TWikiImplementationNotes.mdwn123
1 files changed, 123 insertions, 0 deletions
diff --git a/TWiki/TWikiImplementationNotes.mdwn b/TWiki/TWikiImplementationNotes.mdwn
new file mode 100644
index 00000000..1c6ed074
--- /dev/null
+++ b/TWiki/TWikiImplementationNotes.mdwn
@@ -0,0 +1,123 @@
+**_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.
+
+**_Directories_**
+
+<table border="1" cellpadding="1" cellspacing="0">
+ <tr>
+ <th bgcolor="#99CCCC"><strong>Directory:</strong></th>
+ <th bgcolor="#99CCCC"><strong>Used for:</strong></th>
+ </tr>
+ <tr>
+ <td> twiki/bin </td>
+ <td> TWiki PERL scripts </td>
+ </tr>
+ <tr>
+ <td> twiki/pub </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> source text </td>
+ </tr>
+ <tr>
+ <td> twiki/templates </td>
+ <td> HTML templates, used by TWiki scripts </td>
+ </tr>
+</table>
+
+**_Files in twiki/bin_**
+
+<table border="1" cellpadding="1" cellspacing="0">
+ <tr>
+ <th bgcolor="#99CCCC"><strong>File:</strong></th>
+ <th bgcolor="#99CCCC"><strong>Used for:</strong></th>
+ </tr>
+ <tr>
+ <td> .htaccess.txt </td>
+ <td> Authentication. Rename to .htaccess and customize if used </td>
+ </tr>
+ <tr>
+ <td> attach </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> changes </td>
+ <td> Script that shows recent changes </td>
+ </tr>
+ <tr>
+ <td> delete </td>
+ <td> (not used yet) </td>
+ </tr>
+ <tr>
+ <td> edit </td>
+ <td> Script to edit a topic </td>
+ </tr>
+ <tr>
+ <td> geturl </td>
+ <td> Script to fetch URL data </td>
+ </tr>
+ <tr>
+ <td> mailnotify </td>
+ <td> Script called by cron job to notify users of changes </td>
+ </tr>
+ <tr>
+ <td> oops </td>
+ <td> Script that shows a OK or oops dialog </td>
+ </tr>
+ <tr>
+ <td> preview </td>
+ <td> Script to preview topic after edit </td>
+ </tr>
+ <tr>
+ <td> rdiff </td>
+ <td> Script to see differences of topics </td>
+ </tr>
+ <tr>
+ <td> register </td>
+ <td> Script to register new users </td>
+ </tr>
+ <tr>
+ <td> save </td>
+ <td> Script that saves a topic, called by preview </td>
+ </tr>
+ <tr>
+ <td> search </td>
+ <td> Script that displays search results </td>
+ </tr>
+ <tr>
+ <td> statistics </td>
+ <td> Script to create statistics topic </td>
+ </tr>
+ <tr>
+ <td> testenv </td>
+ <td> Script to test CGI environment variables </td>
+ </tr>
+ <tr>
+ <td> upload </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> Script to view a topic ( <strong>the</strong> script ) </td>
+ </tr>
+ <tr>
+ <td> viewfile </td>
+ <td> Script to view an file attachment </td>
+ </tr>
+ <tr>
+ <td> wiki.pm </td>
+ <td> main TWiki library </td>
+ </tr>
+ <tr>
+ <td> wikicfg.pm </td>
+ <td> for initialization and configuration, used by wiki.pm </td>
+ </tr>
+ <tr>
+ <td> wikisearch.pm </td>
+ <td> search engine, used by wiki.pm </td>
+ </tr>
+</table>
+
+-- [[Main/PeterThoeny]] - 21 Apr 2000 <br />