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

shortForm method in Xhtml

No replies
ymnk
Joined: 2008-08-20,
User offline. Last seen 4 years 7 weeks ago.

Hi there,

In scala.xml.Xhtml, shortForm has been defined as follows[1],

def shortForm =
minimizeTags &&
(x.child == null || x.child.length == 0) &&
!(List("div", "script", "textarea") contains x.label)

IMHO, there must be discussions, but the following definition may be better,
according to XHTML-1.0-strict DTD specification[2],

private val emptyElements = List("base", "meta", "link", "hr",
"br", "param", "img", "area", "input", "col")

def shortForm =
minimizeTags &&
(x.child == null || x.child.length == 0) &&
(emptyElements contains x.label)

emptyElements may be too long and you may want to delete some of tags from it.

[1] https://lampsvn.epfl.ch/trac/scala/browser/scala/trunk/src/library/scala...
[2] http://www.w3.org/TR/xhtml1/dtds.html#a_dtd_XHTML-1.0-Strict

Sincerely,
--
Atsuhiko Yamanaka
JCraft,Inc.
1-14-20 HONCHO AOBA-KU,
SENDAI, MIYAGI 980-0014 Japan.
Tel +81-22-723-2150
+1-415-578-3454
Fax +81-22-224-8773
Skype callto://jcraft/

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