You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
(1) |
Apr
(15) |
May
(2) |
Jun
(316) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: Mike H. <he...@us...> - 2002-07-19 20:58:17
|
Update of /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook In directory usw-pr-cvs1:/tmp/cvs-serv14351/net/sf/javadocbook Added Files: Transformer.java Log Message: Initital add. --- NEW FILE: Transformer.java --- /* * Transformer.java * * This file is part of Java Docbook. * * Java Docbook is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * Java Docbook is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with Java Docbook; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Copyright 2002, Mike Heath * * Main.java * * Created on June 27, 2002, 2:57 AM * Created by Mike Heath (he...@us...) * $Author: heathm $ * $Date: 2002/07/19 20:58:14 $ * $Revision: 1.1 $ */ package net.sf.javadocbook; import java.io.InputStream; import java.io.OutputStream; /** * The different types of transformers should implement this interface. * * @author he...@us... */ public interface Transformer { /** * This method is invoked to transform a given stream. The stream <code>in</code> is transformed and out put to * stream <code>out</code>. * * @param in - The input to be transformed. * @param out - The transformed input stream. */ public void transform(InputStream in, OutputStream out); } /* * $Log: Transformer.java,v $ * Revision 1.1 2002/07/19 20:58:14 heathm * Initital add. * */ |
From: Mike H. <he...@us...> - 2002-07-08 23:40:15
|
Update of /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook In directory usw-pr-cvs1:/tmp/cvs-serv6376/net/sf/javadocbook Modified Files: Main.java Log Message: Applied patch (578545) adding an option for using a custom XSL file instead of an included Docbook XSL file. Index: Main.java =================================================================== RCS file: /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook/Main.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Main.java 8 Jul 2002 22:55:56 -0000 1.15 --- Main.java 8 Jul 2002 23:40:12 -0000 1.16 *************** *** 38,41 **** --- 38,42 ---- import java.io.IOException; import java.io.OutputStream; + import java.net.MalformedURLException; import java.net.URL; *************** *** 134,137 **** --- 135,140 ---- options.addOption('h', "help", false, "Shows this help message."); options.addOption('o', "output", true, "File to write output to. If omitted, standard output is used."); + options.addOption('s', "XSL", true, "Specifies a custom XSL Style Sheet to use in the transformation" + + "--ty[e is ignored if this options is used."); options.addOption('t', "type", true, "Specifies type of output to be created. Possible values are: " + PARAM_FO + ", " + PARAM_HTML + " or " + PARAM_XHTML); *************** *** 148,161 **** String output = cmds.getOptionValue('o'); ! String styleSheet = null; ! String type = cmds.getOptionValue('t', PARAM_HTML); ! if (type.equalsIgnoreCase(PARAM_FO)) { ! styleSheet = FO_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_HTML)) { ! styleSheet = HTML_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_XHTML)) { ! styleSheet = XHTML_STYLE_SHEET; } else { ! argumentError("Unrecognized type: " + type, 2); } --- 151,186 ---- String output = cmds.getOptionValue('o'); ! URL styleSheetURL = null; ! if (cmds.hasOption('s')) { ! String fileName = cmds.getOptionValue('s'); ! File f = new File(fileName); ! if (!f.exists()) { ! System.err.println("XSL file '" + fileName + "' does not exist."); ! System.exit(1); ! } ! try { ! styleSheetURL = f.toURL(); ! } catch (MalformedURLException e) { ! System.err.println(e.getLocalizedMessage()); ! System.exit(1); ! } } else { ! String styleSheet = null; ! String type = cmds.getOptionValue('t', PARAM_HTML); ! if (type.equalsIgnoreCase(PARAM_FO)) { ! styleSheet = FO_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_HTML)) { ! styleSheet = HTML_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_XHTML)) { ! styleSheet = XHTML_STYLE_SHEET; ! } else { ! argumentError("Unrecognized type: " + type, 2); ! } ! // Use a URL to get the stylesheet since the stylesheet will be stored in a .jar ! styleSheetURL = new Object().getClass().getResource(styleSheet); ! if (styleSheetURL == null) { ! System.err.println("Could not find style sheet " + styleSheet); ! System.exit(1); ! } } *************** *** 187,194 **** return; } - // Use a URL to get the stylesheet since the stylesheet will be stored in a .jar - URL styleSheetURL = new Object().getClass().getResource(styleSheet); - if (styleSheetURL == null) - throw new RuntimeException("Could not find style sheet: " + styleSheet); transform(in, out, styleSheetURL); --- 212,215 ---- *************** *** 204,207 **** --- 225,231 ---- /* * $Log$ + * Revision 1.16 2002/07/08 23:40:12 heathm + * Applied patch (578545) adding an option for using a custom XSL file instead of an included Docbook XSL file. + * * Revision 1.15 2002/07/08 22:55:56 heathm * Merged my changes with Devin's patch. |
From: Mike H. <he...@us...> - 2002-07-08 22:55:59
|
Update of /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook In directory usw-pr-cvs1:/tmp/cvs-serv25549/net/sf/javadocbook Modified Files: Main.java Log Message: Merged my changes with Devin's patch. Index: Main.java =================================================================== RCS file: /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook/Main.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Main.java 8 Jul 2002 22:40:08 -0000 1.14 --- Main.java 8 Jul 2002 22:55:56 -0000 1.15 *************** *** 18,22 **** * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * Copyright 2002, Mike Heath * * Main.java --- 18,22 ---- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * Copyright 2002, Mike Heath, Devin Weaver * * Main.java *************** *** 39,42 **** --- 39,43 ---- import java.io.OutputStream; import java.net.URL; + import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; *************** *** 51,63 **** import org.w3c.dom.Document; import org.xml.sax.SAXException; ! import org.apache.commons.cli.Options; import org.apache.commons.cli.CommandLine; - import org.apache.commons.cli.ParseException; import org.apache.commons.cli.HelpFormatter; /** * Does a simple XSLT transform. * ! * @author he...@us... * @version $Revision$ */ --- 52,66 ---- import org.w3c.dom.Document; import org.xml.sax.SAXException; ! import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.HelpFormatter; + import org.apache.commons.cli.Options; + import org.apache.commons.cli.ParseException; /** * Does a simple XSLT transform. * ! * @author Mike Heath (heathm at users.sourceforge.net) ! * @author Devin Weaver (ktohg at users.sourceforge.net) * @version $Revision$ */ *************** *** 111,114 **** --- 114,123 ---- } + public static void showUsage(Options options) { + HelpFormatter help = new HelpFormatter(); + help.printHelp("java -jar javadocbook.jar [options] docbook_file", "Where options are:", options, + "For more information go to: http://sourceforge.net/projects/javadocbook/"); + } + private static void argumentError( String message, int error_code ) { System.out.println(message); *************** *** 117,220 **** } - private static void showUsage( Options opts ) { - HelpFormatter help = new HelpFormatter(); - help.printHelp("java -jar javadocbook.jar [options] xml_data", - "\nwhere options include:", opts, ""); - // This footer was easier to format manually then through HelpFormatter. - System.out.println(); - System.out.println("Known types:"); - System.out.println(PARAM_FO + "\t- Transforms Docbook XML to FO XML (for PDF converstion)"); - System.out.println(PARAM_HTML + "\t- Transforms Docbook XML to HTML"); - System.out.println(PARAM_XHTML + "\t- Transforms Docbook XML to XHTML"); - System.out.println(); - System.out.println("For more information visit the project homepage at:"); - // This really should be http://javadocbook.sourceforge.net/ when the site gets updated. - System.out.println("http://sourceforge.net/projects/javadocbook/"); - /* Old links - System.out.println("For more information go to: http://sourceforge.net/projects/javadocbook/"); - System.out.println("To log a bug, go to: http://sourceforge.net/tracker/?func=add&group_id=47837&atid=451047"); - System.out.println("To request a feature, go to: http://sourceforge.net/tracker/?func=add&group_id=47837&atid=451050"); - */ - } - public static void main(String args[]) { - String xmlData = null; - String output = null; - boolean force = false; - String styleSheet = HTML_STYLE_SHEET; - - Options options = new Options(); - options.addOption('t', "type", true, "Specifies the type of transform to be done."); - options.addOption('o', "output", true, "Specifies the output file to send the output to. " - + "If no file is specified standard output is used."); - options.addOption('f', "force", false, "Force recreation of output file. If the output file exists and is " - + "newer than the source XML file. Default is not to overwrite file."); - options.addOption('h', "help", false, "Displays this help message."); - // Option defaults are set above. try { ! CommandLine cmd = options.parse(args, true); ! // See what options we have ! if (cmd.hasOption('h')) { showUsage(options); ! System.exit(127); ! } ! if (cmd.hasOption('t')) { ! String type = cmd.getOptionValue('t'); ! if (type.equalsIgnoreCase(PARAM_FO)) { ! styleSheet = FO_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_HTML)) { ! styleSheet = HTML_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_XHTML)) { ! styleSheet = XHTML_STYLE_SHEET; ! } else { ! // User might need help here. ! argumentError("Unknown type '" + type + "'.", 2); ! } ! type = null; } ! if (cmd.hasOption('o')) { ! output = cmd.getOptionValue('o'); } ! if (cmd.hasOption('f')) { ! force = true; } ! if (cmd.getArgs().length == 1) { ! xmlData = cmd.getArgs()[0]; ! } else { ! argumentError("Incorrect number of arguments.", 2); } } catch (ParseException e) { argumentError(e.getMessage(), 2); - } - - InputStream in; - OutputStream out; - try { - File xmlFile = new File(xmlData); - in = new FileInputStream(xmlFile); - if (output == null) { - out = System.out; - } else { - File outFile = new File(output); - // Check to see if output file is newer than xml data and if so, do nothing. - if (!force && outFile.isFile() && outFile.lastModified() > xmlFile.lastModified()) - return; - out = new FileOutputStream(outFile); - } - } catch (FileNotFoundException e) { - System.err.println(e.getLocalizedMessage()); - return; - } - // Use a URL to get the stylesheet since the stylesheet will be stored in a .jar - URL styleSheetURL = new Object().getClass().getResource(styleSheet); - if (styleSheetURL == null) - throw new RuntimeException("Could not find style sheet: " + styleSheet); - - try { - transform(in, out, styleSheetURL); } catch (Exception e) { e.printStackTrace(); - System.err.println(); - System.err.println("Make sure you have JAXP installed and that it's in your class path."); } } --- 126,201 ---- } public static void main(String args[]) { try { ! Options options = new Options(); ! options.addOption('f', "force", false, "Force recreation of output file. If the output file exists and " + ! "is newer than the source XML file, nothing happens unless this " + ! "option is used."); ! options.addOption('h', "help", false, "Shows this help message."); ! options.addOption('o', "output", true, "File to write output to. If omitted, standard output is used."); ! options.addOption('t', "type", true, "Specifies type of output to be created. Possible values are: " + ! PARAM_FO + ", " + PARAM_HTML + " or " + PARAM_XHTML); ! ! CommandLine cmds = options.parse(args); ! ! boolean force = cmds.hasOption('f'); ! ! if (cmds.hasOption('h')) { showUsage(options); ! return; } ! ! String output = cmds.getOptionValue('o'); ! ! String styleSheet = null; ! String type = cmds.getOptionValue('t', PARAM_HTML); ! if (type.equalsIgnoreCase(PARAM_FO)) { ! styleSheet = FO_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_HTML)) { ! styleSheet = HTML_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_XHTML)) { ! styleSheet = XHTML_STYLE_SHEET; ! } else { ! argumentError("Unrecognized type: " + type, 2); } ! ! String docbookFile = null; ! try { ! docbookFile = cmds.getArgs()[0]; ! } catch (ArrayIndexOutOfBoundsException e) {} ! if (docbookFile == null) { ! argumentError("Incorreect number of arguments", 2); ! return; } ! ! InputStream in; ! OutputStream out; ! try { ! File xmlFile = new File(docbookFile); ! in = new FileInputStream(xmlFile); ! if (output == null) { ! out = System.out; ! } else { ! File outFile = new File(output); ! // Check to see if output file is newer than xml data and if so, do nothing. ! if (!force && outFile.isFile() && outFile.lastModified() > xmlFile.lastModified()) ! return; ! out = new FileOutputStream(outFile); ! } ! } catch (FileNotFoundException e) { ! System.err.println(e.getLocalizedMessage()); ! return; } + // Use a URL to get the stylesheet since the stylesheet will be stored in a .jar + URL styleSheetURL = new Object().getClass().getResource(styleSheet); + if (styleSheetURL == null) + throw new RuntimeException("Could not find style sheet: " + styleSheet); + + transform(in, out, styleSheetURL); } catch (ParseException e) { argumentError(e.getMessage(), 2); } catch (Exception e) { + System.err.println(e.getMessage()); e.printStackTrace(); } } *************** *** 223,226 **** --- 204,210 ---- /* * $Log$ + * Revision 1.15 2002/07/08 22:55:56 heathm + * Merged my changes with Devin's patch. + * * Revision 1.14 2002/07/08 22:40:08 heathm * Applied Main.java.diff patch from patch 578288. |
From: Mike H. <he...@us...> - 2002-07-08 22:40:11
|
Update of /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook In directory usw-pr-cvs1:/tmp/cvs-serv20953 Modified Files: Main.java Log Message: Applied Main.java.diff patch from patch 578288. Index: Main.java =================================================================== RCS file: /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook/Main.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Main.java 22 Jun 2002 19:00:11 -0000 1.13 --- Main.java 8 Jul 2002 22:40:08 -0000 1.14 *************** *** 52,55 **** --- 52,58 ---- import org.xml.sax.SAXException; import org.apache.commons.cli.Options; + import org.apache.commons.cli.CommandLine; + import org.apache.commons.cli.ParseException; + import org.apache.commons.cli.HelpFormatter; /** *************** *** 67,71 **** public static String PARAM_XHTML = "XHTML"; ! public static void transform(InputStream in, OutputStream out, URL styleSheetURL) { DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance(); docFactory.setValidating(false); --- 70,74 ---- public static String PARAM_XHTML = "XHTML"; ! private static void transform(InputStream in, OutputStream out, URL styleSheetURL) { DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance(); docFactory.setValidating(false); *************** *** 108,131 **** } ! public static void showUsage() { ! System.out.println("Usage: java -jar javadocbook.jar [options] xml_data"); ! System.out.println(); ! System.out.println("where options include:"); ! System.out.println("-t type\t\tSpecifies the type of transform to be done. Possible"); ! System.out.println("\t\tare:"); ! System.out.println("\t\t" + PARAM_FO +" - Transforms Docbook XML to FO XML (for PDF converstion)"); ! System.out.println("\t\t" + PARAM_HTML + " - Transforms Docbook XML to HTML"); ! System.out.println("\t\t" + PARAM_XHTML + " - Transforms Docbook XML to XHTML"); ! System.out.println(); ! System.out.println("-o filename\tSpecifies the output file to send the output to. If"); ! System.out.println("\t\tno file is specified, the standard output is used."); System.out.println(); ! System.out.println("-f\t\tForce recreation of output file. If the output file exists"); ! System.out.println("\t\tand is newer than the source XML file, nothing happens unless"); ! System.out.println("\t\tthis option is used."); System.out.println(); System.out.println("For more information go to: http://sourceforge.net/projects/javadocbook/"); System.out.println("To log a bug, go to: http://sourceforge.net/tracker/?func=add&group_id=47837&atid=451047"); System.out.println("To request a feature, go to: http://sourceforge.net/tracker/?func=add&group_id=47837&atid=451050"); } --- 111,139 ---- } ! private static void argumentError( String message, int error_code ) { ! System.out.println(message); ! System.out.println("Use option --help for command line help."); ! System.exit(error_code); ! } ! ! private static void showUsage( Options opts ) { ! HelpFormatter help = new HelpFormatter(); ! help.printHelp("java -jar javadocbook.jar [options] xml_data", ! "\nwhere options include:", opts, ""); ! // This footer was easier to format manually then through HelpFormatter. System.out.println(); ! System.out.println("Known types:"); ! System.out.println(PARAM_FO + "\t- Transforms Docbook XML to FO XML (for PDF converstion)"); ! System.out.println(PARAM_HTML + "\t- Transforms Docbook XML to HTML"); ! System.out.println(PARAM_XHTML + "\t- Transforms Docbook XML to XHTML"); System.out.println(); + System.out.println("For more information visit the project homepage at:"); + // This really should be http://javadocbook.sourceforge.net/ when the site gets updated. + System.out.println("http://sourceforge.net/projects/javadocbook/"); + /* Old links System.out.println("For more information go to: http://sourceforge.net/projects/javadocbook/"); System.out.println("To log a bug, go to: http://sourceforge.net/tracker/?func=add&group_id=47837&atid=451047"); System.out.println("To request a feature, go to: http://sourceforge.net/tracker/?func=add&group_id=47837&atid=451050"); + */ } *************** *** 136,189 **** String styleSheet = HTML_STYLE_SHEET; ! /* try { ! // Parse through command line options. ! for(int i = 0; i < args.length; i++) { ! if (args[i].charAt(0) == '-') { ! if (args[i].equals("-o")) { ! i++; ! output = args[i]; ! } else if (args[i].equals("-f")) { ! force = true; ! } else if (args[i].equals("-t")) { ! // Parse through types ! String type = args[++i]; ! if (type.equals(PARAM_FO)) { ! styleSheet = FO_STYLE_SHEET; ! } else if (type.equals(PARAM_HTML)) { ! styleSheet = HTML_STYLE_SHEET; ! } else if (type.equals(PARAM_XHTML)) { ! styleSheet = XHTML_STYLE_SHEET; ! } else { ! // If specified type is not found, break out. ! throw new Exception(); ! } ! } else { ! // If specified option is not found, break out. ! throw new Exception(); ! } } else { ! if (xmlData == null) { ! xmlData = args[i]; ! } else { ! throw new Exception(); ! } } } ! if (xmlData == null) { ! throw new Exception(); } ! } catch (Exception e) { ! showUsage(); ! return; } - */ - - Options options = new Options(); - options.addOption('t', "type", true, "Possible types, list them."); - options.addOption('o', "output", true, "File to write output to."); - options.addOption('f', "force", false, "Force recreation of output file. If the output file exists and is" - + "newer than the source XML file, nothing happens unless this option is" - + "used."); - options.addOption( InputStream in; --- 144,190 ---- String styleSheet = HTML_STYLE_SHEET; ! Options options = new Options(); ! options.addOption('t', "type", true, "Specifies the type of transform to be done."); ! options.addOption('o', "output", true, "Specifies the output file to send the output to. " ! + "If no file is specified standard output is used."); ! options.addOption('f', "force", false, "Force recreation of output file. If the output file exists and is " ! + "newer than the source XML file. Default is not to overwrite file."); ! options.addOption('h', "help", false, "Displays this help message."); ! // Option defaults are set above. ! try { ! CommandLine cmd = options.parse(args, true); ! // See what options we have ! if (cmd.hasOption('h')) { ! showUsage(options); ! System.exit(127); ! } ! if (cmd.hasOption('t')) { ! String type = cmd.getOptionValue('t'); ! if (type.equalsIgnoreCase(PARAM_FO)) { ! styleSheet = FO_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_HTML)) { ! styleSheet = HTML_STYLE_SHEET; ! } else if (type.equalsIgnoreCase(PARAM_XHTML)) { ! styleSheet = XHTML_STYLE_SHEET; } else { ! // User might need help here. ! argumentError("Unknown type '" + type + "'.", 2); } + type = null; } ! if (cmd.hasOption('o')) { ! output = cmd.getOptionValue('o'); } ! if (cmd.hasOption('f')) { ! force = true; ! } ! if (cmd.getArgs().length == 1) { ! xmlData = cmd.getArgs()[0]; ! } else { ! argumentError("Incorrect number of arguments.", 2); ! } ! } catch (ParseException e) { ! argumentError(e.getMessage(), 2); } InputStream in; *************** *** 222,225 **** --- 223,229 ---- /* * $Log$ + * Revision 1.14 2002/07/08 22:40:08 heathm + * Applied Main.java.diff patch from patch 578288. + * * Revision 1.13 2002/06/22 19:00:11 heathm * In the middle of converting over to use Jakarta Commons CLI. *************** *** 261,263 **** * Added GPL notice and a CVS log tag at the bottom of the file. * ! */ \ No newline at end of file --- 265,267 ---- * Added GPL notice and a CVS log tag at the bottom of the file. * ! */ |
From: Mike H. <he...@us...> - 2002-06-22 19:01:08
|
Update of /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook In directory usw-pr-cvs1:/tmp/cvs-serv14283 Added Files: Docbook.java Log Message: Initial add. VERY rough Ant task. --- NEW FILE: Docbook.java --- /* * Docbook.java * * Created on June 17, 2002, 2:59 PM */ package net.sf.javadocbook; // IMPORTANT! You may need to mount ant.jar before this class will // compile. So mount the JAR modules/ext/ant.jar (NOT modules/ant.jar) // from your IDE installation directory in your Filesystems before // continuing to ensure that it is in your classpath. import org.apache.tools.ant.*; import org.apache.tools.ant.types.*; /** * @author heathm */ public class Docbook extends Task { /* For a simple option: private boolean opt; public void setOpt(boolean b) { opt = b; } // <customtask opt="true"/> */ /* For a simple property based on a string: private String myprop; public void setMyprop(String s) { myprop = s; } // <customtask myprop="some text here"/> */ /* For a simple property based on a file: private File myfile; public void setMyfile(File f) { // Note: f will automatically be absolute (resolved from project basedir). myfile = f; } // <customtask myfile="foo.txt"/> */ /* Custom nested elements: public static class Nestme { String val; // accessible from execute() public void setVal(String s) { val = s; } } private List nestmes = new LinkedList(); // List<Nestme> public Nestme createNestme() { Nestme n = new Nestme(); nestmes.add(n); return n; } // Or: public void addNestme(Nestme n) { nestmes.add(n); } // <customtask> // <nestme val="something"/> // </customtask> */ /* To add embedded filesets: private List filesets = new LinkedList(); // List<FileSet> public void addFileset(FileSet fs) { filesets.add(fs); } // <customtask> // <fileset dir="foo"> // <include name="*.txt"/> // </fileset> // </customtask> // In execute() you can do: Iterator it = filesets.iterator(); while (it.hasNext()) { FileSet fs = (FileSet)it.next(); DirectoryScanner ds = fs.getDirectoryScanner(project); File basedir = ds.getBasedir(); String[] files = ds.getIncludedFiles(); // process them... } */ /* For nested text: private StringBuffer text; public void addText(String t) { t = t.trim(); if (text == null) { text = new StringBuffer(t); } else { text.append(t); } } // <customtask> // Some text... // </customtask> */ /* Some sort of path (like classpath or similar): private Path path; public void setPath(Path p) { if (path == null) { path = p; } else { path.append(p); } } public Path createPath () { if (path == null) { path = new Path(project); } return path.createPath(); } public void setPathRef(Reference r) { createPath().setRefid(r); } // <customtask path="foo:bar"/> // <customtask> // <path> // <pathelement location="foo"/> // </path> // </customtask> // Etc. */ /* One of a fixed set of choices: public static class FooBieBletch extends EnumeratedAttribute { public String[] getValues() { return new String[] {"foo", "bie", "bletch"}; } } private String mode = "foo"; public void setMode(FooBieBletch m) { mode = m.getValue(); } // <customtask mode="bletch"/> */ public void execute() throws BuildException { // What the task actually does: // WRITEME // To log something: // log("Some message"); // log("Serious message", Project.MSG_WARN); // log("Minor message", Project.MSG_VERBOSE); // To signal an error: // throw new BuildException("Problem", location); // throw new BuildException(someThrowable, location); // throw new BuildException("Problem", someThrowable, location); // You can call other tasks too: // Zip zip = (Zip)project.createTask("zip"); // zip.setZipfile(zipFile); // FileSet fs = new FileSet(); // fs.setDir(baseDir); // zip.addFileset(fs); // zip.init(); // zip.setLocation(location); // zip.execute(); } } |
From: Mike H. <he...@us...> - 2002-06-22 19:00:14
|
Update of /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook In directory usw-pr-cvs1:/tmp/cvs-serv13884 Modified Files: Main.java Log Message: In the middle of converting over to use Jakarta Commons CLI. Index: Main.java =================================================================== RCS file: /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook/Main.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Main.java 28 May 2002 16:10:56 -0000 1.12 --- Main.java 22 Jun 2002 19:00:11 -0000 1.13 *************** *** 51,55 **** import org.w3c.dom.Document; import org.xml.sax.SAXException; ! /** --- 51,55 ---- import org.w3c.dom.Document; import org.xml.sax.SAXException; ! import org.apache.commons.cli.Options; /** *************** *** 136,140 **** String styleSheet = HTML_STYLE_SHEET; ! try { // Parse through command line options. for(int i = 0; i < args.length; i++) { --- 136,140 ---- String styleSheet = HTML_STYLE_SHEET; ! /* try { // Parse through command line options. for(int i = 0; i < args.length; i++) { *************** *** 177,180 **** --- 177,189 ---- return; } + */ + + Options options = new Options(); + options.addOption('t', "type", true, "Possible types, list them."); + options.addOption('o', "output", true, "File to write output to."); + options.addOption('f', "force", false, "Force recreation of output file. If the output file exists and is" + + "newer than the source XML file, nothing happens unless this option is" + + "used."); + options.addOption( InputStream in; *************** *** 213,216 **** --- 222,228 ---- /* * $Log$ + * Revision 1.13 2002/06/22 19:00:11 heathm + * In the middle of converting over to use Jakarta Commons CLI. + * * Revision 1.12 2002/05/28 16:10:56 heathm * [560292] Added friendly error message when a file is not found. |
From: Mike H. <he...@us...> - 2002-06-22 18:59:08
|
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/commons/cli In directory usw-pr-cvs1:/tmp/cvs-serv13740 Added Files: overview.html package.html Log Message: Initial add. --- NEW FILE: overview.html --- <body> <p>Commons CLI -- version ##VERSION## (##QUALITY##)</p> <p>The commons-cli package aides in parsing command-line arguments.</p> <p>Allow command-line arguments to be parsed against a descriptor of valid options (long and short), potentially with arguments.</p> <p>command-line arguments may be of the typical <code>String[]</code> form, but also may be a <code>java.util.List</code>. Indexes allow for parsing only a portion of the command-line. Also, functionality for parsing the command-line in phases is built in, allowing for 'cvs-style' command-lines, where some global options are specified before a 'command' argument, and command-specific options are specified after the command argument: <code> <pre> myApp -p <port> command -p <printer> </pre> </code> <p>The homepage for the project is <a href="http://jakarta.apache.org/commons/">jakarta commons/</a> </body> --- NEW FILE: package.html --- <body> <p>Commons CLI -- version ##VERSION## (##QUALITY##)</p> </body> |
From: Mike H. <he...@us...> - 2002-06-22 18:57:08
|
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/commons/cli In directory usw-pr-cvs1:/tmp/cvs-serv13233 Added Files: AlreadySelectedException.class CommandLine.class HelpFormatter$1.class HelpFormatter$StringBufferComparator.class HelpFormatter.class MissingArgumentException.class MissingOptionException.class Option.class OptionGroup.class Options.class ParseException.class UnrecognizedOptionException.class Log Message: Initial add of Apache Jakarta Commans Command Line Interface. --- NEW FILE: AlreadySelectedException.class --- Êþº¾ SourceFile --- NEW FILE: CommandLine.class --- Êþº¾ getArgList SourceFile --- NEW FILE: HelpFormatter$1.class --- Êþº¾ SourceFile --- NEW FILE: HelpFormatter$StringBufferComparator.class --- Êþº¾ SourceFile --- NEW FILE: HelpFormatter.class --- Êþº¾ Exceptions printUsage prefixList SourceFile getOptions hasLongOpt getLongOpt µ -¶ -¶ ¹ ¹ » ¹ ¶ ÿÞ¤ ÿÛ+¶ +¶ --- NEW FILE: MissingArgumentException.class --- Êþº¾ SourceFile --- NEW FILE: MissingOptionException.class --- Êþº¾ SourceFile --- NEW FILE: Option.class --- Êþº¾ getLongOpt hasLongOpt isRequired SourceFile [ option: µ +¶ *´ --- NEW FILE: OptionGroup.class --- Êþº¾ getOptions Exceptions SourceFile ¶ W+¶ +¶ --- NEW FILE: Options.class --- Êþº¾ _shortOpts Exceptions eatTheRest getOptions SourceFile ] [ long 4 startsWith isRequired hasLongOpt getLongOpt ± -+¹ *++¾¶ *++¾¶ ,¹ ,¹ ,¶ - ¹ --- NEW FILE: ParseException.class --- Êþº¾ SourceFile --- NEW FILE: UnrecognizedOptionException.class --- Êþº¾ SourceFile |
From: Mike H. <he...@us...> - 2002-06-22 18:55:58
|
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/commons/cli In directory usw-pr-cvs1:/tmp/cvs-serv13005/cli Log Message: Directory /cvsroot/javadocbook/javadocbook/lib/org/apache/commons/cli added to the repository |
From: Mike H. <he...@us...> - 2002-06-22 18:55:05
|
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/commons In directory usw-pr-cvs1:/tmp/cvs-serv12689/commons Log Message: Directory /cvsroot/javadocbook/javadocbook/lib/org/apache/commons added to the repository |
From: Mike H. <he...@us...> - 2002-06-15 01:03:01
|
Update of /cvsroot/javadocbook/javadocbook/docs/src In directory usw-pr-cvs1:/tmp/cvs-serv21416 Modified Files: JavaDocbook.docbook Log Message: Removed requirement for JAXP with JDK 1.3. Index: JavaDocbook.docbook =================================================================== RCS file: /cvsroot/javadocbook/javadocbook/docs/src/JavaDocbook.docbook,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** JavaDocbook.docbook 15 Apr 2002 16:49:19 -0000 1.2 --- JavaDocbook.docbook 15 Jun 2002 01:02:58 -0000 1.3 *************** *** 32,36 **** <sect1> <title>Requirements for &jdt;</title> ! <para>The only requirement for &jdt; are that you have Java JDK 1.3 or later and JAXP installed properly. Installing these is beyond the scope of this book.</para> </sect1> <sect1> --- 32,36 ---- <sect1> <title>Requirements for &jdt;</title> ! <para>The only requirement for &jdt; is that you have Java JDK 1.3 or later installed on your machine. &jdt; comes packaged with Xalan and Crimson so you don't need to worry about install any XML libraries.</para> </sect1> <sect1> *************** *** 65,68 **** --- 65,71 ---- <literallayout> $Log$ + Revision 1.3 2002/06/15 01:02:58 heathm + Removed requirement for JAXP with JDK 1.3. + Revision 1.2 2002/04/15 16:49:19 heathm Fixed XML bug. |
From: Mike H. <he...@us...> - 2002-06-15 00:29:21
|
Update of /cvsroot/javadocbook/javadocbook/lib/META-INF In directory usw-pr-cvs1:/tmp/cvs-serv13008 Removed Files: MANIFEST.MF Log Message: Not needed. --- MANIFEST.MF DELETED --- |
From: Mike H. <he...@us...> - 2002-06-15 00:15:18
|
Update of /cvsroot/javadocbook/javadocbook In directory usw-pr-cvs1:/tmp/cvs-serv10687 Modified Files: build.xml Log Message: Added inclusion of xalan and crimson to javadocbook.jar Index: build.xml =================================================================== RCS file: /cvsroot/javadocbook/javadocbook/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** build.xml 14 Jun 2002 23:10:13 -0000 1.6 --- build.xml 15 Jun 2002 00:15:13 -0000 1.7 *************** *** 33,36 **** --- 33,37 ---- <property name="classes_dir" value="classes" /> <property name="sources_dir" value="src" /> + <property name="lib_dir" value="lib" /> <property name="jar_file" value="javadocbook.jar" /> <property name="manifest_file" value="${sources_dir}/manifest.txt" /> *************** *** 48,51 **** --- 49,53 ---- <fileset dir="${classes_dir}"/> <fileset dir="${docbook_xsl_dir}/${docbook_version}" /> + <fileset dir="${lib_dir}" /> </jar> </target> *************** *** 63,66 **** --- 65,71 ---- <!-- $Log$ + Revision 1.7 2002/06/15 00:15:13 heathm + Added inclusion of xalan and crimson to javadocbook.jar + Revision 1.6 2002/06/14 23:10:13 heathm Upgraded to 1.51.1 of the Docbook XSL files. |
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/xpath/axes In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/apache/xpath/axes Added Files: AncestorOrSelfWalker.class AncestorWalker.class AttributeIterator.class AttributeWalker.class AttributeWalkerOneStep.class AxesWalker.class ChildIterator.class ChildTestIterator.class ChildWalker.class ChildWalkerMultiStep.class ChildWalkerOneStep.class ContextNodeList.class DescendantIterator.class DescendantOrSelfWalker.class DescendantWalker.class FilterExprWalker.class FollowingSiblingWalker.class FollowingWalker.class LocPathIterator.class NamespaceWalker.class ParentWalker.class PrecedingSiblingWalker.class PrecedingWalker.class PredicatedNodeTest.class ReverseAxesWalker.class RootWalker.class RootWalkerMultiStep.class SelfWalker.class SelfWalkerOneStep.class SubContextList.class UnionPathIterator.class WalkerFactory.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: AncestorOrSelfWalker.class --- Êþº¾ SourceFile ± --- NEW FILE: AncestorWalker.class --- Êþº¾ Exceptions SourceFile firstChild *· L**´ --- NEW FILE: AttributeIterator.class --- Êþº¾ Exceptions SourceFile acceptNode addElement getLastPos savedStart whatToShow *· --- NEW FILE: AttributeWalker.class --- Êþº¾ SourceFile firstChild *´ --- NEW FILE: AttributeWalkerOneStep.class --- Êþº¾ SourceFile acceptNode ± --- NEW FILE: AxesWalker.class --- Êþº¾ ¼!¿ !!!! Error! Setting the root of a walker to null!!! Exceptions SourceFile acceptNode addElement cloneOwner firstChild getLastPos getWaiting m_stepType parentNode prevWalker printDebug testWalker c `¤ *· ä) {& » ä) ,· L » ä) » ä) 8 ¶ --- NEW FILE: ChildIterator.class --- Êþº¾ Exceptions SourceFile addElement --- NEW FILE: ChildTestIterator.class --- Êþº¾ Exceptions SourceFile acceptNode addElement savedStart whatToShow --- NEW FILE: ChildWalker.class --- Êþº¾ SourceFile firstChild ¬ --- NEW FILE: ChildWalkerMultiStep.class --- Êþº¾ SourceFile acceptNode ± --- NEW FILE: ChildWalkerOneStep.class --- Êþº¾ SourceFile acceptNode *´ --- NEW FILE: ContextNodeList.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: DescendantIterator.class --- Êþº¾ Exceptions SourceFile acceptNode addElement m_fromRoot savedStart whatToShow *´ § Ç § ÆÿÎ L+Çÿ¢* µ --- NEW FILE: DescendantOrSelfWalker.class --- Êþº¾ SourceFile firstChild --- NEW FILE: DescendantWalker.class --- Êþº¾ SourceFile firstChild parentNode --- NEW FILE: FilterExprWalker.class --- Êþº¾ Exceptions SourceFile acceptNode getMessage savedStart ¹ --- NEW FILE: FollowingSiblingWalker.class --- Êþº¾ SourceFile --- NEW FILE: FollowingWalker.class --- Êþº¾ SourceFile firstChild nextParent parentNode *» --- NEW FILE: LocPathIterator.class --- Êþº¾ Exceptions SourceFile addElement getContext getLastPos getWaiting m_analysis savedStart ä : *´ d Y· --- NEW FILE: NamespaceWalker.class --- Êþº¾ Exceptions SourceFile firstChild *µ L*+¶ --- NEW FILE: ParentWalker.class --- Êþº¾ SourceFile firstChild *´ *µ --- NEW FILE: PrecedingSiblingWalker.class --- Êþº¾ SourceFile --- NEW FILE: PrecedingWalker.class --- Êþº¾ SourceFile firstChild parentNode ± --- NEW FILE: PredicatedNodeTest.class --- Êþº¾ Exceptions SCORE_NONE SourceFile acceptNode getLastPos getMessage *· >¨ Y¶ à µ ¨ ¶ ¶ ¶ *¼ µ --- NEW FILE: ReverseAxesWalker.class --- Êþº¾ SourceFile getLastPos ¶ ¶ --- NEW FILE: RootWalker.class --- Êþº¾ SourceFile firstChild ¶ --- NEW FILE: RootWalkerMultiStep.class --- Êþº¾ SourceFile acceptNode --- NEW FILE: SelfWalker.class --- Êþº¾ SourceFile firstChild ¶ --- NEW FILE: SelfWalkerOneStep.class --- Êþº¾ SourceFile acceptNode --- NEW FILE: SubContextList.class --- Êþº¾ SourceFile getLastPos --- NEW FILE: UnionPathIterator.class --- Êþº¾ Exceptions SourceFile addElement --- NEW FILE: WalkerFactory.class --- Êþº¾ BITS_COUNT BIT_FILTER BIT_PARENT Exceptions SourceFile prevWalker simpleInit whatToShow 6§ 66§ 6*¶ WY[%\(^/_2a9b<dCeFgMhPjWkZmandpkqnsutxvwyzy}¦³· º)ÄÏ Ï `$ :§ |
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/xpath/objects In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/apache/xpath/objects Added Files: Comparator.class EqualComparator.class GreaterThanComparator.class GreaterThanOrEqualComparator.class LessThanComparator.class LessThanOrEqualComparator.class NotEqualComparator.class XBoolean.class XBooleanStatic.class XNodeSet.class XNull.class XNumber.class XObject.class XRTreeFrag$NodeIteratorWrapper.class XRTreeFrag.class XString.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: Comparator.class --- Êþº¾ SourceFile --- NEW FILE: EqualComparator.class --- Êþº¾ SourceFile --- NEW FILE: GreaterThanComparator.class --- Êþº¾ SourceFile --- NEW FILE: GreaterThanOrEqualComparator.class --- Êþº¾ SourceFile --- NEW FILE: LessThanComparator.class --- Êþº¾ SourceFile --- NEW FILE: LessThanOrEqualComparator.class --- Êþº¾ SourceFile --- NEW FILE: NotEqualComparator.class --- Êþº¾ SourceFile --- NEW FILE: XBoolean.class --- Êþº¾ Exceptions SourceFile *· ° --- NEW FILE: XBooleanStatic.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: XNodeSet.class --- Êþº¾ Exceptions SourceFile addElement comparator getMessage . Y· Y· +¶ ¸ Çÿʧ 6§ ¡ÿä¹ , ¶ L§ Y*¶ ,¸ ,¸ --- NEW FILE: XNull.class --- Êþº¾ SourceFile XNull.java ¹ --- NEW FILE: XNumber.class --- Êþº¾ Exceptions SourceFile isInfinite *· °*´ --- NEW FILE: XObject.class --- Êþº¾ #UNKNOWN ( CLASS_NULL Exceptions SourceFile castToType *· ¶ --- NEW FILE: XRTreeFrag$NodeIteratorWrapper.class --- Êþº¾ Exceptions SourceFile *µ --- NEW FILE: XRTreeFrag.class --- Êþº¾ #RTREEFRAG Exceptions SourceFile --- NEW FILE: XString.class --- Êþº¾ Exceptions SourceFile Y· |
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/xpath In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/apache/xpath Added Files: Arg.class DOM2Helper.class DOMHelper.class DOMOrder.class Expression.class FoundIndex.class NodeSet.class SourceTree.class SourceTreeManager.class VariableStack.class WhitespaceStrippingElementMatcher.class XPath.class XPathAPI.class XPathContext.class XPathException.class XPathFactory.class XPathProcessorException.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: Arg.class --- Êþº¾ SourceFile expression isParamVar ± ± *µ *µ ¬ ± --- NEW FILE: DOM2Helper.class --- Êþº¾ Exceptions SourceFile ¹ ¹ --- NEW FILE: DOMHelper.class --- Êþº¾ Deprecated Exceptions SourceFile addElement child1type child2type docBuilder domFactory getDoctype hasFeature parentType prevChild1 prevChild2 startNode1 startNode2 startsWith _ I × ,`¶ :§ :§ · ¶ ¶ 6 6 · +¶ +¹ ¶  6§ ¡ÿñ§ 6§ ¡ÿñ: :§ Ç ¸ *¶ f § ¹ ¡ÿŧ a --- NEW FILE: DOMOrder.class --- Êþº¾ SourceFile --- NEW FILE: Expression.class --- Êþº¾ Exceptions SourceFile fatalError m_slocator ± --- NEW FILE: FoundIndex.class --- Êþº¾ SourceFile --- NEW FILE: NodeSet.class --- Êþº¾ Exceptions SourceFile addElement insertNode removeNode þ6§ þ6§ *¶ *· *¶ --- NEW FILE: SourceTree.class --- Êþº¾ SourceFile --- NEW FILE: SourceTreeManager.class --- Êþº¾ Exceptions SourceFile addElement cachedNode getDOMNode getMessage jaxpParser resolveURI setFeature H --- NEW FILE: VariableStack.class --- Êþº¾ Exceptions SourceFile isParamVar µ --- NEW FILE: WhitespaceStrippingElementMatcher.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: XPath.class --- Êþº¾ Exceptions SourceFile XPath.java exprString fatalError getLocator getMessage m_slocator setLocator sourceNode +¶ ¹ ¿¨ P R --- NEW FILE: XPathAPI.class --- Êþº¾ Exceptions SourceFile ° --- NEW FILE: XPathContext.class --- Êþº¾ Exceptions SourceFile fatalError peepOrNull Y· Y· Y· Y· ½ × +¹ *¶ 5 % *´ 5 *´ 5 --- NEW FILE: XPathException.class --- Êþº¾ SourceFile getMessage ¢ W+¶ M§ ¢ --- NEW FILE: XPathFactory.class --- Êþº¾ SourceFile exprString --- NEW FILE: XPathProcessorException.class --- Êþº¾ SourceFile |
From: Mike H. <he...@us...> - 2002-06-15 00:13:57
|
Update of /cvsroot/javadocbook/javadocbook/lib/org/w3c/dom/range In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/w3c/dom/range Added Files: DocumentRange.class Range.class RangeException.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: DocumentRange.class --- Êþº¾ SourceFile --- NEW FILE: Range.class --- Êþº¾ END_TO_END Exceptions Range.java SourceFile cloneRange insertNode selectNode --- NEW FILE: RangeException.class --- Êþº¾ SourceFile |
From: Mike H. <he...@us...> - 2002-06-15 00:13:57
|
Update of /cvsroot/javadocbook/javadocbook/lib/org/xml/sax/ext In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/xml/sax/ext Added Files: DeclHandler.class LexicalHandler.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: DeclHandler.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: LexicalHandler.class --- Êþº¾ Exceptions SourceFile startCDATA |
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/xpath/patterns In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/apache/xpath/patterns Added Files: AncestorStepPattern.class FunctionPattern.class NodeTest.class NodeTestFilter.class StepPattern.class UnionPattern.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: AncestorStepPattern.class --- Êþº¾ Exceptions SCORE_NONE SourceFile whatToShow N*´ M+¶ ¥ --- NEW FILE: FunctionPattern.class --- Êþº¾ Exceptions SCORE_NONE SourceFile *+µ --- NEW FILE: NodeTest.class --- Êþº¾ Exceptions SCORE_NONE SourceFile addElement whatToShow *· *´ *² ¶ *++¶ *´ *´ *´ *´ *´ *µ --- NEW FILE: NodeTestFilter.class --- Êþº¾ SourceFile --- NEW FILE: StepPattern.class --- Êþº¾ Exceptions SCORE_NONE SourceFile getLastPos getMessage predicates whatToShow *´ ² +¶ ¹ ( * +¶ ¹ *+µ *+µ --- NEW FILE: UnionPattern.class --- Êþº¾ Exceptions SCORE_NONE SourceFile m_patterns :² |
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/xml/utils/synthetic/reflection In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/apache/xml/utils/synthetic/reflection Added Files: Constructor.class EntryPoint.class Field.class Member.class Method.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: Constructor.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: EntryPoint.class --- Êþº¾ Exceptions SourceFile returntype ! +Á ,Á ,¶ ¶ --- NEW FILE: Field.class --- Êþº¾ Exceptions Field.java SourceFile getBoolean setBoolean Y· Y· Y· --- NEW FILE: Member.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Method.class --- Êþº¾ Exceptions SourceFile realmethod returntype |
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/xpath/operations In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/apache/xpath/operations Added Files: And.class Bool.class Div.class Equals.class Gt.class Gte.class Lt.class Lte.class Minus.class Mod.class Mult.class Neg.class NotEquals.class Number.class Operation.class Or.class Plus.class Quo.class String.class UnaryOperation.class Variable.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: And.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Bool.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Div.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Equals.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Gt.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Gte.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Lt.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Lte.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Minus.class --- Êþº¾ Exceptions Minus.java SourceFile --- NEW FILE: Mod.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Mult.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Neg.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: NotEquals.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Number.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Operation.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Or.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Plus.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Quo.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: String.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: UnaryOperation.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: Variable.class --- Êþº¾ Exceptions SourceFile M,° |
From: Mike H. <he...@us...> - 2002-06-15 00:13:56
|
Update of /cvsroot/javadocbook/javadocbook/lib/org/w3c/dom/traversal In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/w3c/dom/traversal Added Files: DocumentTraversal.class NodeFilter.class NodeIterator.class TreeWalker.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: DocumentTraversal.class --- Êþº¾ Exceptions SourceFile whatToShow --- NEW FILE: NodeFilter.class --- Êþº¾ SourceFile acceptNode --- NEW FILE: NodeIterator.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: TreeWalker.class --- Êþº¾ Exceptions SourceFile firstChild parentNode |
Update of /cvsroot/javadocbook/javadocbook/lib/org/xml/sax In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/xml/sax Added Files: AttributeList.class Attributes.class ContentHandler.class DTDHandler.class DocumentHandler.class EntityResolver.class ErrorHandler.class HandlerBase.class InputSource.class Locator.class Parser.class SAXException.class SAXNotRecognizedException.class SAXNotSupportedException.class SAXParseException.class XMLFilter.class XMLReader.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: AttributeList.class --- Êþº¾ Deprecated SourceFile --- NEW FILE: Attributes.class --- Êþº¾ SourceFile --- NEW FILE: ContentHandler.class --- Êþº¾ Exceptions SourceFile characters endElement --- NEW FILE: DTDHandler.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: DocumentHandler.class --- Êþº¾ Deprecated Exceptions SourceFile characters endElement --- NEW FILE: EntityResolver.class --- Êþº¾ Exceptions SourceFile --- NEW FILE: ErrorHandler.class --- Êþº¾ Exceptions SourceFile fatalError --- NEW FILE: HandlerBase.class --- Êþº¾ Deprecated Exceptions SourceFile attributes characters endElement fatalError --- NEW FILE: InputSource.class --- Êþº¾ SourceFile byteStream *· *· *· ± --- NEW FILE: Locator.class --- Êþº¾ SourceFile --- NEW FILE: Parser.class --- Êþº¾ Deprecated Exceptions SourceFile --- NEW FILE: SAXException.class --- Êþº¾ SourceFile getMessage *· --- NEW FILE: SAXNotRecognizedException.class --- Êþº¾ SourceFile --- NEW FILE: SAXNotSupportedException.class --- Êþº¾ SourceFile --- NEW FILE: SAXParseException.class --- Êþº¾ SourceFile lineNumber --- NEW FILE: XMLFilter.class --- Êþº¾ SourceFile --- NEW FILE: XMLReader.class --- Êþº¾ Exceptions SourceFile getFeature setFeature |
From: Mike H. <he...@us...> - 2002-06-15 00:13:56
|
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/xpath/res In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/apache/xpath/res Added Files: XPATHErrorResourceBundle.class XPATHErrorResources.class XPATHErrorResources_en.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: XPATHErrorResourceBundle.class --- Êþº¾ "%(#$& SourceFile ½ SSY ½ SSYI½ --- NEW FILE: XPATHErrorResources.class --- Êþº¾ Éèéêëìíî ËÏÉÖØÚÜ ER_OIERROR Exceptions MAX_OTHERS SourceFile XML_HEADER XSL_HEADER getCountry getDefault 2¿S² 9BCBKLKT&U(T)]3e=mDnFmGvNwPvQ[elnovxy¡¢¡ª«ª³´³¼¡Ä«Ì²Í´ÌµÕ¼Ö¾Õ¿ÞÆßÈÞÉçÐèÒçÓðÚñÜðÝùçîðñ øú û%-#5*6,5->4?6>7G>H@GAPHQJPKYRZTYUb\c^b_kflhkitpurts}z~|}}¡¢¢¤¡¥ª¯²¶³¸²¹»À¼Â»ÃÄÊÅÌÄÍÍ×ÕáÝëåòæôåõñüòþñÿúûú $&'.01'8(:';0B1D0E9L:N9OBVCXBYK`LbKcTmZw[\]^_©`³aºb¼a½cÇdÎeÐdÑfÛgåhïiùjk lm!n+o5p?qIrSs]tguqv{w xyzy{£|ª}¬|~·ÁËÕßéó úü ý --- NEW FILE: XPATHErrorResources_en.class --- Êþº¾ SourceFile |
From: Mike H. <he...@us...> - 2002-06-15 00:13:56
|
Update of /cvsroot/javadocbook/javadocbook/lib/org/apache/xpath/compiler In directory usw-pr-cvs1:/tmp/cvs-serv10082/org/apache/xpath/compiler Added Files: Compiler.class FuncLoader.class FunctionTable.class Keywords.class Lexer.class OpCodes.class OpMap.class PsuedoNames.class XPathDumper.class XPathParser.class Log Message: Initial add of JAXP-1.1 --- NEW FILE: Compiler.class --- Êþº¾ #@ ?,4<51,%!! *"!$2 arguments Exceptions SourceFile endExtFunc fatalError getMessage predicates startOpPos Y-· *¶ H | ~ --- NEW FILE: FuncLoader.class --- Êþº¾ Exceptions SourceFile m_funcName Y+· Y+· Y+· --- NEW FILE: FunctionTable.class --- Êþº¾ Exceptions FUNC_COUNT FUNC_FALSE FUNC_FLOOR FUNC_QNAME FUNC_ROUND FuncConcat FuncNumber FuncString SourceFile » · --- NEW FILE: Keywords.class --- Êþº¾ SourceFile descendant local-name m_keywords · · --- NEW FILE: Lexer.class --- Êþº¾ Exceptions Lexer.java SourceFile addElement isAttrName m_compiler m_keywords posOfNSSep µ N-Æ -¶ µ §j+ ¶ · ¶ 6 § ¢ ¶ `¶ · ¶ 6 § ¢ ¶ `¶ · ¶ · ¶ ] [ `¶ d d¢ d¶ d `¶ 6 6¸ ¸ ¡ü belwz+-./13¥1¨7´:·+º<Æ>Ò<Õ@ÜBèCëFðH÷JûL --- NEW FILE: OpCodes.class --- Êþº¾ OP_LITERAL SourceFile --- NEW FILE: OpMap.class --- Êþº¾ OpMap.java SourceFile µ --- NEW FILE: PsuedoNames.class --- Êþº¾ SourceFile --- NEW FILE: XPathDumper.class --- Êþº¾ SourceFile --- NEW FILE: XPathParser.class --- Êþº¾ = Remaining tokens: ( Exceptions FilterExpr NumberExpr SourceFile StringExpr expression fatalError foundUnion lookbehind nodeTestOp 6 ¤ ¶ ± ¶ V 9 *¶ d * é * ¶ *!¶ *´ i ,¤ X  O*· *2¶ Å ¤ ë -¤ ¡ ~ î Æ *· *¶ ¤ * f *"¶ ý P 3 Ì *· *· >§ N ² |