|
View:
New views
9 Messages
—
Rating Filter:
Alert me
|
|
|
[jira] Created: (MUSE-232) ElementSerializer looses namespace prefixes for attributes that require namespace qualificationElementSerializer looses namespace prefixes for attributes that require namespace qualification
----------------------------------------------------------------------------------------------- Key: MUSE-232 URL: https://issues.apache.org/jira/browse/MUSE-232 Project: Muse Issue Type: Bug Components: Core Engine - Routing and Serialization Affects Versions: 2.2.0 Reporter: Oliver Waeldrich Assigned To: Dan Jemiolo ElementSerializer looses namespace prefixes for attributes that require namespace qualification. The reason for this is the XmlUtils.createElement() method. Currently there is a workaround implemented for a Xerces-bug, which does not honor whether an attibute has a namespace or not. Caution: root.setAttribute(nameString, valueString) creates only attributes that do not support namespaces. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: muse-dev-unsubscribe@... For additional commands, e-mail: muse-dev-help@... |
|
|
[jira] Updated: (MUSE-232) ElementSerializer looses namespace prefixes for attributes that require namespace qualification[ https://issues.apache.org/jira/browse/MUSE-232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Oliver Waeldrich updated MUSE-232: ---------------------------------- Attachment: muse-232-patch.txt Sorry, the bug should refer to Utilities. However, I included a patch for this issue. > ElementSerializer looses namespace prefixes for attributes that require namespace qualification > ----------------------------------------------------------------------------------------------- > > Key: MUSE-232 > URL: https://issues.apache.org/jira/browse/MUSE-232 > Project: Muse > Issue Type: Bug > Components: Core Engine - Routing and Serialization > Affects Versions: 2.2.0 > Reporter: Oliver Waeldrich > Assigned To: Dan Jemiolo > Attachments: muse-232-patch.txt > > > ElementSerializer looses namespace prefixes for attributes that require namespace qualification. The reason for this is the XmlUtils.createElement() method. Currently there is a workaround implemented for a Xerces-bug, which does not honor whether an attibute has a namespace or not. > Caution: root.setAttribute(nameString, valueString) creates only attributes that do not support namespaces. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: muse-dev-unsubscribe@... For additional commands, e-mail: muse-dev-help@... |
|
|
[jira] Updated: (MUSE-232) ElementSerializer looses namespace prefixes for attributes that require namespace qualification[ https://issues.apache.org/jira/browse/MUSE-232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Oliver Waeldrich updated MUSE-232: ---------------------------------- Attachment: muse-232-patch-2.txt The first patch did not take into account that a attribute name clould already be fully qualified. In this case an exception is thrown. This is fixed now. > ElementSerializer looses namespace prefixes for attributes that require namespace qualification > ----------------------------------------------------------------------------------------------- > > Key: MUSE-232 > URL: https://issues.apache.org/jira/browse/MUSE-232 > Project: Muse > Issue Type: Bug > Components: Core Engine - Routing and Serialization > Affects Versions: 2.2.0 > Reporter: Oliver Waeldrich > Assigned To: Dan Jemiolo > Attachments: muse-232-patch-2.txt, muse-232-patch.txt > > > ElementSerializer looses namespace prefixes for attributes that require namespace qualification. The reason for this is the XmlUtils.createElement() method. Currently there is a workaround implemented for a Xerces-bug, which does not honor whether an attibute has a namespace or not. > Caution: root.setAttribute(nameString, valueString) creates only attributes that do not support namespaces. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: muse-dev-unsubscribe@... For additional commands, e-mail: muse-dev-help@... |
|
|
[jira] Updated: (MUSE-232) ElementSerializer looses namespace prefixes for attributes that require namespace qualification[ https://issues.apache.org/jira/browse/MUSE-232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dan Jemiolo updated MUSE-232: ----------------------------- Fix Version/s: 2.3.0 > ElementSerializer looses namespace prefixes for attributes that require namespace qualification > ----------------------------------------------------------------------------------------------- > > Key: MUSE-232 > URL: https://issues.apache.org/jira/browse/MUSE-232 > Project: Muse > Issue Type: Bug > Components: Core Engine - Routing and Serialization > Affects Versions: 2.2.0 > Reporter: Oliver Waeldrich > Assignee: Dan Jemiolo > Fix For: 2.3.0 > > Attachments: muse-232-patch-2.txt, muse-232-patch.txt > > > ElementSerializer looses namespace prefixes for attributes that require namespace qualification. The reason for this is the XmlUtils.createElement() method. Currently there is a workaround implemented for a Xerces-bug, which does not honor whether an attibute has a namespace or not. > Caution: root.setAttribute(nameString, valueString) creates only attributes that do not support namespaces. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: muse-dev-unsubscribe@... For additional commands, e-mail: muse-dev-help@... |
|
|
[jira] Closed: (MUSE-232) ElementSerializer looses namespace prefixes for attributes that require namespace qualification[ https://issues.apache.org/jira/browse/MUSE-232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dan Jemiolo closed MUSE-232. ---------------------------- Resolution: Fixed Applied Oliver's patch > ElementSerializer looses namespace prefixes for attributes that require namespace qualification > ----------------------------------------------------------------------------------------------- > > Key: MUSE-232 > URL: https://issues.apache.org/jira/browse/MUSE-232 > Project: Muse > Issue Type: Bug > Components: Core Engine - Routing and Serialization > Affects Versions: 2.2.0 > Reporter: Oliver Waeldrich > Assignee: Dan Jemiolo > Fix For: 2.3.0 > > Attachments: muse-232-patch-2.txt, muse-232-patch.txt > > > ElementSerializer looses namespace prefixes for attributes that require namespace qualification. The reason for this is the XmlUtils.createElement() method. Currently there is a workaround implemented for a Xerces-bug, which does not honor whether an attibute has a namespace or not. > Caution: root.setAttribute(nameString, valueString) creates only attributes that do not support namespaces. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: muse-dev-unsubscribe@... For additional commands, e-mail: muse-dev-help@... |
|
|
[jira] Reopened: (MUSE-232) ElementSerializer looses namespace prefixes for attributes that require namespace qualification[ https://issues.apache.org/jira/browse/MUSE-232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Oliver Waeldrich reopened MUSE-232: ----------------------------------- When the changes were applied to the current trunk, the suggested patch (patch-2) was slightly changed. Therefore, the applied solution does not solve the issue. > ElementSerializer looses namespace prefixes for attributes that require namespace qualification > ----------------------------------------------------------------------------------------------- > > Key: MUSE-232 > URL: https://issues.apache.org/jira/browse/MUSE-232 > Project: Muse > Issue Type: Bug > Components: Core Engine - Routing and Serialization > Affects Versions: 2.2.0 > Reporter: Oliver Waeldrich > Assignee: Dan Jemiolo > Fix For: 2.3.0 > > Attachments: muse-232-patch-2.txt, muse-232-patch.txt > > > ElementSerializer looses namespace prefixes for attributes that require namespace qualification. The reason for this is the XmlUtils.createElement() method. Currently there is a workaround implemented for a Xerces-bug, which does not honor whether an attibute has a namespace or not. > Caution: root.setAttribute(nameString, valueString) creates only attributes that do not support namespaces. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: muse-dev-unsubscribe@... For additional commands, e-mail: muse-dev-help@... |
|
|
[jira] Updated: (MUSE-232) ElementSerializer looses namespace prefixes for attributes that require namespace qualification[ https://issues.apache.org/jira/browse/MUSE-232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Oliver Waeldrich updated MUSE-232: ---------------------------------- Attachment: (was: muse-232-patch.txt) > ElementSerializer looses namespace prefixes for attributes that require namespace qualification > ----------------------------------------------------------------------------------------------- > > Key: MUSE-232 > URL: https://issues.apache.org/jira/browse/MUSE-232 > Project: Muse > Issue Type: Bug > Components: Core Engine - Routing and Serialization > Affects Versions: 2.2.0 > Reporter: Oliver Waeldrich > Assignee: Dan Jemiolo > Fix For: 2.3.0 > > Attachments: muse-232-patch-2.txt, muse-232-patch-3.txt > > > ElementSerializer looses namespace prefixes for attributes that require namespace qualification. The reason for this is the XmlUtils.createElement() method. Currently there is a workaround implemented for a Xerces-bug, which does not honor whether an attibute has a namespace or not. > Caution: root.setAttribute(nameString, valueString) creates only attributes that do not support namespaces. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: muse-dev-unsubscribe@... For additional commands, e-mail: muse-dev-help@... |
|
|
[jira] Assigned: (MUSE-232) ElementSerializer looses namespace prefixes for attributes that require namespace qualification[ https://issues.apache.org/jira/browse/MUSE-232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Twiner reassigned MUSE-232: --------------------------------- Assignee: Chris Twiner (was: Dan Jemiolo) > ElementSerializer looses namespace prefixes for attributes that require namespace qualification > ----------------------------------------------------------------------------------------------- > > Key: MUSE-232 > URL: https://issues.apache.org/jira/browse/MUSE-232 > Project: Muse > Issue Type: Bug > Components: Core Engine - Routing and Serialization > Affects Versions: 2.2.0 > Reporter: Oliver Waeldrich > Assignee: Chris Twiner > Fix For: 2.3.0 > > Attachments: muse-232-patch-2.txt, muse-232-patch-3.txt > > > ElementSerializer looses namespace prefixes for attributes that require namespace qualification. The reason for this is the XmlUtils.createElement() method. Currently there is a workaround implemented for a Xerces-bug, which does not honor whether an attibute has a namespace or not. > Caution: root.setAttribute(nameString, valueString) creates only attributes that do not support namespaces. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: muse-dev-unsubscribe@... For additional commands, e-mail: muse-dev-help@... |
|
|
[jira] Resolved: (MUSE-232) ElementSerializer looses namespace prefixes for attributes that require namespace qualification[ https://issues.apache.org/jira/browse/MUSE-232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Twiner resolved MUSE-232. ------------------------------- Resolution: Fixed > ElementSerializer looses namespace prefixes for attributes that require namespace qualification > ----------------------------------------------------------------------------------------------- > > Key: MUSE-232 > URL: https://issues.apache.org/jira/browse/MUSE-232 > Project: Muse > Issue Type: Bug > Components: Core Engine - Routing and Serialization > Affects Versions: 2.2.0 > Reporter: Oliver Waeldrich > Assignee: Chris Twiner > Fix For: 2.2.1 > > Attachments: muse-232-patch-2.txt, muse-232-patch-3.txt > > > ElementSerializer looses namespace prefixes for attributes that require namespace qualification. The reason for this is the XmlUtils.createElement() method. Currently there is a workaround implemented for a Xerces-bug, which does not honor whether an attibute has a namespace or not. > Caution: root.setAttribute(nameString, valueString) creates only attributes that do not support namespaces. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: muse-dev-unsubscribe@... For additional commands, e-mail: muse-dev-help@... |
| Free embeddable forum powered by Nabble | Forum Help |