commit-gnue
[Top][All Lists]
Advanced

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

r5556 - in trunk/www: . docs utils/webhelpers web/community web/develope


From: jcater
Subject: r5556 - in trunk/www: . docs utils/webhelpers web/community web/developers web/downloads web/faq web/project
Date: Sat, 27 Mar 2004 23:32:50 -0600 (CST)

Author: jcater
Date: 2004-03-27 23:32:49 -0600 (Sat, 27 Mar 2004)
New Revision: 5556

Added:
   trunk/www/screenshots/
Modified:
   trunk/www/docs/Project.txt
   trunk/www/docs/appserver.txt
   trunk/www/docs/common.txt
   trunk/www/docs/designer.txt
   trunk/www/docs/forms.txt
   trunk/www/utils/webhelpers/docs.py
   trunk/www/utils/webhelpers/tools.py
   trunk/www/utils/webhelpers/utils.py
   trunk/www/web/community/bugs.php
   trunk/www/web/community/docs.php
   trunk/www/web/community/history.php
   trunk/www/web/community/index.php
   trunk/www/web/community/mail.php
   trunk/www/web/developers/_module_menu.php
   trunk/www/web/developers/index.php
   trunk/www/web/developers/involve.php
   trunk/www/web/downloads/downloads.php
   trunk/www/web/downloads/hourly.php
   trunk/www/web/downloads/index.php
   trunk/www/web/faq/faq.php
   trunk/www/web/project/require.php
Log:
more work on docs

Modified: trunk/www/docs/Project.txt
===================================================================
--- trunk/www/docs/Project.txt  2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/docs/Project.txt  2004-03-28 05:32:49 UTC (rev 5556)
@@ -0,0 +1,7 @@
+------------------------------------------------------------------------------
+Note: Everything until the first [] is ignore
+
+You do not need to add either the FAQ or the API links in this file,
+UNLESS you need them to appear in non-standard places.
+
+------------------------------------------------------------------------------

Modified: trunk/www/docs/appserver.txt
===================================================================
--- trunk/www/docs/appserver.txt        2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/docs/appserver.txt        2004-03-28 05:32:49 UTC (rev 5556)
@@ -1,3 +1,10 @@
+------------------------------------------------------------------------------
+Note: Everything until the first [] is ignore
+
+You do not need to add either the FAQ or the API links in this file,
+UNLESS you need them to appear in non-standard places.
+
+------------------------------------------------------------------------------
 [HowTO]
 Name: Developer's How-to Guide
 Audience: End Developer

