File: xmlmore.scala

package info (click to toggle)
scala 2.9.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 67,252 kB
  • ctags: 6,602
  • sloc: java: 27,488; xml: 4,412; python: 2,297; sh: 734; makefile: 16; ansic: 6
file content (29 lines) | stat: -rw-r--r-- 874 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
object myBreak extends scala.xml.Unparsed("<br />")

object Test extends App {
  val com = <!-- thissa comment -->
  val pi  = <?this is a pi foo bar = && {{ ?>
  val crz = <![CDATA[
 "Come, come again, whoever you are, come!
Heathen, fire worshipper or idolatrous, come!
Come even if you broke your penitence a hundred times,
Ours is the portal of hope, come as you are."
                              Mevlana Celaleddin Rumi]]>

  val nazim = <foo>{myBreak}</foo> // shows use of unparsed
                                          
  Console println com
  Console println pi
  Console println crz // this guy will escaped, and rightly so
  Console println nazim
  Console println "End Test"

  <x:foo xmlns:x="gaga"/> match {
    case scala.xml.QNode("gaga","foo",md,child@_*) =>
  }

  <x:foo xmlns:x="gaga"/> match {
    case scala.xml.Node("foo",md,child@_*) =>
  }

}