Patch for DOCTYPE Public ID
Currently, it generates one using
http://castor.exolab.org/mapping.dtd. That returns a
server not found.
Candidates for the new version include:
http://www.castor.org/mapping.dtd
http://castor.codehaus.org/mapping.dtd
Contents of patch file included below:
RCS file:
/cvsroot/castordoclet/castordoclet/src/java/org/castor/doclet/jdo/JDO.java,v
retrieving revision 1.1
diff -u -r1.1 JDO.java
--- JDO.java 2 Jun 2003 21:33:06 -0000 1.1
+++ JDO.java 18 Oct 2006 12:02:15 -0000
@@ -36,7 +36,7 @@
private void initXMLDocument(){
DocType type = new DocType("mapping",
"-//EXOLAB/Castor Mapping DTD Version
1.0//EN",
- "http://castor.exolab.org/mapping.dtd");
+ "http://www.castor.org/mapping.dtd");
Element root = new Element( "mapping" );
xml = new Document( root, type );
patch file for JDO.java