none
authorPeterThoeny <PeterThoeny>
Sun, 7 Apr 2002 10:30:00 +0000 (10:30 +0000)
committerPeterThoeny <PeterThoeny>
Sun, 7 Apr 2002 10:30:00 +0000 (10:30 +0000)
TWiki/IncludeTopicsAndWebPages.mdwn
TWiki/ManagingWebs.mdwn
TWiki/TWikiInstallationGuide.mdwn
TWiki/TWikiPreferences.mdwn
TWiki/TWikiVariables.mdwn
TWiki/WebHome.mdwn

index d84f5fe..2c09b83 100644 (file)
@@ -21,7 +21,7 @@ Use the <code>**%INCLUDE\{...\}%**</code> variable to embed the content of anoth
 
 - <code>**"page"**</code>: <br /> The nameless parameter specifies the page to include. It is
   - The name of a topic located in the current web, i.e. <code>**%INCLUDE\{"WebNotify"\}%**</code>
-  - A `Web.Topic` name specifying a topic in another web, i.e. <code>**%INCLUDE\{"TWiki.TWikiWebsTable"\}%**</code>
+  - A `Web.Topic` name specifying a topic in another web, i.e. <code>**%INCLUDE\{"TWiki.SiteMap"\}%**</code>
   - A full qualified URL with <code>**http**</code> protocol, domain name and optional port number, i.e. <code>**%INCLUDE\{"http://twiki.org:80/index.html"\}%**</code>. Supported content types are <code>**text/html**</code> and <code>**text/plain**</code>. The full page is included by default, but the HTML header and scripts are stripped in case it is a web page.
 
 - <code>**pattern="reg-exp"**</code>: <br /> The **pattern** parameter is optional and allows you to extract some parts of a web page. Specify a [[RegularExpression]] that scans from start (`'^'`) to end and contains the text you want to keep in parenthesis, i.e. <code>**pattern="^.\*?(from here.\*?to here).\*"**</code>. You need to make sure that the integrity of a web page is not compromised, i.e. if you include a table make sure to include everything including the table end tag.
index 3f33f79..c5d7e4d 100644 (file)
 
 # <a name="Managing Webs"></a> Managing Webs
 
-_Adding, renaming and deleting webs are manual operations done directly on the server_
+_Adding webs is a web based operation; renaming and deleting webs are manual operations done directly on the server_
 
 ## <a name="Overview"></a> Overview
 
-Managing TWiki webs requires direct access to the installation files on the host server. There are currently no browser-based equivalents of the Rename/move/delete topic tools for working with webs.
+A [[TWikiSite]] is divided into webs; each one represents one subject, one area of collaboration. Administrators can add/rename/delete webs.
 
-## <a name="Adding a New Web"></a> Adding a New Web
+<a name="CreateNewWeb"></a>
 
-Adding new webs is quick and easy - you can have a basic web up and running in a couple of minutes:
+## <a name="Adding a New Web"></a> Adding a New Web
 
