Code

*** empty log message ***
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 30 Aug 2002 08:36:40 +0000 (08:36 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 30 Aug 2002 08:36:40 +0000 (08:36 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1008 57a73879-2fb5-44c3-a270-3262357dd7e2

doc/getting_started.txt
doc/installation.txt
doc/templating.txt

index b5e8c37a7d7a7d8d312df2a3822d2c0ec5656d2b..15a6c249cbb2392800f1398c22b1d3eef26916a8 100644 (file)
@@ -2,7 +2,7 @@
 Getting Started
 ===============
 
-:Version: $Revision: 1.4 $
+:Version: $Revision: 1.5 $
 
 .. contents::
 
@@ -166,7 +166,7 @@ Apache:
          SetEnv ROUNDUP_LOG "/var/log/roundup.log"
          SetEnv ROUNDUP_INSTANCE_HOMES "Default=/usr/local/share/roundup/instances/Default"
          SetEnv ROUNDUP_DEBUG "0"
-         
+
   7. On Windows, write a batch file "roundup.bat" similar to the one below and
      place it into your cgi-bin directory::
       
index c2186c815b3f7c69c4124889148eca07069f1257..73222f1bd50e6277371b64643fbcccb74addb8d3 100644 (file)
@@ -2,7 +2,7 @@
 Installing Roundup
 ==================
 
-:Version: $Revision: 1.15 $
+:Version: $Revision: 1.16 $
 
 .. contents::
 
@@ -181,9 +181,7 @@ Python -- see `testing your python`_.
        10 * * * * /opt/roundup/bin/roundup-mailgw
                 /opt/roundup/instances/support /var/mail/support
 
-6. TODO (mention perms)
-
-7. Test the email gateway.  Under most flavors of UNIX, this
+6. Test the email gateway.  Under most flavors of UNIX, this
    can be done by::
 
      echo test | mail -s '[issue] test' support@YOUR_DOMAIN_HERE
index 95e2972db82fc5287e75e02b925201122ab4acee..e303a1a245e85e4805f8fa24a7c15fe57849aa8e 100644 (file)
@@ -2,7 +2,7 @@
 HTML Templating Mechanisms
 ==========================
 
-:Version: $Revision: 1.12 $
+:Version: $Revision: 1.13 $
 
 Current Situation and Issues
 ============================
@@ -138,8 +138,9 @@ I'm envisaging an infrastructure layer where each template has the following
 "root level" (that is, directly accessible in the TALES namespace) variables
 defined:
 
-*class*
-  The current class of node being displayed as an HTMLClass instance
+*klass*
+  The current class of node being displayed as an HTMLClass instance. Name is
+  mangled so it can be used in Python expressions.
 
 *item*
   The current node from the database, if we're viewing a specific node, as an
@@ -183,7 +184,7 @@ defined:
 *modules*
   python modules made available (XXX: not sure what's actually in there tho)
 
-Accesses through a class (either through *class* or *db.<classname>*)::
+Accesses through a class (either through *klass* or *db.<classname>*)::
 
     class HTMLClass:
         def __getattr__(self, attr):