|
Web Flavor
|
|
object
HTMLUtils
extends AnyRef| Value Summary | |
val
|
HTML_4_01_STRICT : HTMLType |
val
|
HTML_4_01_TRANSITIONAL : HTMLType |
val
|
HTML_I_MODE
: HTMLType
End omission elements.
|
val
|
XHTML_1_0_STRICT : HTMLType |
val
|
XHTML_1_0_TRANSITIONAL : HTMLType |
val
|
XML_1_0 : HTMLType |
| Method Summary | |
def
|
printHTML
(typ : HTMLType, node : scala.xml.Node, response : Response) : java.io.Writer
Print HTML.
|
def
|
printHTML
(typ : HTMLType, node : scala.xml.Node, out : java.io.Writer, encoding : java.lang.String) : java.io.Writer
Print HTML.
|
def
|
printHTMLElem
(typ : HTMLType, node : scala.xml.Node, out : java.io.Writer) : java.io.Writer
Print HTML.
|
def
|
printHTMLElems
(isXML : Boolean, emptyElems : scala.collection.immutable.Set[java.lang.String], endOmissionElems : scala.collection.immutable.Set[java.lang.String], node : scala.xml.Node, out : java.io.Writer) : java.io.Writer
Print HTML.
|
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Class Summary | |
class
|
HTMLType
(val xml : Boolean, val doctype : java.lang.String, val emptyElems : scala.collection.immutable.Set[java.lang.String], val endOmissionElems : scala.collection.immutable.Set[java.lang.String]) extends AnyRef
HTML type.
|
| Value Details |
val
HTML_I_MODE : HTMLType
val
HTML_4_01_STRICT : HTMLType
val
HTML_4_01_TRANSITIONAL : HTMLType
val
XHTML_1_0_STRICT : HTMLType
val
XHTML_1_0_TRANSITIONAL : HTMLType
val
XML_1_0 : HTMLType
| Method Details |
def
printHTML(typ : HTMLType, node : scala.xml.Node, response : Response) : java.io.Writer
typ - HTML type.node - XML node.response - Response.IOException - IO error.
def
printHTML(typ : HTMLType, node : scala.xml.Node, out : java.io.Writer, encoding : java.lang.String) : java.io.Writer
typ - HTML type.node - XML node.encoding - output encoding.IOException - IO error.
def
printHTMLElem(typ : HTMLType, node : scala.xml.Node, out : java.io.Writer) : java.io.Writer
typ - HTML type.node - XML node.out - output writer.IOException - IO error.
def
printHTMLElems(isXML : Boolean, emptyElems : scala.collection.immutable.Set[java.lang.String], endOmissionElems : scala.collection.immutable.Set[java.lang.String], node : scala.xml.Node, out : java.io.Writer) : java.io.Writer
isXML - XML content?emptyElems - empty elements.endOmissionElems - end omission elements.node - XML node.out - output writer.IOException - IO error.|
Web Flavor
|
|