This page is no longer maintained — Please continue to the home page at www.scala-lang.org

[scala-bts] #2374: NamespaceBinding.getPrefix returns URI (not prefix)

1 reply
Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.

----------------------------+-----------------------------------------------
Reporter: willisblackburn | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
----------------------------+-----------------------------------------------
NamespaceBinding defines two methods, getURI and getPrefix. getURI is
correct, but getPrefix looks like it was copied from getURI and
incompletely modified. It has several errors: It returns the URI, not
the prefix, if the input URI matches the URI of the NamespaceBinding, and
it delegates to the parent's getURI method instead of getPrefix. Also the
docs are a little odd ("Returns some prefix that is mapped to the
prefix").

{{{
34 def getURI(_prefix: String): String =
35 if (prefix == _prefix) uri else parent.getURI(_prefix)
36
37 /** Returns some prefix that is mapped to the prefix.
38 *
39 * @param _uri
40 * @return
41 */
42 def getPrefix(_uri: String): String =
43 if (_uri == uri) uri else parent.getURI(_uri)
}}}

Corrected method:

{{{
/** Returns some prefix that is mapped to the URI.
*
* @param _uri the input URI
* @return the prefix that is mapped to the input URI, or null
* if no prefix is mapped to the URI.
*/
def getPrefix(_uri: String): String =
if (_uri == uri) prefix else parent.getPrefix_uri)
}}}

Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
Re: [scala-bts] #2374: NamespaceBinding.getPrefix returns URI (n

-----------------------------+----------------------------------------------
Reporter: willisblackburn | Owner: scala-xml_team
Type: defect | Status: closed
Priority: normal | Component: XML support
Version: Unreleased-2.8.x | Resolution: fixed
Keywords: |
-----------------------------+----------------------------------------------
Changes (by extempore):

* cc: paulp@… (added)
* status: new => closed
* version: => Unreleased-2.8.x
* resolution: => fixed

Comment:

Sorry about some of the sketchier things one can find in the XML lib.
Fixed in r18750.

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland