final case class XHtmlInHtml5OutProperties(userAgent: Box[String]) extends HtmlProperties with Product with Serializable
If you're going to use HTML5 out, but want XHTML in (so you can have mixed case snippet tags and you don't get the Html5 parsers obnoxious table behavior), then this is the set of properties to use
- Alphabetic
- By Inheritance
- XHtmlInHtml5OutProperties
- Serializable
- Product
- Equals
- HtmlProperties
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new XHtmlInHtml5OutProperties(userAgent: Box[String])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def contentType: Box[String]
What's the content type that should be put in the response header?
What's the content type that should be put in the response header?
- Definition Classes
- XHtmlInHtml5OutProperties → HtmlProperties
- def docType: Box[String]
When we emit the HTML, what DocType will be emitted
When we emit the HTML, what DocType will be emitted
- Definition Classes
- XHtmlInHtml5OutProperties → HtmlProperties
- def encoding: Box[String]
When we output the HTML, what encoding will be emitted
When we output the HTML, what encoding will be emitted
- Definition Classes
- XHtmlInHtml5OutProperties → HtmlProperties
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val html5FormsSupport: Boolean
Are there HTML5 forms support?
Are there HTML5 forms support?
- Definition Classes
- XHtmlInHtml5OutProperties → HtmlProperties
- def htmlOutputHeader: Box[String]
For XHTML, the Encoding appears before the DocType, except if you're writing to IE6, so, rather than having a hard-coded calculation we allow the calculation to be done here.
For XHTML, the Encoding appears before the DocType, except if you're writing to IE6, so, rather than having a hard-coded calculation we allow the calculation to be done here.
- Definition Classes
- XHtmlInHtml5OutProperties → HtmlProperties
- def htmlParser: (InputStream) => Box[NodeSeq]
How are we parsing incoming files into a NodeSeq? This will likely point to either PCDataXmlParser.apply or Html5.parse
How are we parsing incoming files into a NodeSeq? This will likely point to either PCDataXmlParser.apply or Html5.parse
- Definition Classes
- XHtmlInHtml5OutProperties → HtmlProperties
- def htmlWriter: (Node, Writer) => Unit
Given a NodeSeq and a Writer, convert the output to the writer.
Given a NodeSeq and a Writer, convert the output to the writer.
- Definition Classes
- XHtmlInHtml5OutProperties → HtmlProperties
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val maxOpenRequests: Int
What is the maximum number of open HTTP requests.
What is the maximum number of open HTTP requests.
- Definition Classes
- XHtmlInHtml5OutProperties → HtmlProperties
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def setContentType(newContentType: () => Box[String]): HtmlProperties
Creates a new instance of HtmlProperties with the contentType property changed
Creates a new instance of HtmlProperties with the contentType property changed
- Definition Classes
- HtmlProperties
- def setDocType(newDocType: () => Box[String]): HtmlProperties
Creates a new instance of HtmlProperties with the docType property changed
Creates a new instance of HtmlProperties with the docType property changed
- Definition Classes
- HtmlProperties
- def setEncoding(newEncoding: () => Box[String]): HtmlProperties
Creates a new instance of HtmlProperties with the encoding property changed
Creates a new instance of HtmlProperties with the encoding property changed
- Definition Classes
- HtmlProperties
- def setHtml5FormsSupport(newFormsSupport: Boolean): HtmlProperties
Creates a new instance of HtmlProperties with the html5FormsSupport property changed
Creates a new instance of HtmlProperties with the html5FormsSupport property changed
- Definition Classes
- HtmlProperties
- def setHtmlOutputHeader(newHeader: () => Box[String]): HtmlProperties
Creates a new instance of HtmlProperties with the htmlOutputHeader property changed
Creates a new instance of HtmlProperties with the htmlOutputHeader property changed
- Definition Classes
- HtmlProperties
- def setHtmlParser(newParser: (InputStream) => Box[NodeSeq]): HtmlProperties
Creates a new instance of HtmlProperties with the htmlParser property changed
Creates a new instance of HtmlProperties with the htmlParser property changed
- Definition Classes
- HtmlProperties
- def setHtmlWriter(newWriter: (Node, Writer) => Unit): HtmlProperties
Creates a new instance of HtmlProperties with the htmlWriter property changed
Creates a new instance of HtmlProperties with the htmlWriter property changed
- Definition Classes
- HtmlProperties
- def setMaxOpenRequests(maxOpen: Int): HtmlProperties
Creates a new instance of HtmlProperties with the maxOpenRequests property changed
Creates a new instance of HtmlProperties with the maxOpenRequests property changed
- Definition Classes
- HtmlProperties
- def setUserAgent(newUA: Box[String]): HtmlProperties
Creates a new instance of HtmlProperties with the userAgent property changed
Creates a new instance of HtmlProperties with the userAgent property changed
- Definition Classes
- HtmlProperties
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val userAgent: Box[String]
What's the UserAgent that was used to create this HtmlChoice
What's the UserAgent that was used to create this HtmlChoice
- Definition Classes
- XHtmlInHtml5OutProperties → HtmlProperties
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()