You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ra...@apache.org on 2007/12/19 19:08:32 UTC

svn commit: r605643 - in /commons/proper/scxml/trunk: build.properties.sample doap_scxml.rdf scxml-checks.xml xdocs/faq.fml xdocs/guide/scxml-documents.xml xdocs/guide/testing-standalone.xml xdocs/usecases/scxml-stopwatch.xml

Author: rahul
Date: Wed Dec 19 10:08:31 2007
New Revision: 605643

URL: http://svn.apache.org/viewvc?rev=605643&view=rev
Log:
Remove old Jakarta references. Thanks to Sebb <sebbaz AT gmail DOT com>.

Modified:
    commons/proper/scxml/trunk/build.properties.sample
    commons/proper/scxml/trunk/doap_scxml.rdf
    commons/proper/scxml/trunk/scxml-checks.xml
    commons/proper/scxml/trunk/xdocs/faq.fml
    commons/proper/scxml/trunk/xdocs/guide/scxml-documents.xml
    commons/proper/scxml/trunk/xdocs/guide/testing-standalone.xml
    commons/proper/scxml/trunk/xdocs/usecases/scxml-stopwatch.xml

Modified: commons/proper/scxml/trunk/build.properties.sample
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/build.properties.sample?rev=605643&r1=605642&r2=605643&view=diff
==============================================================================
--- commons/proper/scxml/trunk/build.properties.sample (original)
+++ commons/proper/scxml/trunk/build.properties.sample Wed Dec 19 10:08:31 2007
@@ -18,4 +18,4 @@
 #
 #   Commons SCXML dependency information is here:
 #
-#   http://jakarta.apache.org/commons/scxml/dependencies.html
+#   http://commons.apache.org/scxml/dependencies.html

Modified: commons/proper/scxml/trunk/doap_scxml.rdf
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/doap_scxml.rdf?rev=605643&r1=605642&r2=605643&view=diff
==============================================================================
--- commons/proper/scxml/trunk/doap_scxml.rdf (original)
+++ commons/proper/scxml/trunk/doap_scxml.rdf Wed Dec 19 10:08:31 2007
@@ -24,7 +24,7 @@
     <category rdf:resource="http://projects.apache.org/category/library"/>
     <license rdf:resource="http://usefulinc.com/doap/licenses/asl20"/>
     <bug-database rdf:resource="http://issues.apache.org/jira/browse/SCXML"/>
-    <download-page rdf:resource="http://jakarta.apache.org/site/downloads/downloads_commons-scxml.cgi"/>
+    <download-page rdf:resource="http://commons.apache.org/downloads/download_scxml.cgi"/>
     <asfext:pmc rdf:resource="http://commons.apache.org/"/>
     <shortdesc xml:lang="en">A Java implementation of State Chart XML</shortdesc>
     <description xml:lang="en">

Modified: commons/proper/scxml/trunk/scxml-checks.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/scxml-checks.xml?rev=605643&r1=605642&r2=605643&view=diff
==============================================================================
--- commons/proper/scxml/trunk/scxml-checks.xml (original)
+++ commons/proper/scxml/trunk/scxml-checks.xml Wed Dec 19 10:08:31 2007
@@ -164,7 +164,7 @@
         <module name="EqualsHashCode"/>
         <!-- Commons SCXML change # 2 :
              Turn off the hidden field check
-             based on discussion on commons-dev AT jakarta.apache.org
+             based on discussion on dev AT commons.apache.org
              The code uses same names for arguments
              in side-effect free setters. -->
         <!--module name="HiddenField"/-->
@@ -180,7 +180,7 @@
         <!-- See http://checkstyle.sf.net/config_design.html -->
         <!-- Commons SCXML change # 3 :
              Turn off the design for extension check 
-             based on discussion on commons-dev AT jakarta.apache.org -->
+             based on discussion on dev AT commons.apache.org -->
         <!--module name="DesignForExtension"/-->
         <!--module name="FinalClass"/-->
         <module name="HideUtilityClassConstructor"/>

Modified: commons/proper/scxml/trunk/xdocs/faq.fml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/xdocs/faq.fml?rev=605643&r1=605642&r2=605643&view=diff
==============================================================================
--- commons/proper/scxml/trunk/xdocs/faq.fml (original)
+++ commons/proper/scxml/trunk/xdocs/faq.fml Wed Dec 19 10:08:31 2007
@@ -85,8 +85,8 @@
    </question>
    <answer>
     Commons SCXML currently supports
-    <a href="http://jakarta.apache.org/commons/jexl/">Commons JEXL</a> and
-    <a href="http://jakarta.apache.org/commons/el/">Commons EL</a>. For details,
+    <a href="http://commons.apache.org/jexl/">Commons JEXL</a> and
+    <a href="http://commons.apache.org/el/">Commons EL</a>. For details,
     see the <a href="guide/testing-standalone.html">trying out</a> and
     <a href="guide/contexts-evaluators.html">contexts and evaluators</a>
     pages of the user guide.

Modified: commons/proper/scxml/trunk/xdocs/guide/scxml-documents.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/xdocs/guide/scxml-documents.xml?rev=605643&r1=605642&r2=605643&view=diff
==============================================================================
--- commons/proper/scxml/trunk/xdocs/guide/scxml-documents.xml (original)
+++ commons/proper/scxml/trunk/xdocs/guide/scxml-documents.xml Wed Dec 19 10:08:31 2007
@@ -54,7 +54,7 @@
   <section name="Hello World">
 
    <p>Here is the canonical
-      <a href="http://svn.apache.org/repos/asf/jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/hello-world.xml">hello world example</a>
+      <a href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/hello-world.xml">hello world example</a>
       for SCXML. The interesting bits are:</p>
 
    <pre>
@@ -163,7 +163,7 @@
    <p>States can contain states, so we can think of an
       SCXML document as a recursive transition network. Here is
       a snippet (here is the entire version of this
-      <a href="http://svn.apache.org/repos/asf/jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/jexl/microwave-01.xml">microwave example</a>
+      <a href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/jexl/microwave-01.xml">microwave example</a>
       ):</p>
 
    <pre>
@@ -221,7 +221,7 @@
       can become a state machine in its own right -- that are "active"
       at the same time. Here is
       a relevant snippet (the entire version of this
-      <a href="http://svn.apache.org/repos/asf/jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/jexl/microwave-02.xml">parallel microwave example</a>
+      <a href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/jexl/microwave-02.xml">parallel microwave example</a>
       ):</p>
 
    <pre>
@@ -281,7 +281,7 @@
 
    <p>The Commons SCXML implementation allows you to register custom actions.
       Here is the Commons SCXML
-      <a href="http://svn.apache.org/repos/asf/jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/custom-hello-world-02.xml">hello world example using a custom action</a>.
+      <a href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/custom-hello-world-02.xml">hello world example using a custom action</a>.
       The interesting bits are:</p>
 
    <pre>

Modified: commons/proper/scxml/trunk/xdocs/guide/testing-standalone.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/xdocs/guide/testing-standalone.xml?rev=605643&r1=605642&r2=605643&view=diff
==============================================================================
--- commons/proper/scxml/trunk/xdocs/guide/testing-standalone.xml (original)
+++ commons/proper/scxml/trunk/xdocs/guide/testing-standalone.xml Wed Dec 19 10:08:31 2007
@@ -58,7 +58,7 @@
 
     <a href="../xref/org/apache/commons/scxml/test/StandaloneJexlExpressions.html">org.apache.commons.scxml.test.StandaloneJexlExpressions</a>
 
-    <a href="http://svn.apache.org/repos/asf/jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/jexl/microwave-01.xml">microwave01.xml</a>
+    <a href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/jexl/microwave-01.xml">microwave01.xml</a>
     </pre>
 
    </subsection>
@@ -80,7 +80,7 @@
 
     <a href="../xref/org/apache/commons/scxml/test/StandaloneElExpressions.html">org.apache.commons.scxml.test.StandaloneElExpressions</a>
 
-    <a href="http://svn.apache.org/repos/asf/jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/jsp/microwave-01.xml">microwave01.xml</a>
+    <a href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/jsp/microwave-01.xml">microwave01.xml</a>
     </pre>
 
    </subsection>
@@ -93,7 +93,7 @@
    </p>
 
    <p>A few examples are available as part of the 
-   <a href="http://svn.apache.org/repos/asf/jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/">
+   <a href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/">
    Commons SCXML test suite</a> (look in env.jexl and env.jsp child packages as well).</p>
 
   </section> 

Modified: commons/proper/scxml/trunk/xdocs/usecases/scxml-stopwatch.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/xdocs/usecases/scxml-stopwatch.xml?rev=605643&r1=605642&r2=605643&view=diff
==============================================================================
--- commons/proper/scxml/trunk/xdocs/usecases/scxml-stopwatch.xml (original)
+++ commons/proper/scxml/trunk/xdocs/usecases/scxml-stopwatch.xml Wed Dec 19 10:08:31 2007
@@ -73,7 +73,7 @@
    <subsection name="The SCXML document">
     <p>The SCXML document is then, a simple serialization of
        the "model" above:
-       <a href="http://svn.apache.org/repos/asf/jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/stopwatch.xml">stopwatch.xml</a>.
+       <a href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/env/stopwatch.xml">stopwatch.xml</a>.
     </p>
    </subsection>