-1. **Create** a new directory under `twiki/data/`, ex: `twiki/data/Newweb`<br />
-  - the name has to start with a capital and _cannot_ be a [[WikiWord]]
-2. **Copy** in the contents of `twiki/data/_default`.
+<form action="http://www.dementia.org/twiki//manage/%WEB%/%TOPIC%" method="post" name="admin"> Create a new web by filling out this form. <strong><em>Note:</em></strong> It is not recommended to create a new web for each little project. Cross-linking topics and search is easier if there are only a few larger webs. <p>
+  </p>
+  <table border="1" cellpadding="0" cellspacing="0">
+    <tr>
+      <th align="right" bgcolor="#99CCCC"><strong> Name of new web: </strong></th>
+      <td><input name="newweb" size="16" type="text" value="" /></td>
+      <td> Enter a short name of up to 10 characters. The name must start with one or more upper case letters, followed by optional lower case letters or numbers; it cannot be a [[TWiki/WikiWord]]</td>
+    </tr>
+    <tr>
+      <th align="right" bgcolor="#99CCCC"><strong> Based on web: </strong></th>
+      <td><select name="webtemplate"> </select></td>
+      <td> Select a template web (starting with an underscore) or an existing web as a template for the new web. All topics are copied over from a template web; only topics that start with <strong>Web...</strong> (like "WebHome", "WebNotify") are copied from an existing web </td>
+    </tr>
+    <tr>
+      <th align="right" bgcolor="#99CCCC"><strong> Web color: </strong></th>
+      <td><input name="webbgcolor" size="16" type="text" value="#D0D0D0" /></td>
+      <td> Enter a [[Main/StandardColors]] code for the web </td>
+    </tr>
+    <tr>
+      <th align="right" bgcolor="#99CCCC"><strong> Exclude web from "search all": </strong></th>
+      <td><input checked name="nosearchall" type="radio" value="" /> No   <input name="nosearchall" type="radio" value="on" /> Yes </td>
+      <td> Specify if you want to exclude the web from a "search all webs" search </td>
+    </tr>
+    <tr>
+      <th align="right" bgcolor="#99CCCC"><strong> Update WIKIWEBLIST: </strong></th>
+      <td><input name="updatewikiweblist" type="radio" value="" /> No   <input checked name="updatewikiweblist" type="radio" value="on" /> Yes </td>
+      <td> Specify if you want to list the new web in the WIKIWEBLIST displayed by some skins in the upper right hand corner </td>
+    </tr>
+    <tr>
+      <th align="right" bgcolor="#99CCCC"><strong> Description:<br />   </strong></th>
+      <td colspan="2"><input name="description" size="60" type="text" value="" /><br /> Enter a short description of the web. This is for listing the web in the [[TWiki/SiteMap]] (leave field empty if you prefer not to update the directory) </td>
+    </tr>
+    <tr>
+      <th align="right" bgcolor="#99CCCC"><strong> Used to...<br />   </strong></th>
+      <td colspan="2"><input name="usedto" size="60" type="text" value="..." /><br /> Continue the sentence describing the intended use. This is also for the [[TWiki/SiteMap]]</td>
+    </tr>
+    <tr>
+      <td>   </td>
+      <td colspan="2"><input type="submit" value="Create new web" /></td>
+    </tr>
+  </table><input name="newtopic" type="hidden" value="" /> <input name="action" type="hidden" value="createnewweb" /></form>
 
 For detailed instructions, see [[TWiki Installation Guide: Adding a New Web|Main/TWikiInstallationGuide#CreateWeb]].
 
 ## <a name="Renaming or Deleting a Web"></a> Renaming or Deleting a Web
 
+Renaming or deleting a web requires direct access to the installation files on the host server. There are currently no browser-based equivalents of the Rename/move/delete topic tools for working with webs.
+
 **NOTE:** If you plan to rename the %WIKITOOLNAME%.Main web, remember that TWiki stores user and group topics in <code>%MAINWEB%</code>, default named `Main`. That means, every [[WikiName]] signature - `Main.SomeUserName` - points to it and would need updating (unless the variable, `%MAINWEB%.SomeUserName`, is used throughout).
 
 1. Prepare your site: Search each web for links to the target web, searching topic text for `Oldwebname.`, including the dot so you'll find references like `Oldwebname.SomeTopic`.
   - Make changes as required, to `Newwebname.SomeTopic` or better yet, to `%MAINWEB%.SomeTopic`.
 2. Edit the [[TWikiPreferences]] topic: Rename or delete the web from the `WIKIWEBLIST` variable.
-3. Edit the [[TWikiWebsTable]] topic: Rename or delete the web from the table.
-4. Login to the %WIKITOOLNAME% server, via Telnet or FTP.
-5. Go to `twiki/data` and rename or remove the web directory.
-6. Go to `twiki/templates` and rename or remove the web directory if present.
-7. Go to `twiki/pub` and rename or remove the web directory if present.
+3. Login to the %WIKITOOLNAME% server, via Telnet or FTP.
+4. Go to `twiki/data` and rename or remove the web directory.
+5. Go to `twiki/templates` and rename or remove the web directory if present.
+6. Go to `twiki/pub` and rename or remove the web directory if present.
 
--- [[MikeMannix]] - 14 Sep 2001 <br />
+-- [[MikeMannix]] - 14 Sep 2001 <br /> -- [[PeterThoeny]] - 07 Apr 2002 <br />
index a1f77d1..86d919d 100644 (file)
@@ -206,8 +206,7 @@ To create a new web:
   - Customize the `%WEBTOPICLIST%` variable to contain the web-specific links you prefer.
   - Set the WEBBGCOLOR variable to a color. The number represents the unique color for the web.
   - Set Plugins, access privileges, custom variables, other web-level options (ex: `%WEBCOPYRIGHT%` can be set for an individual web).
-5. **Add** the new web to the color-coded web directory table by editing the [[TWikiWebsTable]] topic.
-6. **Test** the new web: view pages, create a new page.
+5. **Test** the new web: view pages, create a new page.
 
 That's it for a basic new web set-up!
 
index 2d9b223..5b8a8f0 100644 (file)
@@ -24,7 +24,7 @@ The following are **_site-level_** settings that affect all users in all webs on
 
 ## <a name="General Preferences"></a> General Preferences
 
-- List of %WIKITOOLNAME% webs - on the first line of the upper toolbar (to add a new web, see [[ManagingWebs]] and [[TWikiWebsTable]]):
+- List of %WIKITOOLNAME% webs - on the first line of the upper toolbar (to add a new web, see [[ManagingWebs]] and [[SiteMap]]):
   - Set WIKIWEBLIST = [[Main|Main/WebHome]] | [[TWiki|TWiki/WebHome]] | [[Know|Know/WebHome]] | [[Test|Test/WebHome]]
   - %T% **NOTE:** To automatically list all non-hidden webs in alphabetical order, use this variable instead: <br />Set WIKIWEBLIST =
 
index e78046e..edf679b 100644 (file)
@@ -217,7 +217,7 @@ This version of TWiki - TWiki-4.1.2, Sat, 03 Mar 2007, build 13046 - expands the
   </tr>
   <tr>
     <td><code>%GMTIME%</code></td>
-    <td> GM time, is <b>29 Jun 2010 - 15:34</b></td>
+    <td> GM time, is <b>29 Jun 2010 - 15:35</b></td>
   </tr>
   <tr>
     <td><code>%GMTIME{"format"}%</code></td>
@@ -267,15 +267,15 @@ This version of TWiki - TWiki-4.1.2, Sat, 03 Mar 2007, build 13046 - expands the
           <td> 2 digit year </td>
           <td> 99 </td>
         </tr>
-      </table> Variables can be shortened to 3 characters. Example: <br /><code>%GMTIME{"$day $month, $year - $hour:$min:$sec"}%</code> is <br /><b>29 Jun, 2010 - 15:34:42</b></td>
+      </table> Variables can be shortened to 3 characters. Example: <br /><code>%GMTIME{"$day $month, $year - $hour:$min:$sec"}%</code> is <br /><b>29 Jun, 2010 - 15:35:09</b></td>
   </tr>
   <tr>
     <td><code>%SERVERTIME%</code></td>
-    <td> Server time, is <b>29 Jun 2010 - 11:34</b></td>
+    <td> Server time, is <b>29 Jun 2010 - 11:35</b></td>
   </tr>
   <tr>
     <td><code>%SERVERTIME{"format"}%</code></td>
-    <td> Formatted server time. <br /> Example: <code>%SERVERTIME{"$hou:$min"}%</code> is <b>11:34</b></td>
+    <td> Formatted server time. <br /> Example: <code>%SERVERTIME{"$hou:$min"}%</code> is <b>11:35</b></td>
   </tr>
   <tr>
     <td><code>%HTTP_HOST%</code></td>
@@ -302,7 +302,7 @@ This version of TWiki - TWiki-4.1.2, Sat, 03 Mar 2007, build 13046 - expands the
         </tr>
         <tr>
           <td><code>"Web.Topic"</code></td>
-          <td> A topic in another web, i.e. <code>%INCLUDE{"TWiki.TWikiWebsTable"}%</code></td>
+          <td> A topic in another web, i.e. <code>%INCLUDE{"TWiki.SiteMap"}%</code></td>
         </tr>
         <tr>
           <td><code>"http://..."</code></td>
index bd4809b..1695cd5 100644 (file)
@@ -119,7 +119,7 @@ Documentation for webmasters, system administrators, project managers, team lead
 
 - [[WebPreferences]]: Preference settings for the this web
 - [[TWikiPreferences]]: %WIKITOOLNAME% site-wide preferences
-- The [[TWikiWebsTable]]: A color-coded directory of available webs that can be easily included on any page _(below)_
+- The [[SiteMap]]: A color-coded directory of available webs that can be easily included on any page _(below)_
   - The [[%WEB%|TWiki/WebHome]] web is coded light orange for quick identification.
 
 - TWiki<sup>TM</sup> is a trademark of [[PeterThoeny]]