commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

r5255 - in trunk: gnue-forms www/utils/helpers www/web/shared


From: jcater
Subject: r5255 - in trunk: gnue-forms www/utils/helpers www/web/shared
Date: Sun, 7 Mar 2004 23:43:28 -0600 (CST)

Author: jcater
Date: 2004-03-07 23:43:27 -0600 (Sun, 07 Mar 2004)
New Revision: 5255

Modified:
   trunk/gnue-forms/FAQ
   trunk/www/utils/helpers/files.py
   trunk/www/web/shared/base.css
Log:
More work on getting website automated.


Modified: trunk/gnue-forms/FAQ
===================================================================
--- trunk/gnue-forms/FAQ        2004-03-07 22:57:40 UTC (rev 5254)
+++ trunk/gnue-forms/FAQ        2004-03-08 05:43:27 UTC (rev 5255)
@@ -10,7 +10,7 @@
     symlinks in the client directory to trick gnue-forms into using the CVS
     version of GNUE Forms.  You must then run gnue-forms from the client
     directory for this to work.  Executing gnue-forms any where else still
-    results in the installed copy properly being executed. If you want to use a
+    results in the installed copy properly being executed. If you want to use
     CVS gnue-forms against installed sources, just [re]move the gnue directory
     in the client directory.
 
@@ -64,9 +64,9 @@
     If that doesn't work problems and/or questions are gladly accepted
     by the GNUE Forms team.  You can reach us via our mailing list
 
-        address@hidden           The main mailing list for the project.
-       
-       Subscribe to this list at http://mail.gnu.org/mailman/listinfo/gnue.
-       
+        address@hidden            The main mailing list for the project.
+
+        Subscribe to this list at http://mail.gnu.org/mailman/listinfo/gnue.
+
     Or via IRC at irc.freenode.net #gnuenterprise.
 

Modified: trunk/www/utils/helpers/files.py
===================================================================
--- trunk/www/utils/helpers/files.py    2004-03-07 22:57:40 UTC (rev 5254)
+++ trunk/www/utils/helpers/files.py    2004-03-08 05:43:27 UTC (rev 5255)
@@ -55,12 +55,19 @@
     i = 0
     while i < len(lines)-3:
       line = lines[i].rstrip()
-      if (not line or i == 0) and lines[i+1].rstrip()[:1] and lines[i+2][:3] 
== '---':
+      if not line and lines[i+1].rstrip()[:1] and lines[i+2][:3] == '---':
         buffer = []
         section = lines[i+1].rstrip()
         self.sectionOrder.append(section)
         self.sections[section.upper()] = buffer
         i += 3
+      elif i == 0 and lines[i].rstrip()[:1] and lines[i+1][:3] == '---':
+        buffer = []
+        section = lines[i].rstrip()
+        self.sectionOrder.append(section)
+        self.sections[section.upper()] = buffer
+        i += 2
+
       else:
         buffer.append(line)
         i += 1

Modified: trunk/www/web/shared/base.css
===================================================================
--- trunk/www/web/shared/base.css       2004-03-07 22:57:40 UTC (rev 5254)
+++ trunk/www/web/shared/base.css       2004-03-08 05:43:27 UTC (rev 5255)
@@ -45,7 +45,7 @@
 
 #leftMenuList a {
   color: #333366;
-  font-size: 8px;
+  font-size: 10px;
   text-decoration: none;
 }
 
@@ -56,13 +56,13 @@
 
 #leftMenuList h4 {
   width: 100%;
-  font-size: 12px;
+  font-size: 11px;
   font-weight: bold;
   margin: 6px 0 0 0px;
 }
 
 #leftMenuList ul {
-  font-size: 9px;
+  font-size: 10px;
   list-style:none;
   margin: 5px 0 0 0;
   padding: 0 0 0 0;
@@ -108,6 +108,18 @@
   border-style: none none dotted none;
 }
 
+#body h1 a {
+  font-weight: bold;
+  color: #333366;
+  text-decoration: none;
+}
+
+#body h1 a:hover {
+  font-weight: bold;
+  color: #333366;
+  text-decoration: underline;
+}
+
 #body h2 a {
   font-weight: bold;
   color: #333366;
@@ -132,15 +144,19 @@
 
 p.warn {
   font-size: 11px;
-  font-style: italic;
+/*  font-style: italic; */
   background-color: #ffffcc;
   margin-left: 12px;
   margin-right: 12px;
+  padding: 4px;
+  border-width: thin;
+  border-style: dashed;
+  border-color: #cc0000;
 }
 
 pre {
-  font-size: 9px;
+  font-size: 10px;
   margin-top: 4px;
   margin-bottom: 12px;
-  margin-left: 12px;
+  margin-left: 14px;
 }
\ No newline at end of file





reply via email to

[Prev in Thread] Current Thread [Next in Thread]