Update of /cvsroot/tm4j/tm4j/src/org/tm4j/topicmap/utils
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv26704
Modified Files:
XTMWriter.java
Log Message:
fixed bug in topic map serialisation (id attributes were given a namespace URI)
Index: XTMWriter.java
===================================================================
RCS file: /cvsroot/tm4j/tm4j/src/org/tm4j/topicmap/utils/XTMWriter.java,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -d -r1.49 -r1.50
*** XTMWriter.java 21 Jan 2008 08:42:34 -0000 1.49
--- XTMWriter.java 6 Mar 2008 03:48:30 -0000 1.50
***************
*** 319,323 ****
if (id != null) {
//id = makeRelative(id);
! atts.addAttribute(XTMParser.XTM_NS_URI, XTMParser.ID, XTMParser.ID,
"ID", id);
}
--- 319,323 ----
if (id != null) {
//id = makeRelative(id);
! atts.addAttribute("", XTMParser.ID, XTMParser.ID,
"ID", id);
}
***************
*** 989,992 ****
--- 989,995 ----
/*
* $Log$
+ * Revision 1.50 2008/03/06 03:48:30 conal_tuohy
+ * fixed bug in topic map serialisation (id attributes were given a namespace URI)
+ *
* Revision 1.49 2008/01/21 08:42:34 mediumnet
* Transactions support for XTMWriter.
|