deweese 2004/01/08 04:05:24 Modified: sources/org/apache/batik/bridge SVGUseElementBridge.java xdocs book.xml faq.xml mail-lists.xml site-book.xml Log: 1) Fixed a memory leak for use references to local elements. 2) Removed references to 'nagoya.apache.org' - now goes to aliases. Revision Changes Path 1.40 +5 -7 xml-batik/sources/org/apache/batik/bridge/SVGUseElementBridge.java Index: SVGUseElementBridge.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/SVGUseElementBridge.java,v retrieving revision 1.39 retrieving revision 1.40 diff -u -r1.39 -r1.40 --- SVGUseElementBridge.java 14 Dec 2003 18:01:11 -0000 1.39 +++ SVGUseElementBridge.java 8 Jan 2004 12:05:24 -0000 1.40 @@ -115,8 +115,7 @@ return null; } - CompositeGraphicsNode gn = buildCompositeGraphicsNode(ctx, e, - null, null); + CompositeGraphicsNode gn = buildCompositeGraphicsNode(ctx, e, null); return gn; } @@ -133,8 +132,7 @@ */ public CompositeGraphicsNode buildCompositeGraphicsNode (BridgeContext ctx, Element e, - CompositeGraphicsNode gn, - ReferencedElementMutationListener l) { + CompositeGraphicsNode gn) { // get the referenced element String uri = XLinkSupport.getXLinkHref(e); if (uri.length() == 0) { @@ -413,7 +411,7 @@ // Note that this is way sub-optimal, because multiple changes // to the referenced content will cause multiple updates to the // referencing <use>. However, this provides the desired behavior - buildCompositeGraphicsNode(ctx, e, (CompositeGraphicsNode)node, this); + buildCompositeGraphicsNode(ctx, e, (CompositeGraphicsNode)node); } } @@ -434,7 +432,7 @@ } else if (( XLinkSupport.XLINK_NAMESPACE_URI.equals (evtNode.getNamespaceURI()) ) && SVG_HREF_ATTRIBUTE.equals(evtNode.getLocalName()) ){ - buildCompositeGraphicsNode(ctx, e, (CompositeGraphicsNode)node, l); + buildCompositeGraphicsNode(ctx, e, (CompositeGraphicsNode)node); } } } 1.16 +2 -2 xml-batik/xdocs/book.xml Index: book.xml =================================================================== RCS file: /home/cvs/xml-batik/xdocs/book.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- book.xml 26 Sep 2003 13:39:25 -0000 1.15 +++ book.xml 8 Jan 2004 12:05:24 -0000 1.16 @@ -82,7 +82,7 @@ <!-- Admin / Status --> <!-- ======================= --> <page id="cvs" label="CVS Repository" source="cvs.xml"/> - <external label="Bug Database" href="http://nagoya.apache.org/bugzilla"/> + <external label="Bug Database" href="http://issues.apache.org/bugzilla"/> <separator/> <page id="status" label="Status" source="status.xml" /> <!-- status of the SVG DOM implementation --> 1.39 +2 -2 xml-batik/xdocs/faq.xml Index: faq.xml =================================================================== RCS file: /home/cvs/xml-batik/xdocs/faq.xml,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- faq.xml 26 Sep 2003 10:38:00 -0000 1.38 +++ faq.xml 8 Jan 2004 12:05:24 -0000 1.39 @@ -503,7 +503,7 @@ You can submit bug fixes and patches to the <link href="mailto:[EMAIL PROTECTED]">Batik developers</link> mailing list and you can enter bugs in <link - href="http://nagoya.apache.org/bugzilla/">Bugzilla</link>. + href="http://issues.apache.org/bugzilla/">Bugzilla</link>. </p> </answer> 1.6 +5 -6 xml-batik/xdocs/mail-lists.xml Index: mail-lists.xml =================================================================== RCS file: /home/cvs/xml-batik/xdocs/mail-lists.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- mail-lists.xml 8 Oct 2003 00:28:47 -0000 1.5 +++ mail-lists.xml 8 Jan 2004 12:05:24 -0000 1.6 @@ -30,16 +30,15 @@ mailing list, please first look at the following resources in this order:</p> <ol> <li><link href="faqs.html">Batik FAQs</link></li> - <li><link href="http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED]">Batik-Users Archive</link> - <li><link href="http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED]">Batik-Dev Archive</link> - <li><link href="http://koala.ilog.fr/batik/">Batik mailing lists archives hosted by Koala</link></li> + <li><link href="http://mail-archives.apache.org/eyebrowse/[EMAIL PROTECTED]">Batik-Users Archive</link> + <li><link href="http://mail-archives.apache.org/eyebrowse/[EMAIL PROTECTED]">Batik-Dev Archive</link> </ol> </s1> <s1 title="Batik Users"> <p><link href="mailto:[EMAIL PROTECTED]">Subscribe</link> <link href="mailto:[EMAIL PROTECTED]">Unsubscribe</link> - <link href="http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED]">Archive</link> + <link href="http://mail-archives.apache.org/eyebrowse/[EMAIL PROTECTED]">Archive</link> </p> <p>The general Batik list, for problems using Batik, bug reports... @@ -57,7 +56,7 @@ <s1 title="Batik Dev"> <p><link href="mailto:[EMAIL PROTECTED]">Subscribe</link> <link href="mailto:[EMAIL PROTECTED]">Unsubscribe</link> - <link href="http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED]">Archive</link> + <link href="http://mail-archives.apache.org/eyebrowse/[EMAIL PROTECTED]">Archive</link> </p> <p>This list is for developers <strong>working on</strong> or wanting to work on 1.37 +2 -2 xml-batik/xdocs/site-book.xml Index: site-book.xml =================================================================== RCS file: /home/cvs/xml-batik/xdocs/site-book.xml,v retrieving revision 1.36 retrieving revision 1.37 diff -u -r1.36 -r1.37 --- site-book.xml 26 Sep 2003 10:38:01 -0000 1.36 +++ site-book.xml 8 Jan 2004 12:05:24 -0000 1.37 @@ -82,7 +82,7 @@ <!-- Admin / Status --> <!-- ======================= --> <page id="cvs" label="CVS Repository" source="cvs.xml"/> - <external label="Bug Database" href="http://nagoya.apache.org/bugzilla"/> + <external label="Bug Database" href="http://issues.apache.org/bugzilla"/> <separator/> <page id="status" label="Status" source="status.xml" /> <!-- status of the SVG DOM implementation -->
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]