Modified: trunk/www/docs/common.txt
===================================================================
--- trunk/www/docs/common.txt   2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/docs/common.txt   2004-03-28 05:32:49 UTC (rev 5556)
@@ -1,3 +1,11 @@
+------------------------------------------------------------------------------
+Note: Everything until the first [] is ignore
+
+You do not need to add either the FAQ or the API links in this file,
+UNLESS you need them to appear in non-standard places. (i.e., in this case,
+common's API is also of interest to end-developers, not just core developers.
+
+------------------------------------------------------------------------------
 [Developers Guide]
 Name: Developer's Guide
 Audience: End Developer
@@ -12,7 +20,7 @@
 
 [API Reference]
 Name: API Reference
-Audience: End Developer, Core Developer
+Audience: End Developer
 Location: /tools/common/docs/api
 AutoExtensions: No
 

Modified: trunk/www/docs/designer.txt
===================================================================
--- trunk/www/docs/designer.txt 2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/docs/designer.txt 2004-03-28 05:32:49 UTC (rev 5556)
@@ -1,3 +1,10 @@
+------------------------------------------------------------------------------
+Note: Everything until the first [] is ignore
+
+You do not need to add either the FAQ or the API links in this file,
+UNLESS you need them to appear in non-standard places.
+
+------------------------------------------------------------------------------
 [Developers-Guide]
 Name: Form Developer's Guide
 Audience: End Developer
@@ -8,11 +15,3 @@
 GNUe Designer. Sample forms will be presented along with detailed
 information on each feature.  An appendix of commonly used trigger recipes
 is also provided.
-
-[API Reference]
-Name: Core API Reference
-Audience: Core Developer
-Location: /tools/designer/docs/api
-AutoExtensions: No
-
-API documentation automatically updated daily.  GNUe uses epydoc 
(http://epydoc.sourceforge.net/) to create this guide.

Modified: trunk/www/docs/forms.txt
===================================================================
--- trunk/www/docs/forms.txt    2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/docs/forms.txt    2004-03-28 05:32:49 UTC (rev 5556)
@@ -1,3 +1,10 @@
+------------------------------------------------------------------------------
+Note: Everything until the first [] is ignore
+
+You do not need to add either the FAQ or the API links in this file,
+UNLESS you need them to appear in non-standard places.
+
+------------------------------------------------------------------------------
 [Developers-Guide]
 Name: Developer's Guide
 Audience: End Developer
@@ -8,11 +15,3 @@
 GNUe Designer. Sample forms will be presented along with detailed
 information on each feature.  An appendix of commonly used trigger recipes
 is also provided.
-
-[API Reference]
-Name: Core API Reference
-Audience: Core Developer
-Location: /tools/forms/docs/api
-AutoExtensions: No
-
-API documentation automatically updated daily.  GNUe uses epydoc 
(http://epydoc.sourceforge.net/) to create this guide.

Modified: trunk/www/utils/webhelpers/docs.py
===================================================================
--- trunk/www/utils/webhelpers/docs.py  2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/utils/webhelpers/docs.py  2004-03-28 05:32:49 UTC (rev 5556)
@@ -1,12 +1,6 @@
 # Contains global create-website stuff
 from utils import *
 
-# These get set by tools.py,
-# so tools.run() needs to be run first.
-tool_list = []
-tool_docs = {}
-tool_dev_docs = {}
-
 import sys, os, string
 from StringIO import StringIO
 from helpers.files import SVN_BASE, addToolLinks, htmlify
@@ -15,4 +9,35 @@
 
 def run():
 
+  from tools import toolUrlHints, toolList
+
   DEST = dest()
+
+  html = "<h1>Core Documentation</h1>\n"
+  html += '<p>This page shows all documentation related to core development. 
For a list of all available documentation, please visit the <a 
href="../docs/">main documentation area</a>.</p>'
+
+  for tool, name, package, mod in toolList:
+    ##
+    ## Documentation
+    ##
+    # developers/docs.php
+    html += "<h2>%s</h2>\n" % name
+
+    html += '<div class="docgroup"><div class="docheader">'
+    html += '<b>API Reference</b>&nbsp;&nbsp;&nbsp; ( <a 
href="../tools/%s/docs/api/public/">HTML</a> )</div>\n' % (tool)
+    html += '<p>API documentation automatically updated daily. GNUe uses <a 
href="http://epydoc.sourceforge.net/";>epydoc</a> to create this 
guide.</p></div>\n'
+
+
+    fileset = mod.docs.corefiles
+    descr = 'Core Developer'
+    if fileset:
+      for props, text in fileset:
+        all = []
+        for file, type in mod.docs.getTypes(props, DEST):
+          all.append('<a href="..%s">%s</a>' % (file, type))
+        t =  '<div class="docgroup"><div 
class="docheader"><b>%s</b>&nbsp;&nbsp;&nbsp; ( %s )</div>\n' % (props['name'], 
string.join(all,' | '))
+        t2 =  htmlify(string.join(text,'\n'),'www/docs/%s.txt' % tool)
+        html += t + addToolLinks(t2,toolUrlHints,'../..',tool) + "</div>\n"
+
+  phpWrapper('developers/docs.php', html, 'Core Documentation')
+

Modified: trunk/www/utils/webhelpers/tools.py
===================================================================
--- trunk/www/utils/webhelpers/tools.py 2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/utils/webhelpers/tools.py 2004-03-28 05:32:49 UTC (rev 5556)
@@ -30,13 +30,19 @@
   # Load all the tools and their information
   #
   tools = {}
+
+  # Used by other helpers
+  global toolUrlHints
   toolUrlHints = {}
+  global toolList
+  toolList = []
+
   for tool in ALL_TOOLS:
     tools[tool] = mod = Tool(tool)
     name = mod.name
     package = mod.package
 
-    docs.tool_list.append ((tool, name, package))
+    toolList.append ((tool, name, package, mod))
 
     os.system("mkdir -p %s/tools/%s" % (DEST, tool))
     os.system("mkdir -p %s/tools/%s/docs" % (DEST, tool))
@@ -150,41 +156,24 @@
     html2 = "<h1>%s Documentation</h1>\n" % package.replace('GNUe-','')
     html2 += "<p>This pages contains various documentation for %s.</p>" % name
 
-    # docs/index.php
-    html3 = html2
-
-    # developers/docs.php
-    html4 = ""
-    for fileset, descr, coreonly in (
-                (mod.docs.userfiles, 'End User', 0),
-                (mod.docs.devfiles,'End Developer', 0),
-                (mod.docs.corefiles,'Core Developer', 1) ):
+    for fileset, descr in (
+                (mod.docs.userfiles, 'End User'),
+                (mod.docs.devfiles,'End Developer')):
       if fileset:
-        if not coreonly:
-          html += '<li>%s Documentation:</p><ul>\n' % descr
-          html2 += '<h2>%s Documentation</h2>\n' % descr
-        html3 += '<h2>%s Documentation</h2>\n' % descr
+        html += '<li>%s Documentation:</p><ul>\n' % descr
+        html2 += '<h2>%s Documentation</h2>\n' % descr
         for props, text in fileset:
           all = []
           all2 = []
-          all3 = []
           for file, type in mod.docs.getTypes(props, DEST):
             all.append('<a href="../..%s">%s</a>' % (file, type))
             all2.append('<a href="../../..%s">%s</a>' % (file, type))
           t =  '<div class="docgroup"><div 
class="docheader"><b>%s</b>&nbsp;&nbsp;&nbsp; ( %s )</div>\n' % (props['name'], 
string.join(all2,' | '))
           t2 =  htmlify(string.join(text,'\n'),'www/docs/%s.txt' % tool)
