Author: tv
Date: Fri Sep 27 07:33:50 2013
New Revision: 1526811

URL: http://svn.apache.org/r1526811
Log:
Fix documentation, try to fix as many dead links as possible

Modified:
    turbine/site/src/site/site.xml
    turbine/site/xdocs/common/code-standards.xml
    turbine/site/xdocs/common/documentation.xml
    turbine/site/xdocs/download.xml
    turbine/site/xdocs/further-reading/model2+1.xml
    turbine/site/xdocs/further-reading/pullmodel.xml
    turbine/site/xdocs/getinvolved.xml
    turbine/site/xdocs/news.xml

Modified: turbine/site/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/turbine/site/src/site/site.xml?rev=1526811&r1=1526810&r2=1526811&view=diff
==============================================================================
--- turbine/site/src/site/site.xml (original)
+++ turbine/site/src/site/site.xml Fri Sep 27 07:33:50 2013
@@ -32,10 +32,6 @@
     <version position="left" />
     
     <body>
-    <links>
-      <item name="Turbine Home"            href="/turbine/"/>
-      <item name="Fulcrum"                 href="/fulcrum/"/>
-    </links>
 
     <menu name="General Information">
         <item name="Overview"              href="/index.html"/>

Modified: turbine/site/xdocs/common/code-standards.xml
URL: 
http://svn.apache.org/viewvc/turbine/site/xdocs/common/code-standards.xml?rev=1526811&r1=1526810&r2=1526811&view=diff
==============================================================================
--- turbine/site/xdocs/common/code-standards.xml (original)
+++ turbine/site/xdocs/common/code-standards.xml Fri Sep 27 07:33:50 2013
@@ -253,25 +253,25 @@ X/Emacs users might appreciate this in t
 </p>
 
 <source><![CDATA[
-(defun apache-jakarta-mode ()
-  "The Java mode specialization for Apache Jakarta projects."
-  (if (not (assoc "apache-jakarta" c-style-alist))
-      ;; Define the Apache Jakarta cc-mode style.
-      (c-add-style "apache-jakarta" '("java" (indent-tabs-mode . nil))))
+(defun apache-turbine-mode ()
+  "The Java mode specialization for Apache Turbine projects."
+  (if (not (assoc "apache-turbine" c-style-alist))
+      ;; Define the Apache Turbine cc-mode style.
+      (c-add-style "apache-turbine" '("java" (indent-tabs-mode . nil))))
 
-  (c-set-style "apache-jakarta")
+  (c-set-style "apache-turbine")
   (c-set-offset 'substatement-open 0 nil)
-  (setq mode-name "Apache Jakarta")
+  (setq mode-name "Apache Turbine")
 
   ;; Turn on syntax highlighting when X is running.
   (if (boundp 'window-system)
       (progn (setq font-lock-support-mode 'lazy-lock-mode)
              (font-lock-mode t))))
 
-;; Activate Jakarta mode.
+;; Activate Turbine mode.
 (if (fboundp 'jde-mode)
-    (add-hook 'jde-mode-hook 'apache-jakarta-mode)
-  (add-hook 'java-mode-hook 'apache-jakarta-mode))
+    (add-hook 'jde-mode-hook 'apache-turbine-mode)
+  (add-hook 'java-mode-hook 'apache-turbine-mode))
 ]]></source>
 
 <p>

Modified: turbine/site/xdocs/common/documentation.xml
URL: 
http://svn.apache.org/viewvc/turbine/site/xdocs/common/documentation.xml?rev=1526811&r1=1526810&r2=1526811&view=diff
==============================================================================
--- turbine/site/xdocs/common/documentation.xml (original)
+++ turbine/site/xdocs/common/documentation.xml Fri Sep 27 07:33:50 2013
@@ -145,10 +145,10 @@
       <li>
 <p>
           <strong>Build The Site:</strong>
-          The documentation is built using <a 
href="http://maven.apache.org/maven-1.x/";>Maven</a>,
+          The documentation is built using <a 
href="http://maven.apache.org/";>Maven</a>,
           with the following command:
 </p>
-        <source><![CDATA[maven site:generate]]></source>
+        <source><![CDATA[mvn site]]></source>
 
 <p>
           Afterwards, you should get something like:
@@ -157,15 +157,17 @@
 Total time:  20 seconds]]></source>
 
 <p>
-          You will find the built HTML in $PATH_TO_MODULE/target/docs.
+          You will find the built HTML in 
<code>$PATH_TO_MODULE/target/site</code>.
 </p>
       </li>
 
       <li>
         <strong>Make Your Changes:</strong>
-        The docs are written using the Anakia Xdoc format, which you can learn 
about <a href="http://jakarta.apache.org/site/jakarta-site-tags.html";>here</a>.
-        The source files are found in the $PATH_TO_MODULE/xdocs directory, 
each xml file corresponding to the generated html file.
-        Menu information is found in the navigation.xml files.
+        The docs are written using the Anakia Xdoc format, which you can learn 
about 
+        <a 
href="http://maven.apache.org/doxia/references/xdoc-format.html";>here</a>.
+        The source files are found in the <code>$PATH_TO_MODULE/xdocs</code> 
directory, 
+        each xml file corresponding to the generated html file.
+        Menu information is found in the <code>src/site/site.xml</code> files.
       </li>
 
       <li>

Modified: turbine/site/xdocs/download.xml
URL: 
http://svn.apache.org/viewvc/turbine/site/xdocs/download.xml?rev=1526811&r1=1526810&r2=1526811&view=diff
==============================================================================
--- turbine/site/xdocs/download.xml (original)
+++ turbine/site/xdocs/download.xml Fri Sep 27 07:33:50 2013
@@ -43,6 +43,14 @@
   </p>
 </section>
 
+<section name="Getting Archived Releases">
+  <p>
+    If you look for older releases of Turbine, both, binaries and source, 
+    you can get them from the
+    <a href="http://archive.apache.org/dist/turbine/";>Apache Archive</a>.
+  </p>
+</section>
+
 <!--
 <section name="Getting Source snapshots">
   <p>
@@ -64,7 +72,7 @@
     of each Turbine sub-project.
 
     </p>
-    <source><![CDATA[svn checkout 
http://svn.apache.org/repos/asf/turbine/core/branches/TURBINE_2_3_BRANCH/]]></source>
+    <source><![CDATA[svn checkout 
http://svn.apache.org/repos/asf/turbine/core/trunk/]]></source>
 </section>
 
 <section name="Building The Source">

Modified: turbine/site/xdocs/further-reading/model2+1.xml
URL: 
http://svn.apache.org/viewvc/turbine/site/xdocs/further-reading/model2%2B1.xml?rev=1526811&r1=1526810&r2=1526811&view=diff
==============================================================================
--- turbine/site/xdocs/further-reading/model2+1.xml (original)
+++ turbine/site/xdocs/further-reading/model2+1.xml Fri Sep 27 07:33:50 2013
@@ -54,7 +54,7 @@ addition due to way actions are used (he
 
 <p>
 Turbine does not directly support the Hierachical MVC pattern, but
-it cout be used this way by defining multiple module and template
+it could be used this way by defining multiple module and template
 pathes (would impact performance). Note that in the HMVC each MVC
 instance is self-contained and separable from the rest.
 </p>
@@ -104,7 +104,7 @@ Oh yea...one more reason for the +1...
 </p>
 
 <p>
-It is the Apache <a 
href="http://jakarta.apache.org/guidelines/decisions.html";>voting style</a>. :-)
+It is the Apache <a href="http://www.apache.org/foundation/voting.html";>voting 
style</a>. :-)
 </p>
 
 <p>

Modified: turbine/site/xdocs/further-reading/pullmodel.xml
URL: 
http://svn.apache.org/viewvc/turbine/site/xdocs/further-reading/pullmodel.xml?rev=1526811&r1=1526810&r2=1526811&view=diff
==============================================================================
--- turbine/site/xdocs/further-reading/pullmodel.xml (original)
+++ turbine/site/xdocs/further-reading/pullmodel.xml Fri Sep 27 07:33:50 2013
@@ -144,7 +144,7 @@ they have missed the boat on this in one
 
 <p>
 Comments are appreciated. Please post them to the Turbine
-<a href="http://jakarta.apache.org/site/mail.html";>mailing list</a>.
+<a href="/mail-lists.html">mailing list</a>.
 </p>
 
 </section>

Modified: turbine/site/xdocs/getinvolved.xml
URL: 
http://svn.apache.org/viewvc/turbine/site/xdocs/getinvolved.xml?rev=1526811&r1=1526810&r2=1526811&view=diff
==============================================================================
--- turbine/site/xdocs/getinvolved.xml (original)
+++ turbine/site/xdocs/getinvolved.xml Fri Sep 27 07:33:50 2013
@@ -30,10 +30,6 @@
 
 </section>
 
-<section name="Getting Involved In The Development Of Jakarta">
-
-</section>
-
 </body>
 
 </document>

Modified: turbine/site/xdocs/news.xml
URL: 
http://svn.apache.org/viewvc/turbine/site/xdocs/news.xml?rev=1526811&r1=1526810&r2=1526811&view=diff
==============================================================================
--- turbine/site/xdocs/news.xml (original)
+++ turbine/site/xdocs/news.xml Fri Sep 27 07:33:50 2013
@@ -92,9 +92,9 @@ Maven Environment for Turbine Applicatio
 developing Turbine applications.
 Download source and binary releases
 through the Apache mirror system at <a
-href="http://jakarta.apache.org/site/downloads/downloads_turbine.cgi";>the
+href="/download.html">the
 turbine download site</a> or the <a
-href="http://www.ibiblio.org/maven/turbine/";>central maven
+href="http://search.maven.org/#search%7Cga%7C1%7Cg%3Aturbine";>central maven
 repository</a>.
 </p>
 
@@ -103,9 +103,9 @@ repository</a>.
 The Turbine Team is proud to announce the 2.3.2 release of the Turbine
 Web Application Framework.<br/> Download source and binary releases
 through the Apache mirror system at <a
-href="http://jakarta.apache.org/site/downloads/downloads_turbine.cgi";>the
+href="/download.html">the
 turbine download site</a> or the <a
-href="http://www.ibiblio.org/maven/turbine/jars/";>central maven
+href="http://search.maven.org/#search%7Cga%7C1%7Cg%3Aturbine";>central maven
 repository</a>.
 </p>
 
@@ -132,7 +132,7 @@ repository</a>.
 <h4>1 October 2004 - Turbine at OSCOM 4, Zürich, Switzerland</h4>
 <p>
 Rapid application prototyping with <a
-href="http://jakarta.apache.org/turbine/";>Turbine</a> and <a
+href="/">Turbine</a> and <a
 href="http://maven.apache.org/";>Maven</a> using the <a
 href="meta/">Maven Environment for Turbine Applications (META)</a>
 will be <a
@@ -165,10 +165,10 @@ The Turbine Team is proud to announce th
 Download the releases:
 <ul>
   <li>
-    Source: <a 
href="http://www.apache.org/dist/jakarta/turbine/turbine-2.3/source/";>Turbine 
2.3 Source</a>
+    Source: <a 
href="http://archive.apache.org/dist/turbine/turbine-2.3/source/";>Turbine 2.3 
Source</a>
   </li>
   <li>
-    Binaries for JDK 1.3.1 and JDK 1.4.2: <a 
href="http://www.apache.org/dist/jakarta/turbine/turbine-2.3/binaries/";>Turbine 
2.3 Binaries</a>
+    Binaries for JDK 1.3.1 and JDK 1.4.2: <a 
href="http://archive.apache.org/dist/turbine/turbine-2.3/binaries/";>Turbine 2.3 
Binaries</a>
   </li>
 </ul>
 </p>
@@ -187,10 +187,10 @@ The Turbine Team is proud to announce th
 Download the releases:
 <ul>
   <li>
-    Source: <a 
href="http://www.apache.org/dist/jakarta/turbine/turbine-2.3/source/";>Turbine 
2.3 Source</a>
+    Source: <a 
href="http://archive.apache.org/dist/turbine/turbine-2.3/source/";>Turbine 2.3 
Source</a>
   </li>
   <li>
-    Binaries for JDK 1.3.1 and JDK 1.4.2: <a 
href="http://www.apache.org/dist/jakarta/turbine/turbine-2.3/binaries/";>Turbine 
2.3 Binaries</a>
+    Binaries for JDK 1.3.1 and JDK 1.4.2: <a 
href="http://archive.apache.org/dist/turbine/turbine-2.3/binaries/";>Turbine 2.3 
Binaries</a>
   </li>
 </ul>
 </p>
@@ -202,10 +202,10 @@ The Turbine Team is proud to announce th
 Download the releases:
 <ul>
   <li>
-    Source: <a 
href="http://www.apache.org/dist/jakarta/turbine/turbine-2.3/source/";>Turbine 
2.3 Source</a>
+    Source: <a 
href="http://archive.apache.org/dist/turbine/turbine-2.3/source/";>Turbine 2.3 
Source</a>
   </li>
   <li>
-    Binaries for JDK 1.3.1 and JDK 1.4.2: <a 
href="http://www.apache.org/dist/jakarta/turbine/turbine-2.3/binaries/";>Turbine 
2.3 Binaries</a>
+    Binaries for JDK 1.3.1 and JDK 1.4.2: <a 
href="http://archive.apache.org/dist/turbine/turbine-2.3/binaries/";>Turbine 2.3 
Binaries</a>
   </li>
 </ul>
 </p>
@@ -225,7 +225,7 @@ Download the releases:
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/tdk/release/2.2/";>TDK 
2.2</a>
   </li>
   <li>
-    <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/turbine-2/release/2.2/";>Turbine
 2.2</a>
+    <a href="http://archive.apache.org/dist/turbine/2.2/";>Turbine 2.2</a>
   </li>
   <li>
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/torque/release/3.0/";>Torque
 3.0</a>
@@ -243,7 +243,7 @@ Download the releases:
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/tdk/release/2.2-rc2/";>TDK
 2.2-rc2</a>
   </li>
   <li>
-    <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/turbine-2/release/2.2-rc2/";>Turbine
 2.2-rc2</a>
+    <a href="http://archive.apache.org/dist/turbine/2.2-rc2/";>Turbine 
2.2-rc2</a>
   </li>
   <li>
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/torque/release/3.0-rc2/";>Torque
 3.0-rc2</a>
@@ -261,7 +261,7 @@ Download the releases:
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/tdk/release/2.2-rc1/";>TDK
 2.2-rc1</a>
   </li>
   <li>
-    <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/turbine-2/release/2.2-rc1/";>Turbine
 2.2-rc1</a>
+    <a href="http://archive.apache.org/dist/turbine/2.2-rc1/";>Turbine 
2.2-rc1</a>
   </li>
   <li>
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/torque/release/3.0-rc1/";>Torque
 3.0-rc1</a>
@@ -278,7 +278,7 @@ This release includes:
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/tdk/release/2.2-b2/";>TDK 
2.2-b2</a>
   </li>
   <li>
-    <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/turbine-2/release/2.2-b2/";>Turbine
 2.2-b2</a>
+    <a href="http://archive.apache.org/dist/turbine/2.2-b2/";>Turbine 2.2-b2</a>
   </li>
   <li>
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/torque/release/3.0-b3/";>Torque
 3.0-b3</a>
@@ -298,7 +298,7 @@ This release includes:
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/tdk/release/2.2-b1/";>TDK 
2.2-b1</a>
   </li>
   <li>
-    <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/turbine-2/release/2.2-b1/";>Turbine
 2.2-b1</a>
+    <a href="http://archive.apache.org/dist/turbine/2.2-b1/";>Turbine 2.2-b1</a>
   </li>
   <li>
     <a 
href="http://jakarta.apache.org/builds/jakarta-turbine/torque/release/3.0-b1/";>Torque
 3.0-b1</a>
@@ -312,10 +312,10 @@ This release includes:
 </ul>
 </p>
 
-<h4>15 March 2002 - <a 
href="http://jakarta.apache.org/turbine/common/status/03-15-2002.html";>
+<h4>15 March 2002 - <a href="/common/status/03-15-2002.html">
 Status Report</a></h4>
 
-<h4>08 March 2002 - <a 
href="http://jakarta.apache.org/turbine/common/status/03-08-2002.html";>
+<h4>08 March 2002 - <a href="/common/status/03-08-2002.html">
 Status Report</a></h4>
 
 <h4>03 March 2002 - Snapshot downloads available</h4>
@@ -324,29 +324,29 @@ You can download the latest snapshots of
 <a href="http://www.apache.org/dist/jakarta/jakarta-turbine/alpha/";>here</a>
 </p>
 
-<h4>01 March 2002 - <a 
href="http://jakarta.apache.org/turbine/common/status/03-01-2002.html";>
+<h4>01 March 2002 - <a href="/common/status/03-01-2002.html">
 Status Report</a></h4>
 
-<h4>22 February 2002 - <a 
href="http://jakarta.apache.org/turbine/common/status/02-22-2002.html";>
+<h4>22 February 2002 - <a href="/common/status/02-22-2002.html">
 Status Report</a></h4>
 
-<h4>15 February 2002 - <a 
href="http://jakarta.apache.org/turbine/common/status/02-15-2002.html";>
+<h4>15 February 2002 - <a href="/common/status/02-15-2002.html">
 Status Report</a></h4>
 
-<h4>08 February 2002 - <a 
href="http://jakarta.apache.org/turbine/common/status/02-08-2002.html";>
+<h4>08 February 2002 - <a href="/common/status/02-08-2002.html">
 Status Report</a></h4>
 
 <h4>04 June 2001 - Jakarta Turbine 2.1 Released</h4>
 
 <p>
-The <a href="http://jakarta.apache.org/turbine/";>Turbine</a> Team
+The <a href="/">Turbine</a> Team
 is proud to announce the 2.1 release of Turbine.
 This release includes a new version of the
-<a href="http://jakarta.apache.org/turbine/turbine-2/howto/tdk-howto.html";>
+<a href="/turbine/turbine-2.1/howto/tdk-howto.html">
 Turbine Developer's Kit</a> and a new stand-alone version of
-<a 
href="http://jakarta.apache.org/turbine/turbine-2/howto/torque-howto.html";>Torque</a>.
+<a href="/turbine/turbine-2.1/howto/torque-howto.html">Torque</a>.
 You can find everything
-<a 
href="http://jakarta.apache.org/builds/jakarta-turbine/release/2.1";>here</a>.
+<a href="http://archive.apache.org/dist/turbine/2.1";>here</a>.
 </p>
 
 <hr noshade="" size="1"/>


Reply via email to