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

[scala-bts] #3062: scala.xml.Utility.trim() doesn't properly handle adjacent Text nodes

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

-------------------+--------------------------------------------------------
Reporter: harryh | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
-------------------+--------------------------------------------------------
if Text("My name is ") followed by Text("Harry") the space following the
word "is" will be incorrectly trimmed out. Adjacent Text nodes need to be
combined before whitespace is removed.

{{{
scala> import scala.xml._
import scala.xml._

scala> {Text("My name is ")}{Text("Harry")}
res0: scala.xml.Elem = My name is Harry

scala> Utility.trim(res0)
res1: scala.xml.Node = My name isHarry
}}}

This is important when modifying XML and then trimming it. For example we
might start with My name is and then replace the
Elem with "Harry" thus leading to the adjacent Text nodes.

Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
Re: [scala-bts] #3062: scala.xml.Utility.trim() doesn't properly

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

* cc: seth@… (added)

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