]> granicus.if.org Git - docbook-dsssl/commitdiff
Applied patch from Ville Skytt. Changes to comments/javadoc only.
authorMichael Smith <xmldoc@users.sourceforge.net>
Thu, 27 Apr 2006 08:26:47 +0000 (08:26 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Thu, 27 Apr 2006 08:26:47 +0000 (08:26 +0000)
Closes patch #613993.

18 files changed:
xsl/extensions/build.xml
xsl/extensions/saxon643/com/nwalsh/saxon/CVS.java
xsl/extensions/saxon643/com/nwalsh/saxon/CalloutEmitter.java
xsl/extensions/saxon643/com/nwalsh/saxon/ColumnScanEmitter.java
xsl/extensions/saxon643/com/nwalsh/saxon/ColumnUpdateEmitter.java
xsl/extensions/saxon643/com/nwalsh/saxon/CopyEmitter.java
xsl/extensions/saxon643/com/nwalsh/saxon/LineCountEmitter.java
xsl/extensions/saxon643/com/nwalsh/saxon/NumberLinesEmitter.java
xsl/extensions/saxon643/com/nwalsh/saxon/Table.java
xsl/extensions/saxon643/com/nwalsh/saxon/Text.java
xsl/extensions/saxon643/com/nwalsh/saxon/TextFactory.java
xsl/extensions/saxon643/com/nwalsh/saxon/UnwrapLinks.java
xsl/extensions/saxon643/com/nwalsh/saxon/Verbatim.java
xsl/extensions/xalan2/com/nwalsh/xalan/CVS.java
xsl/extensions/xalan2/com/nwalsh/xalan/ImageIntrinsics.java
xsl/extensions/xalan2/com/nwalsh/xalan/Table.java
xsl/extensions/xalan2/com/nwalsh/xalan/Text.java
xsl/extensions/xalan2/com/nwalsh/xalan/Verbatim.java

index 83bac1e83ca8c3ff9142b6c1c5706bb8b3d803d9..405289d5a5534d958398a8e6b621b68a137409b3 100644 (file)
@@ -1,6 +1,6 @@
 <!-- Build file for docbook-xsl extensions -->
 
-<!-- Submitted by Ville Skytt (scop@users.sf.net) -->
+<!-- Submitted by Ville Skyttรค (scop@users.sf.net) -->
 
 <project name="docbook-xsl" default="all" basedir=".">
 
index 529546be7057a668c18d400b9668dc133342424b..ca89f39b69111f2da9eee4617e9d62220eaf2768 100644 (file)
@@ -17,7 +17,7 @@ import java.text.ParseException;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon</a>
  * extension to turn the CVS date strings, which are UTC:</p>
  *
  * <pre>&#36;Date: 2000/11/09 02:34:20 &#36;</pre>
index 60492b06c52463a83c4f1c95109804cdc82e3b20..a61b38c3b03d4ce1b96ae160f7de553d3ba4c3f5 100644 (file)
@@ -18,7 +18,7 @@ import com.icl.saxon.tree.AttributeCollection;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides the guts of a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon 6.*</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon 6.*</a>
  * implementation of callouts for verbatim environments. (It is used
  * by the Verbatim class.)</p>
  *
@@ -86,12 +86,11 @@ public class CalloutEmitter extends CopyEmitter {
 
   /** <p>Constructor for the CalloutEmitter.</p>
    *
+   * @param controller
    * @param namePool The name pool to use for constructing elements and attributes.
-   * @param graphicsPath The path to callout number graphics.
-   * @param graphicsExt The extension for callout number graphics.
-   * @param graphicsMax The largest callout number that can be represented as a graphic.
    * @param defaultColumn The default column for callouts.
    * @param foStylesheet Is this an FO stylesheet?
+   * @param fCallout
    */
   public CalloutEmitter(Controller controller,
                        NamePool namePool,
@@ -117,8 +116,7 @@ public class CalloutEmitter extends CopyEmitter {
    * <p>This data structure is used to augment the result tree fragment
    * with callout bullets.</p>
    *
-   * @param areaspecNodeSet The source document &lt;areaspec&gt; element.
-   *
+   * @param areaspecNodeList The source document &lt;areaspec&gt; element.
    */
   public void setupCallouts (NodeList areaspecNodeList) {
     callout = new Callout[10];
index 9c3ab88c2fa5816c521c9f5ff020404d4c241569..6efe35aabbe1c097938fa435d580c0aecfd39131 100644 (file)
@@ -7,14 +7,14 @@ import com.icl.saxon.om.*;
 import com.icl.saxon.expr.FragmentValue;
 
 /**
- * <p>Saxon extension to scan the column widthsin a result tree fragment.</p>
+ * <p>Saxon extension to scan the column widths in a result tree fragment.</p>
  *
  * <p>$Id$</p>
  *
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon 6.*</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon 6.*</a>
  * implementation to scan the column widths in a result tree
  * fragment.</p>
  *
index 779a24750c69aaeed098aa80716da991ba808491..36434caba83c24ddb57df63afeb9c34c4f5bba44 100644 (file)
@@ -9,14 +9,14 @@ import com.icl.saxon.expr.FragmentValue;
 import com.icl.saxon.tree.AttributeCollection;
 
 /**
- * <p>Saxon extension to scan the column widthsin a result tree fragment.</p>
+ * <p>Saxon extension to scan the column widths in a result tree fragment.</p>
  *
  * <p>$Id$</p>
  *
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon 6.*</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon 6.*</a>
  * implementation to scan the column widths in a result tree
  * fragment.</p>
  *
index 9817796cef711f956c2d1c015ff81887835c7ad1..3718c50d1c1dd9efca7bf2926ca51a2cbf7bc654 100644 (file)
@@ -23,7 +23,7 @@ import com.icl.saxon.tree.*;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon 6.*</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon 6.*</a>
  * implementation of an emitter that manufactures a cloned result
  * tree fragment.</p>
  *
index 5febeda3d80c3e6d2f39c0c673e25ab9b14ea3d8..d8110dedb0826ef915e55ea73926f0f94f85de5c 100644 (file)
@@ -14,7 +14,7 @@ import com.icl.saxon.expr.FragmentValue;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon 6.*</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon 6.*</a>
  * implementation to count the number of lines in a result tree
  * fragment.</p>
  *
index ab471e045622e9fa9df859286e39c8747eb86cb9..c32efa9e38ad6247782472771cc614cb22190a67 100644 (file)
@@ -19,7 +19,7 @@ import com.icl.saxon.expr.FragmentValue;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides the guts of a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon 6.*</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon 6.*</a>
  * implementation of line numbering for verbatim environments. (It is used
  * by the Verbatim class.)</p>
  *
index c49632a1e7981904c117c53996d7ce7c6bb0de29..ef23b04f7312ed0af672b4dfb31bc9bda9780194 100644 (file)
@@ -22,7 +22,7 @@ import com.icl.saxon.functions.Extensions;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon</a>
  * implementation of some code to adjust CALS Tables to HTML
  * Tables.</p>
  *
@@ -287,7 +287,7 @@ public class Table {
    * </ol>
    *
    * @param context The stylesheet context; supplied automatically by Saxon
-   * @param rtf The result tree fragment containing the colgroup.
+   * @param rtf_ns The result tree fragment containing the colgroup.
    *
    * @return The result tree fragment containing the adjusted colgroup.
    *
index 9bb6fe8c3f222c9be6b8452def2a56b31e1c2358..71ef568249c99dd41bdb3bff81fc70fdd3f6a612 100644 (file)
@@ -30,7 +30,7 @@ import org.xml.sax.AttributeList;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon</a>
  * extension element for inserting text into a result tree.</p>
  *
  * <p><b>Change Log:</b></p>
index ccf5001c07f5654f6765619cf99df662044b03b6..6dc09672ef1ae83e7837aea247ef1ee899a65120 100644 (file)
@@ -13,7 +13,7 @@ import org.xml.sax.SAXException;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon</a>
  * extension element factory for the Text extension element
  * family.</p>
  *
index ec1a337b186edf4ad0dc5cd08794b4302b3c8e96..18b6c5e155b84c2fb69dfcd8161cd81d31e6eba5 100644 (file)
@@ -95,7 +95,8 @@ public class UnwrapLinks {
   /**
    * <p>Unwrap links</p>
    *
-   * @param rtf The result tree fragment of the verbatim environment.
+   * @param context The current stylesheet context.
+   * @param rtf_ns The result tree fragment of the verbatim environment.
    *
    * @return The modified result tree fragment.
    */
index 9e1febfbc58e254c33f60ffa012aecd0074c5e9d..2bff9a02e019ef844d20d2565e839d00a9f26a61 100644 (file)
@@ -25,7 +25,7 @@ import com.nwalsh.saxon.CalloutEmitter;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon</a>
+ * <a href="http://saxon.sourceforge.net/">Saxon</a>
  * implementation of two features that would be impractical to
  * implement directly in XSLT: line numbering and callouts.</p>
  *
@@ -231,7 +231,8 @@ public class Verbatim {
    * are not duplicated if the stylesheet.result.type is "html" and
    * 'id' attributes will not be duplicated if the result type is "fo".</p>
    *
-   * @param rtf The result tree fragment of the verbatim environment.
+   * @param context The current stylesheet context.
+   * @param rtf_ns The result tree fragment of the verbatim environment.
    *
    * @return The modified result tree fragment.
    */
@@ -457,12 +458,11 @@ public class Verbatim {
    * parenthesis.</p>
    *
    * @param context The stylesheet context.
-   * @param areaspecNodeSet The source node set that contains the areaspec.
-   * @param rtf The result tree fragment of the verbatim environment.
+   * @param areaspecNodeList The source node set that contains the areaspec.
+   * @param rtf_ns The result tree fragment of the verbatim environment.
    *
    * @return The modified result tree fragment.
    */
-
   public static NodeSetValue insertCallouts (Context context,
                                             NodeList areaspecNodeList,
                                             NodeSetValue rtf_ns) {
index acf1d057aa74d7a5d4678ba644e7f3ad1f4633cd..fbd190e904e14c805c9d164849197b4d95825494 100644 (file)
@@ -10,14 +10,14 @@ import java.text.DateFormat;
 import java.text.ParseException;
 
 /**
- * <p>Saxon extension to convert CVS date strings into local time</p>
+ * <p>Xalan extension to convert CVS date strings into local time</p>
  *
  * <p>$Id$</p>
  *
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://users.iclway.co.uk/mhkay/saxon/">Saxon</a>
+ * <a href="http://xml.apache.org/xalan-j/">Xalan</a>
  * extension to turn the CVS date strings, which are UTC:</p>
  *
  * <pre>&#36;Date: 2000/11/09 02:34:20 &#36;</pre>
index 97a13a3a51c9bc05b92bb9ae1b3e5804d9c6b293..94f02f4c069da56f2ebae9d27c0b7e2703353ebc 100644 (file)
@@ -9,14 +9,14 @@ import java.util.StringTokenizer;
 import org.apache.xalan.extensions.ExpressionContext;
 
 /**
- * <p>Saxon extension to examine intrinsic size of images</p>
+ * <p>Xalan extension to examine intrinsic size of images</p>
  *
  * <p>$Id$</p>
  *
  * <p>Copyright (C) 2002 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://xml.apache.org/">Xalan</a>
+ * <a href="http://xml.apache.org/xalan-j/">Xalan</a>
  * extension to find the intrinsic size of images.</p>
  *
  * <p><b>Change Log:</b></p>
index 58b4d0b596b2f0fa6f6dcd2d620534367f205033..8e76df475310dd623cc638b9cf57370bc5e6284b 100644 (file)
@@ -29,7 +29,7 @@ import org.apache.xml.utils.AttList;
  * <p>Copyright (C) 2000 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://xml.apache.org/xalan/">Xalan</a>
+ * <a href="http://xml.apache.org/xalan-j/">Xalan</a>
  * implementation of some code to adjust CALS Tables to HTML
  * Tables.</p>
  *
@@ -214,7 +214,7 @@ public class Table {
    * </ol>
    *
    * @param context The stylesheet context; supplied automatically by Xalan
-   * @param rtf The result tree fragment containing the colgroup.
+   * @param xalanNI
    *
    * @return The result tree fragment containing the adjusted colgroup.
    *
index 7bbf577dc41c44ece6a9bc57512f59d53a260090..88c9603d512a89876287a5a864571fe449aff03b 100644 (file)
@@ -40,7 +40,7 @@ import javax.xml.transform.Source;
  * <p>Copyright (C) 2001 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://xml.apache.org/xalan/">Xalan</a>
+ * <a href="http://xml.apache.org/xalan-j/">Xalan</a>
  * extension element for inserting text into a result tree.</p>
  *
  * <p><b>Change Log:</b></p>
index 42fd74838df7f25524683960849a905886e5a2c6..053063920b701cc9ea6a8f081f0337ffb515dfce 100644 (file)
@@ -44,7 +44,7 @@ import com.nwalsh.xalan.Params;
  * <p>Copyright (C) 2001 Norman Walsh.</p>
  *
  * <p>This class provides a
- * <a href="http://xml.apache.org/xalan">Xalan</a>
+ * <a href="http://xml.apache.org/xalan-j/">Xalan</a>
  * implementation of two features that would be impractical to
  * implement directly in XSLT: line numbering and callouts.</p>
  *
@@ -151,7 +151,8 @@ public class Verbatim {
    * attributes as the originals, except that 'name' and 'id' attributes
    * are not duplicated.</p>
    *
-   * @param xalanRTF The result tree fragment of the verbatim environment.
+   * @param context
+   * @param xalanNI
    *
    * @return The modified result tree fragment.
    */
@@ -428,19 +429,12 @@ public class Verbatim {
    * <p>Callouts are inserted before the character at the line/column
    * where they are to occur.</p>
    *
+   * @param context
    * @param areaspecNodeSet The source node set that contains the areaspec.
-   * @param xalanRTF The result tree fragment of the verbatim environment.
-   * @param defaultColumn The column for callouts that specify only a line.
-   * @param gPath The path to use for callout graphics.
-   * @param gExt The extension to use for callout graphics.
-   * @param gMax The largest number that can be represented as a graphic.
-   * @param useFO Should fo:external-graphics be produced, as opposed to
-   * HTML imgs. This is bogus, the extension should figure it out, but I
-   * haven't figured out how to do that yet.
+   * @param xalanNI
    *
    * @return The modified result tree fragment.
    */
-
   public DocumentFragment insertCallouts (ExpressionContext context,
                                          NodeIterator areaspecNodeSet,
                                          NodeIterator xalanNI) {