summaryrefslogtreecommitdiff
path: root/TWiki
diff options
context:
space:
mode:
authorMikeMannix <MikeMannix>2001-12-02 10:22:00 +0000
committerMikeMannix <MikeMannix>2001-12-02 10:22:00 +0000
commit1e7deb59127dffababa58d316c3180914d3ca4bc (patch)
treef8a82c400a71f0c44172406269df12ba624b2f73 /TWiki
parentb4083176ac9865ad1af8c7cd38f14ca911a93113 (diff)
none
Diffstat (limited to 'TWiki')
-rw-r--r--TWiki/TWikiSiteTools.mdwn28
1 files changed, 23 insertions, 5 deletions
diff --git a/TWiki/TWikiSiteTools.mdwn b/TWiki/TWikiSiteTools.mdwn
index 0c447eb5..122efe04 100644
--- a/TWiki/TWikiSiteTools.mdwn
+++ b/TWiki/TWikiSiteTools.mdwn
@@ -12,6 +12,8 @@ _Utilities for searching, navigation, and monitoring site activity_
Each TWiki web has an automatic email alert service that sends a list of recent changes on a preset schedule, like once a day. Users can subscribe and unsubscribe using %NOTIFYTOPIC% in each web. The Perl script `mailnotify` is called by a deamon in regular intervals. The script sends an automated email to subscribed users if topics were changed in a web within last interval.
+* You can create a [[WebNotify]] using [[TWikiVariables]] with <code>**%NOTIFYTOPIC%**</code>
+
### <a name="Configuring_Outgoing_Mail"> Configuring Outgoing Mail </a>
%WIKITOOLNAME% will use the `Net::SMTP` module in case it is installed on your system. You need to specify the `SMTPMAILHOST` variable in [[TWikiPreferences]].
@@ -31,14 +33,12 @@ The above line will call mailnotify at 15 minutes and 45 minutes past every hour
**On Windows NT/2000:** You can use a scheduled task if you have administrative privileges. **_Note:_** AT on an NT machine is pretty limited. Microsoft lists several third-party [replacements](http://www.microsoft.com/ntserver/partners/findoffering/serversolutions/Maintnce.asp#cron) (as of 2001-11-20, none of them free).
-## <a name="WebChanges"> WebChanges </a>
-
-To check for the most recently edited topics while on-site, use the [[WebChanges]] link, usually located on the upper toolbar. It lists the _\__ most recently modified, newest first, along with the first couple of lines of the page content.
-
## <a name="WebStatistics_Site_Usage_Log"> WebStatistics Site Usage Log </a>
You can generate a listing manually, or on an automated schedule, of visits to individual pages, on a per web basis. Compiled as a running total on a monthly basis. Includes totals for Topic Views, Topic Saves, Attachment Uploads, Most Popular Topics with number of views, and Top Contributors showing total of saves and attachment uploads. Previous months are saved.
+* You can create a [[WebStatistics]] link using [[TWikiVariables]] with <code>**%STATISTICSTOPIC%**</code>
+
### <a name="Configuring_for_Automatic_Operat"> Configuring for Automatic Operation </a>
* You can automatically generate usage statistics for all webs. To enable this:
@@ -67,4 +67,22 @@ You can generate a listing manually, or on an automated schedule, of visits to i
See also: [[TWikiVariables]] for including hard-coded searches in text.
--- [[Main/MikeMannix]] - 30 Nov 2001
+### <a name="WebChanges"> WebChanges </a>
+
+To check for the most recently edited topics while on-site, use the [[WebChanges]] link, usually located on the upper toolbar. It lists the most recently modified topics, newest first, along with the first couple of lines of the page content.
+
+This is simply a preset `SEARCH`. The number of topics listed by the `limit` parameter.:
+
+> <pre>
+> %<nop>SEARCH{".*" web="%INCLUDINGWEB%" regex="on" nosearch="on" order="modified" <br />reverse="on" limit="50"}%
+> </nop></pre>
+
+### <a name="WebIndex"> WebIndex </a>
+
+[[WebIndex]] lists all web topics in alphabetical order, with the first couple of lines of text. This is simply a preset `SEARCH`:
+
+> <pre>
+> %<nop>SEARCH{"\.*" scope="topic" regex="on" nosearch="on"}%
+> </nop></pre>
+
+-- [[Main/MikeMannix]] - 01 Dec 2001