You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by dm...@apache.org on 2003/01/11 07:22:55 UTC

cvs commit: jakarta-commons/jxpath/xdocs/stylesheets project.xml

dmitri      2003/01/10 22:22:55

  Modified:    jxpath   build.xml
               jxpath/xdocs index.xml users-guide.xml
               jxpath/xdocs/images logo.jpg
               jxpath/xdocs/stylesheets project.xml
  Added:       jxpath/xdocs/images logo-for-anakia.jpg
  Log:
  Images and consistency between Anakia and Maven builds
  
  Revision  Changes    Path
  1.17      +3 -3      jakarta-commons/jxpath/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/jxpath/build.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- build.xml	20 Oct 2002 04:00:34 -0000	1.16
  +++ build.xml	11 Jan 2003 06:22:53 -0000	1.17
  @@ -256,10 +256,10 @@
      description="Create component Javadoc documentation">
       <mkdir      dir="${dist.home}"/>
       <mkdir      dir="${dist.home}/docs"/>
  -    <mkdir      dir="${dist.home}/docs/api"/>
  +    <mkdir      dir="${dist.home}/docs/apidocs"/>
       <javadoc sourcepath="${source.home}"
              classpathref="compile.classpath"
  -                destdir="${dist.home}/docs/api"
  +                destdir="${dist.home}/docs/apidocs"
              packagenames="org.apache.commons.*"
                    author="true"
                   private="false"
  
  
  
  1.3       +2 -2      jakarta-commons/jxpath/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/jxpath/xdocs/index.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.xml	28 Apr 2002 04:37:01 -0000	1.2
  +++ index.xml	11 Jan 2003 06:22:54 -0000	1.3
  @@ -60,7 +60,7 @@
               JXPath documentation currently contains:
               <ul>
                 <li><a href="users-guide.html">User's Guide</a></li>
  -              <li><a href="api/index.html">JavaDoc API Documentation</a></li>
  +              <li><a href="apidocs/index.html">JavaDoc API Documentation</a></li>
   <!--              <li><a href="design.html">JXPath Design</a>, which is a document
                   primarily intended for those who are interested in extending JXPath.
                   It could also be quite useful if you are debugging a tough problem.
  
  
  
  1.8       +18 -18    jakarta-commons/jxpath/xdocs/users-guide.xml
  
  Index: users-guide.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/jxpath/xdocs/users-guide.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- users-guide.xml	8 Jun 2002 22:47:24 -0000	1.7
  +++ users-guide.xml	11 Jan 2003 06:22:54 -0000	1.8
  @@ -38,7 +38,7 @@
         </p>
         <p>
           The central class in the JXPath architecture is
  -        <a href="api/org/apache/commons/jxpath/JXPathContext.html"><code>JXPathContext</code></a>.
  +        <a href="apidocs/org/apache/commons/jxpath/JXPathContext.html"><code>JXPathContext</code></a>.
           Most of the APIs discussed in this document have to do with the
           JXPathContext class.
         </p>
  @@ -356,7 +356,7 @@
           <p><b>Note:</b>  JXPath supports the extended notion of Map: any
             object with dynamic properties can be handled by JXPath
             provided that its class is registered with the
  -          <a href="api/org/apache/commons/jxpath/JXPathIntrospector.html"><code>JXPathIntrospector</code></a>.
  +          <a href="apidocs/org/apache/commons/jxpath/JXPathIntrospector.html"><code>JXPathIntrospector</code></a>.
           </p>
         </subsection>
   
  @@ -383,7 +383,7 @@
         <subsection name="Containers">
           <p>
             A
  -          <a href="api/org/apache/commons/jxpath/Container.html">Container</a>
  +          <a href="apidocs/org/apache/commons/jxpath/Container.html">Container</a>
             is an object implementing an indirection mechanism
             transparent to JXPath.
           </p>
  @@ -395,7 +395,7 @@
           </p>
           <p>
             An example of a useful container is
  -          <a href="api/org/apache/commons/jxpath/XMLDocumentContainer.html">XMLDocumentContainer</a>.
  +          <a href="apidocs/org/apache/commons/jxpath/XMLDocumentContainer.html">XMLDocumentContainer</a>.
             When you create an XMLDocumentContainer, you give it a
             pointer to an XML file (a <code>URL</code>  or a
             <code>javax.xml.transform.Source</code>. It will read
  @@ -479,13 +479,13 @@
             In order to evaluate the <code>id()</code> function, JXPath
             calls a delegate object that should be implemented and installed
             on the JXPathContext.  The object should implement the
  -          <a href="api/org/apache/commons/jxpath/IdentityManager.html">IdentityManager</a>
  +          <a href="apidocs/org/apache/commons/jxpath/IdentityManager.html">IdentityManager</a>
             interface.
           </p>
           <p>
             Similarly, the <code>key()</code> function relies on a custom
             implementation of the
  -          <a href="api/org/apache/commons/jxpath/KeyManager.html">KeyManager</a>
  +          <a href="apidocs/org/apache/commons/jxpath/KeyManager.html">KeyManager</a>
             interface.
           </p>
         </subsection>
  @@ -543,7 +543,7 @@
           <p>
             JXPath can be used to create new objects. First, create a
             subclass of
  -          <a href="api/org/apache/commons/jxpath/AbstractFactory.html"><code>AbstractFactory</code></a>
  +          <a href="apidocs/org/apache/commons/jxpath/AbstractFactory.html"><code>AbstractFactory</code></a>
             and install it on the JXPathContext. Then call
             <code>jxPathContext.createPath(xpath)</code>.
             JXPathContext will invoke your AbstractFactory when it
  @@ -689,7 +689,7 @@
           </p>
           <p>
             See the
  -          <a href="api/org/apache/commons/jxpath/servlet/package-summary.html">org.apache.commons.jxpath.servlet</a>
  +          <a href="apidocs/org/apache/commons/jxpath/servlet/package-summary.html">org.apache.commons.jxpath.servlet</a>
             package for an example of just that.
           </p>
         </subsection>
  @@ -704,7 +704,7 @@
         </p>
         <p>
           See static methods of the class
  -        <a href="api/org/apache/commons/jxpath/servlet/JXPathServletContexts.html"><code>JXPathServletContexts</code></a>.
  +        <a href="apidocs/org/apache/commons/jxpath/servlet/JXPathServletContexts.html"><code>JXPathServletContexts</code></a>.
           They allocate various servlet-related JXPathContexts.
         </p>
   
  @@ -888,7 +888,7 @@
           <p>
             Collections of custom extension functions can be
             implemented as
  -          <a href="api/org/apache/commons/jxpath/Functions.html"><code>Functions</code></a>
  +          <a href="apidocs/org/apache/commons/jxpath/Functions.html"><code>Functions</code></a>
             objects or as Java classes, whose methods become extenstion
             functions.
           </p>
  @@ -931,7 +931,7 @@
           </p>
           <p>
             Also, see
  -          <a href="api/org/apache/commons/jxpath/FunctionLibrary.html"><code>FunctionLibrary</code></a>,
  +          <a href="apidocs/org/apache/commons/jxpath/FunctionLibrary.html"><code>FunctionLibrary</code></a>,
             which is a class that allows you to register multiple sets
             of extension functions with the same JXPathContext.
           </p>
  @@ -943,7 +943,7 @@
             A custom function can get access to the context in which it
             is being evaluated. ClassFunctions and PackageFunctions
             have special support for methods and constructors that have
  -          <a href="api/org/apache/commons/jxpath/ExpressionContext.html"><code>ExpressionContext</code></a>
  +          <a href="apidocs/org/apache/commons/jxpath/ExpressionContext.html"><code>ExpressionContext</code></a>
             as the first argument. When such extension function is
             invoked, it is given an object that implements the
             ExpressionContext interface. The function can then gain
  @@ -1224,7 +1224,7 @@
           The <code>"lang"</code>  boolean function is supported for
           non-DOM objects as well. It tests the Locale set on the
           JXPathContext (or the default locale). See
  -        <a href="api/org/apache/commons/jxpath/JXPathContext.html#setLocale">JXPathContext.setLocale()</a>.
  +        <a href="apidocs/org/apache/commons/jxpath/JXPathContext.html#setLocale">JXPathContext.setLocale()</a>.
         </p>
         <p>
           You can also utilize the <code>xml:lang</code>  attribute,
  @@ -1349,7 +1349,7 @@
             JXPath uses JavaBeans introspection to discover properties
             of JavaBeans. You can provide alternative property lists by
             supplying custom JXPathBeanInfo classes (see
  -          <A HREF="api/org/apache/commons/jxpath/JXPathBeanInfo.html"><CODE>JXPathBeanInfo</CODE></A>).
  +          <A HREF="apidocs/org/apache/commons/jxpath/JXPathBeanInfo.html"><CODE>JXPathBeanInfo</CODE></A>).
           </p>
         </subsection>
   
  @@ -1372,9 +1372,9 @@
           <p>
             Architecturally, multiple model support is made possible by
             the notions of a
  -          <a href="api/org/apache/commons/jxpath/ri/model/NodePointer.html">NodePointer</a>
  +          <a href="apidocs/org/apache/commons/jxpath/ri/model/NodePointer.html">NodePointer</a>
             and
  -          <a href="api/org/apache/commons/jxpath/ri/model/NodeIterator.html">NodeIterator</a>,
  +          <a href="apidocs/org/apache/commons/jxpath/ri/model/NodeIterator.html">NodeIterator</a>,
             which are simple abstract classes that are extended in
             different ways to traverse graphs of objects of different
             kinds. The NodePointer/NodeIterator APIs are designed with
  @@ -1392,9 +1392,9 @@
           <p>
             To add support for a new object model, build custom
             implementations of NodePointer and NodeIterator as well as
  -          <a href="api/org/apache/commons/jxpath/ri/model/NodePointerFactory.html">NodePointerFactory</a>.
  +          <a href="apidocs/org/apache/commons/jxpath/ri/model/NodePointerFactory.html">NodePointerFactory</a>.
             Then register the new factory with
  -          <a href="api/org/apache/commons/jxpath/ri/JXPathContextReferenceImpl.html">JXPathContextReferenceImpl</a>.
  +          <a href="apidocs/org/apache/commons/jxpath/ri/JXPathContextReferenceImpl.html">JXPathContextReferenceImpl</a>.
           </p>
           <p>
             See existing NodePointerFactories for examples of how
  
  
  
  1.2       +36 -38    jakarta-commons/jxpath/xdocs/images/logo.jpg
  
  	<<Binary file>>
  
  
  1.1                  jakarta-commons/jxpath/xdocs/images/logo-for-anakia.jpg
  
  	<<Binary file>>
  
  
  1.5       +1 -1      jakarta-commons/jxpath/xdocs/stylesheets/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/jxpath/xdocs/stylesheets/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml	8 May 2002 00:40:00 -0000	1.4
  +++ project.xml	11 Jan 2003 06:22:55 -0000	1.5
  @@ -2,7 +2,7 @@
   <project name="Commons - JXPath" href="http://jakarta.apache.org/commons/jxpath">
       <title>JXPath</title>
       <!-- logo href="/images/logo.jpg">Commons</logo -->
  -    <logo href="/images/logo.gif">JXPath</logo>
  +    <logo href="/images/logo-for-anakia.jpg">JXPath</logo>
   
       <!--
         Note: Per the .vsl file, "/site" links will be prefixed with "http://jakarta.apache.org/site"
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>