stefano 2003/10/06 09:36:15
Modified: src/java/org/apache/cocoon/serialization LinkSerializer.java
Log:
applying patch 20298
CVS: ----------------------------------------------------------------------
CVS: PR:
CVS: If this change addresses a PR in the problem report tracking
CVS: database, then enter the PR number(s) here.
CVS: Obtained from:
CVS: If this change has been taken from another system, such as NCSA,
CVS: then name the system in this line, otherwise delete it.
CVS: Submitted by:
CVS: If this code has been contributed to Apache by someone else; i.e.,
CVS: they sent us a patch or a new module, then include their name/email
CVS: address here. If this is your work then delete this line.
CVS: Reviewed by:
CVS: If we are doing pre-commit code reviews and someone else has
CVS: reviewed your changes, include their name(s) here.
CVS: If you have not had it reviewed then delete this line.
Revision Changes Path
1.2 +3 -1
cocoon-2.1/src/java/org/apache/cocoon/serialization/LinkSerializer.java
Index: LinkSerializer.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/java/org/apache/cocoon/serialization/LinkSerializer.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- LinkSerializer.java 9 Mar 2003 00:09:36 -0000 1.1
+++ LinkSerializer.java 6 Oct 2003 16:36:15 -0000 1.2
@@ -88,11 +88,13 @@
public void simpleLink(String href, String role, String arcrole, String
title, String show, String actuate, String uri, String name, String raw,
Attributes attr)
throws SAXException {
if (traversable(href)) this.print(href);
+ super.simpleLink(href, role, arcrole, title, show, actuate, uri,
name, raw, attr);
}
public void startLocator(String href, String role, String title, String
label, String uri, String name, String raw, Attributes attr)
throws SAXException {
if (traversable(href)) this.print(href);
+ super.startLocator(href, role, title, label, uri, name, raw, attr);
}
private boolean traversable(String href) {