-          if not coreonly:
-            html += '  <li>%s: %s</li>\n' % (props['name'], string.join(all,' 
| '))
-            html2 += t + addToolLinks(t2,toolUrlHints,'../..',tool) + 
"</div>\n"
-          else:
-            html4 += t.replace('../../','') + 
addToolLinks(t2,toolUrlHints,'..',tool) + "</div>\n"
-          html3 += t.replace('../../','') + 
addToolLinks(t2,toolUrlHints,'../..',tool) + "</div>\n"
-        if not coreonly:
-          html += '</ul></li>\n'
+          html += '  <li>%s: %s</li>\n' % (props['name'], string.join(all,' | 
'))
+          html2 += t + addToolLinks(t2,toolUrlHints,'../..',tool) + "</div>\n"
+        html += '</ul></li>\n'
 
-    docs.tool_docs[tool] = html3
-    docs.tool_dev_docs[tool] = html3
-
     html += '<li><a href="docs/">All Available Documentation</a></li></ul>'
     phpWrapper('tools/%s/docs/index.php' % tool, html2, name + ' 
Documentation')
 

Modified: trunk/www/utils/webhelpers/utils.py
===================================================================
--- trunk/www/utils/webhelpers/utils.py 2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/utils/webhelpers/utils.py 2004-03-28 05:32:49 UTC (rev 5556)
@@ -11,7 +11,7 @@
   out = open(os.path.join(DEST, file),'w')
 
   module = path[0]
-  if module not in ('project','tools','packages'):
+  if module not in ('project','tools','packages', 'developers'):
     module = 'project'
 
   out.write("""\

Modified: trunk/www/web/community/bugs.php
===================================================================
--- trunk/www/web/community/bugs.php    2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/community/bugs.php    2004-03-28 05:32:49 UTC (rev 5556)
@@ -51,8 +51,8 @@
 <p>We willingly accept patches - you can include them as attatchments to
 e-mails sent to the above addresses. For preference, our preferred format
 for patches is the output produced by <code>diff -Naur</code> rather than
-<code>cvs diff -c</code>. (This is because it is less likely to break things
-if CVS has been updated between your last CVS update and us applying the
+<code>svn diff -c</code>. (This is because it is less likely to break things
+if SVN has been updated between your last SVN update and us applying the
 patch.)</p>
 
 <p>Note that, except for fixing typos or other 'obvious' patches, we will

Modified: trunk/www/web/community/docs.php
===================================================================
--- trunk/www/web/community/docs.php    2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/community/docs.php    2004-03-28 05:32:49 UTC (rev 5556)
@@ -6,10 +6,10 @@
 <div id="body">
 <h1>Community Documentation</h1>
 
-    <p><b>CVS Install Guide (Red Hat 7.2)</b> 
+    <p><b>SVN Install Guide (Red Hat 7.2)</b> 
     (<A HREF="../community/docs/redhat_install.html">HTML</a>) 
     <br />
-    CVS &amp; Dependency Step by Step Guide for Red Hat 7.2
+    SVN &amp; Dependency Step by Step Guide for Red Hat 7.2
     <font size="-1"><b>[Last revised: 2002-04-05]</b></font> 
     </p>
 
@@ -23,7 +23,7 @@
     </p>
 
     <p><b>0.5.x How-To Guide (Win32, no installer)</b> 
-    (<A HREF="../community/docs/GNUe-Win32-CVS-HOWTO.html">HTML</a>) 
+    (<A HREF="../community/docs/GNUe-Win32-SVN-HOWTO.html">HTML</a>) 
     <br />
     Mini HOW-TO describing how to install GNUe 0.5.x on Win32
     without a special installer and with PostgreSQL, Firebird 

Modified: trunk/www/web/community/history.php
===================================================================
--- trunk/www/web/community/history.php 2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/community/history.php 2004-03-28 05:32:49 UTC (rev 5556)
@@ -60,7 +60,7 @@
    GNUe-Forms 0.1.0, GNUe-Designer 0.1.0, and GNUe-Common 0.1.0.
    released.<br />
 <!-- <img src="../e_ball.png"> -->January 2002 - First development version of 
GNUe 
-   Navigator in CVS.
+   Navigator in SVN.
    Release of GNUe-Forms 0.1.1, GNUe-Designer 0.1.1, and GNUe-Common 
    0.1.1.<br />
 <!-- <img src="../e_ball.png"> -->February 2002 - Redesign of GNUe-Application 
Server 

Modified: trunk/www/web/community/index.php
===================================================================
--- trunk/www/web/community/index.php   2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/community/index.php   2004-03-28 05:32:49 UTC (rev 5556)
@@ -30,7 +30,7 @@
 <!-- <img src="../e_ball.png"> --><a href="history.html">History</a> - 
 a brief outline of how we got here.<br />
 
-<!-- <img src="../e_ball.png"> --><a href="cvs.html">CVS</a> - 
+<!-- <img src="../e_ball.png"> --><a href="../developers/svn.html">SVN</a> - 
 - ways to access the GNU Enterprise source code.<br />
 
 <!-- <img src="../e_ball.png"> --><a href="dcl.html">Project Managment</a> - 
@@ -44,7 +44,7 @@
 a growing collection of installation HOW-TOs.<br />
 
 <!-- <img src="../e_ball.png"> --><a 
href="http://www.gnuenterprise.org/docs/technotes.html";>Technical Notes</a> - 
-A mirror of the technical notes kept in CVS.<br />
+A mirror of the technical notes kept in SVN.<br />
 
 </p>
 

Modified: trunk/www/web/community/mail.php
===================================================================
--- trunk/www/web/community/mail.php    2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/community/mail.php    2004-03-28 05:32:49 UTC (rev 5556)
@@ -30,9 +30,9 @@
 http://mail.gnu.org/mailman/listinfo/gnue-dev</a>.</p>
 
 <h3>address@hidden</h3>
-<p>A mailing list with CVS commit messages for the project. 
+<p>A mailing list with SVN commit messages for the project. 
 Unlikely to be of interest except to active GNUe Developers 
-who regularly access the codebase via CVS.<br>
+who regularly access the codebase via SVN.<br>
 Subscribe to this list at 
 <a href="http://mail.gnu.org/mailman/listinfo/commit-gnue";>
 http://mail.gnu.org/mailman/listinfo/commit-gnue</a>.

Modified: trunk/www/web/developers/_module_menu.php
===================================================================
--- trunk/www/web/developers/_module_menu.php   2004-03-28 03:19:48 UTC (rev 
5555)
+++ trunk/www/web/developers/_module_menu.php   2004-03-28 05:32:49 UTC (rev 
5556)
@@ -2,5 +2,5 @@
       <ul>
         <li><a href="<?php print "$BASEDIR"; ?>/developers/svn.php" >Get 
Source Code</a></li>
         <li><a 
href="http://www.gnuenterprise.org/cgi-bin/viewcvs.cgi/gnue/trunk/";>Browse 
Source Code</a></li>
-        <li><a href="<a href="<?php print "$BASEDIR"; 
?>/developers/docs.php">Documentation</a></li>
+        <li><a href="<?php print "$BASEDIR"; ?>/developers/docs.php">Core 
Documentation</a></li>
       </ul>

Modified: trunk/www/web/developers/index.php
===================================================================
--- trunk/www/web/developers/index.php  2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/developers/index.php  2004-03-28 05:32:49 UTC (rev 5556)
@@ -40,38 +40,8 @@
 </ul>
 
 <h2>Tool Documentation</h2>
-<p>Various programmer-related documentation is available for each GNUe tool. 
To see available documentation, including APIs, technotes, and whitepapers, 
click the appropriate tool.</p>
+<p>Various programmer-related documentation is available for each GNUe tool. 
To see available documentation, including APIs, technotes, and whitepapers, 
please see our <a href="docs.php">core documentation</a> page.</p>
 
-<ul>
-<li><a href="project/">Project-related</a></li>
-<li><a href="common/">GNUe Common</a></li>
-<li><a href="forms/">GNUe Forms</a></li>
-<li><a href="reports/">GNUe Reports</a></li>
-<li><a href="appserver/">GNUe AppServer</a></li>
-<li><a href="designer/">GNUe Designer</a></li>
-<li><a href="navigator/">GNUe Navigator</a></li>
-<li><a href="all.php">All Documentation</a></li>
-</ul>
-
-<h2>Tool Documentation</h2>
-<p>Various programmer-related documentation is available for each GNUe tool. 
To see available documentation, including APIs, technotes, and whitepapers, 
please <a href="dummy">click here</a>.</p>
-
-<!--
-<p>Each night, we use <a href="http://epydoc.sf.net/";>epydoc</a> to create an 
API listing for all our tools. </p>
-<ul>
-<li><a href="../tools/common/docs/api/public/">Common API</a></li>
-<li><a href="../tools/forms/docs/api/public/">Forms API</a></li>
-<li><a href="../tools/reports/docs/api/public/">Reports API</a></li>
-<li><a href="../tools/appserver/docs/api/public/">AppServer API</a></li>
-<li><a href="../tools/designer/docs/api/public/">Designer API</a></li>
-<li><a href="../tools/navigator/docs/api/public/">Navigator API</a></li>
-</ul>
-<p>Other links:</p>
-<ul>
-  <li><a href="copyleft.php">GNUe Licensing and Copyright Assignments</a></li>
-  <li><a 
href="http://www.gnuenterprise.org/cgi-bin/viewcvs.cgi/gnue/trunk/";>ViewCVS 
(View repository online)</a></li>
-  </ul>
--->
 </div>
 
 <?php include "$BASEDIR/shared/_footer.php"; ?>

Modified: trunk/www/web/developers/involve.php
===================================================================
--- trunk/www/web/developers/involve.php        2004-03-28 03:19:48 UTC (rev 
5555)
+++ trunk/www/web/developers/involve.php        2004-03-28 05:32:49 UTC (rev 
5556)
@@ -21,7 +21,7 @@
 everything in this article is
 necessarily true of GNUe (for instance, we tend to use
 <a href="irc.php">IRC</a> much more than
-<a href="mail.php">mailing lists</a>, and can make good
+<a href="../community/mail.php">mailing lists</a>, and can make good
 use not just of coders but all kinds of people), but it's
 still a good overall introduction.</p>
 
@@ -50,12 +50,12 @@
 further input. This is an area where people with a business
 background, rather than IT, can be absolutely invaluable.</p>
 
-<h2>CVS bug testing</h2>
+<h2>SVN bug testing</h2>
 
 <p>All of the tools are continually being developed. Although the
 core developers do alpha-testing as they go, and are active users
 of the product themselves, they cannot cover all possible bases,
-and active testers of <a href="cvs.php">CVS</a> are therefore
+and active testers of <a href="svn.php">SVN</a> are therefore
 encouraged.</p>
 
 <p>Details of how to report bugs, via e-mail or DCL, are

Modified: trunk/www/web/downloads/downloads.php
===================================================================
--- trunk/www/web/downloads/downloads.php       2004-03-28 03:19:48 UTC (rev 
5555)
+++ trunk/www/web/downloads/downloads.php       2004-03-28 05:32:49 UTC (rev 
5556)
@@ -16,15 +16,15 @@
 
   <li><a href="snapshots.php">Nightly
   Snapshots</a> - every night (US time), an automatic script
-  creates a nightly CVS snapshot for the two main operating systems
+  creates a nightly SVN snapshot for the two main operating systems
   supported by GNU Enterprise. The last five night's
   snapshots are available here. As with all
-  CVS versions of software, these may or may not work.<br />
+  SVN versions of software, these may or may not work.<br />
 
   <li><a href="hourly.php">Hourly
   Snapshots</a> - for when last night's snapshot was just too
   long ago... As with all
-  CVS versions of software, these may or may not work.<br />
+  SVN versions of software, these may or may not work.<br />
 
   <li><a href="prereleases.php">Pre-releases</a>
   - in the rush for a new release, various pre-release

Modified: trunk/www/web/downloads/hourly.php
===================================================================
--- trunk/www/web/downloads/hourly.php  2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/downloads/hourly.php  2004-03-28 05:32:49 UTC (rev 5556)
@@ -7,18 +7,18 @@
 
   <h1>Hourly Snapshots</h1>
 
-  <p>These files are the latest CVS snapshots of GNU Enterprise.  These 
snapshots
+  <p>These files are the latest SVN snapshots of GNU Enterprise.  These 
snapshots
   are updated every hour on the hour, 24 hours a day, 7 days a week.  This
-  snapshot repository is primarily for those who need the absolute latest CVS 
--
+  snapshot repository is primarily for those who need the absolute latest SVN 
--
   perhaps because a patch you need was applied in the last few hours -- but do
-  not have a means of accessing the CVS repository directly (i.e., you are
-  behind a firewall that blocks CVS traffic.</p>
+  not have a means of accessing the SVN repository directly (i.e., you are
+  behind a firewall that blocks SVN traffic.</p>
 
   <p>You should probably not try to download a copy of either of these files 
during
   the first two minutes of the hour.  Temporary files are used so that you
   shouldn't ever download junk, but odder things have happened. :)</p>
 
-  <p>NOTE: These are CVS snapshots and, as such, may or
+  <p>NOTE: These are SVN snapshots and, as such, may or
   may not run as expected. If you are looking for the
   latest released versions of the tools, look
   <a href="current.php">here</a>.</p>

Modified: trunk/www/web/downloads/index.php
===================================================================
--- trunk/www/web/downloads/index.php   2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/downloads/index.php   2004-03-28 05:32:49 UTC (rev 5556)
@@ -16,15 +16,15 @@
 
   <li><a href="snapshots.php">Nightly
   Snapshots</a> - every night (US time), an automatic script
-  creates a nightly CVS snapshot for the two main operating systems
+  creates a nightly SVN snapshot for the two main operating systems
   supported by GNU Enterprise. The last five night's
   snapshots are available here. As with all
-  CVS versions of software, these may or may not work.<br />
+  SVN versions of software, these may or may not work.<br />
 
-  <li><a href="hourly.php">Hourly
+<!--  <li><a href="hourly.php">Hourly
   Snapshots</a> - for when last night's snapshot was just too
   long ago... As with all
-  CVS versions of software, these may or may not work.<br />
+  SVN versions of software, these may or may not work.<br />  -->
 
   <li><a href="prereleases.php">Pre-releases</a>
   - in the rush for a new release, various pre-release

Modified: trunk/www/web/faq/faq.php
===================================================================
--- trunk/www/web/faq/faq.php   2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/faq/faq.php   2004-03-28 05:32:49 UTC (rev 5556)
@@ -188,7 +188,7 @@
 GNUe Docs Page</a>.
 </p>
 <p>
-There are also numerious text files in the distributions and in CVS.
+There are also numerious text files in the distributions and in SVN.
 </p>
 <p>
 Most decisions and discussions regarding GNUe occur on the GNUe IRC chat 
channel.
@@ -227,7 +227,7 @@
 </p>
 <p>
 This FAQ is $ Revision: 1.29 $ $Date: 2003/01/06 22:57:49 $. The most
-recent version (automatically updated from CVS) can be found on <a
+recent version (automatically updated from SVN) can be found on <a
 href="http://www.gnu.org/software/gnue/faq.html";>
 the GNU GNUe Project FAQ Page</a>. A mini version is
 located <a href="http://www.gnu.org/software/gnue/faq/minifaq.html";>
@@ -412,7 +412,7 @@
 GNUe-Forms 0.1.0, GNUe-Designer 0.1.0, and GNUe-Common 0.1.0. released.
         </li>
         <li>
-January 2002 - First development version of GNUe Navigator in CVS.  Release of
+January 2002 - First development version of GNUe Navigator in SVN.  Release of
 GNUe-Forms 0.1.1, GNUe-Designer 0.1.1, and GNUe-Common 0.1.1.
         </li>
 </ul>
@@ -660,7 +660,7 @@
 AppServer is a data abstraction layer and allows GNUe to utilize single API
 to all data sources (local and remote). So the client has one set of
 calls it uses, but can access different vendors SQL databases or even
-CVS or XML files. Similar to Borland's Database Engine or other data
+SVN or XML files. Similar to Borland's Database Engine or other data
 abstraction tiers. AppServer is transparent to the user. It will run with
 multiple instances and do load balancing. AppServer is required for n-tier
 operation.
@@ -990,7 +990,7 @@
         <a name="GNUe-FAQ-3.2"></a> <b>3.2 - What software is required to run 
GNUe?</b>
 </p>
 <p>
-        In general, Linux/Unix type system is required with the following to 
build from CVS:
+        In general, Linux/Unix type system is required with the following to 
build from SVN:
 </p>
 <ul>
         <li>
@@ -1047,9 +1047,9 @@
 distributions. Rpms are available for Red Hat Linux, Debian Linux and
 general source distributions from the <a
 href="http://www.gnuenterprise.org/downloads/downloads.php";>
-GNUe Download Page </a>. Plus anonymous CVS
+GNUe Download Page </a>. Plus anonymous SVN
 access instructions are available from the <a
-href="http://www.gnu.org/software/gnue/community/cvs.html";> GNUe CVS Page</a>.
+href="http://www.gnu.org/software/gnue/community/svn.html";> GNUe SVN Page</a>.
 </p>
 <p>
         <a name="GNUe-FAQ-3.4"></a> <b>3.4 - How do I build GNUe?</b>

Modified: trunk/www/web/project/require.php
===================================================================
--- trunk/www/web/project/require.php   2004-03-28 03:19:48 UTC (rev 5555)
+++ trunk/www/web/project/require.php   2004-03-28 05:32:49 UTC (rev 5556)
@@ -50,7 +50,7 @@
 <!-- <img src="../e_ball.png"> -->FreeBSD 4.x
 </p>
 
-<p><a href="../community/cvs.php">CVS</a> versions of 
+<p><a href="../developers/svn.php">SVN</a> versions of 
 GNUe should work on the same basis, but may not have 
 been tested recently (in extreme cases, since the 
 last release). Most GNUe developers use Debian 





reply via email to

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