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

[scala-bts] #3246: scala.xml.dtd.ParsedEntityDecl: toString method not overridden

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

---------------------+------------------------------------------------------
Reporter: mwkuster | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
---------------------+------------------------------------------------------
The toString method is not correctly overridden for
scala.xml.dtd.ParsedEntityDecl and related EntityDeclarations, causing an
incorrect DocType to be generated

Workaround for 2.7.7: create a local class that overrides toString:

class PE(name: String, entdef: EntityDef) extends
scala.xml.dtd.ParsedEntityDecl(name, entdef) {
override def toString : String = {
val sb = new StringBuilder()

return this.toString(sb).toString
}
}

Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
Re: [scala-bts] #3246: scala.xml.dtd.ParsedEntityDecl: toString

---------------------+------------------------------------------------------
Reporter: mwkuster | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
---------------------+------------------------------------------------------
Changes (by mwkuster):

* cc: mwkuster (added)

Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
Re: [scala-bts] #3246: scala.xml.dtd.ParsedEntityDecl: toString

---------------------+------------------------------------------------------
Reporter: mwkuster | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
---------------------+------------------------------------------------------

Comment(by mwkuster):

This problem is quite similar to
https://lampsvn.epfl.ch/trac/scala/ticket/1620

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