You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by he...@apache.org on 2009/12/10 17:17:02 UTC

svn commit: r889309 - in /commons/proper/jexl/trunk: pom.xml xdocs/index.xml

Author: henrib
Date: Thu Dec 10 16:17:01 2009
New Revision: 889309

URL: http://svn.apache.org/viewvc?rev=889309&view=rev
Log:
documentation links fixes

Modified:
    commons/proper/jexl/trunk/pom.xml
    commons/proper/jexl/trunk/xdocs/index.xml

Modified: commons/proper/jexl/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/pom.xml?rev=889309&r1=889308&r2=889309&view=diff
==============================================================================
--- commons/proper/jexl/trunk/pom.xml (original)
+++ commons/proper/jexl/trunk/pom.xml Thu Dec 10 16:17:01 2009
@@ -118,7 +118,7 @@
         <commons.release.version>2.0</commons.release.version>
         <!-- The RC version used in the staging repository URL. -->
         <commons.rc.version>RC4</commons.rc.version>
-        <commons.binary.suffix />
+        <commons.binary.suffix/>
         <commons.jira.id>JEXL</commons.jira.id>
         <commons.jira.pid>12310479</commons.jira.pid>
         <!-- Temp fix until parent POM is updated -->
@@ -143,7 +143,7 @@
             </resource>
         </resources>
         <plugins>
-            <!-- attempting to workaround MRELEASE-424 -->
+            <!-- workaround MRELEASE-424 when publishing -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-release-plugin</artifactId>

Modified: commons/proper/jexl/trunk/xdocs/index.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/xdocs/index.xml?rev=889309&r1=889308&r2=889309&view=diff
==============================================================================
--- commons/proper/jexl/trunk/xdocs/index.xml (original)
+++ commons/proper/jexl/trunk/xdocs/index.xml Thu Dec 10 16:17:01 2009
@@ -29,7 +29,7 @@
             </p>
             <p>
             It is a small footprint "glueing" API
-            - the <a href="apidocs/org/apache/commons/jexl/package-summary.html#usage">core features</a> fit in
+            - the <a href="apidocs/org/apache/commons/jexl2/package-summary.html#usage">core features</a> fit in
             3 classes and 10 methods - that can be used in various conditions:
                 <ul>
                     <li>Module or component configuration:
@@ -85,13 +85,13 @@
         <section name="A Brief Example">
             <p>
             When evaluating expressions, JEXL merges an
-                <a href="http://commons.apache.org/jexl/apidocs/org/apache/commons/jexl2/Expression.html">Expression</a>
+                <a href="apidocs/org/apache/commons/jexl2/Expression.html">Expression</a>
             with a
-                <a href="http://commons.apache.org/jexl/apidocs/org/apache/commons/jexl2/JexlContext.html">JexlContext</a>.
+                <a href="apidocs/org/apache/commons/jexl2/JexlContext.html">JexlContext</a>.
             An Expression is created using
-                <a href="http://commons.apache.org/jexl/apidocs/org/apache/commons/jexl2/JexlEngine.html#createExpression(java.lang.String)">ExpressionFactory.createExpression()</a>,
+                <a href="apidocs/org/apache/commons/jexl2/JexlEngine.html#createExpression(java.lang.String)">JexlEngine#createExpression()</a>,
             passing a String containing valid JEXL syntax.  A JexlContext can be created using a
-                <a href="http://commons.apache.org/jexl/apidocs/org/apache/commons/jexl2/MapContext.html">new MapContext.Mapped()</a>;
+                <a href="apidocs/org/apache/commons/jexl2/MapContext.html">new MapContext.Mapped()</a>;
             a map of variables that will be internally wrapped can be optionally provided through its constructor.
             The following example, takes a variable named foo, and invokes the bar() method on the property innerFoo:
             </p>