You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by gr...@apache.org on 2001/01/17 16:33:05 UTC

cvs commit: xml-cocoon/xdocs xspprocessor.xml

greenrd     01/01/17 07:33:05

  Modified:    xdocs    xspprocessor.xml
  Log:
  clarified XSPUtil class
  
  Revision  Changes    Path
  1.10      +7 -4      xml-cocoon/xdocs/xspprocessor.xml
  
  Index: xspprocessor.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/xdocs/xspprocessor.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- xspprocessor.xml	2000/11/20 18:04:41	1.9
  +++ xspprocessor.xml	2001/01/17 15:33:05	1.10
  @@ -1438,10 +1438,11 @@
   </source>
        </s2>
   
  -     <s2 title="The XSP Util Class">
  +     <s2 title="The XSPUtil Class">
          <p>
            In addition to the above infrastructure objects and methods,
  -         XSP provides a utility class offering a number of DOM, HTTP
  +         XSP provides a utility class, called <code>XSPUtil</code>,
  +         which is automatically imported, offering a number of DOM, HTTP
            and file manipulation services implemented as public
            static methods:
          </p>
  @@ -1485,14 +1486,16 @@
                This method converts its <code>text</code> argument
                to <em>x-www-form-urlencode</em> format, as required
                by HTTP form query strings. This method is actually
  -             a wrapper for <code>java.net.URLEncoder.encode</code>
  +             a replacement for <code>java.net.URLEncoder.encode</code> (introduced
  +             in Java2) and exists solely to provide this
  +             functionality for JDK1.1.
              </li>
              <li>
                <code>String formDecode(String text)</code>.<br/>
                This method converts its <code>text</code> argument
                from <em>x-www-form-urlencode</em> format to a
                <code>String</code> representation. This method is
  -             actually a wrapper for
  +             actually a replacement for
                <code>java.net.URLDecoder.decode</code> (introduced
                in Java2) and exists solely to provide this
                functionality for JDK1.1