Class

org.fusesource.scalate.converter

JspParser

Related Doc: package converter

Permalink

class JspParser extends MarkupScanner

Parser of JSP for the purposes of transformation to Scalate; so its not perfect but gives folks a head start

Source
JspParser.scala
Version

$Revision : 1.1 $

Linear Supertypes
MarkupScanner, ScalaParseSupport, RegexParsers, Parsers, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JspParser
  2. MarkupScanner
  3. ScalaParseSupport
  4. RegexParsers
  5. Parsers
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JspParser()

    Permalink

Type Members

  1. type Elem = Char

    Permalink
    Definition Classes
    RegexParsers → Parsers
  2. case class Error extends NoSuccess with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  3. case class Failure extends NoSuccess with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  4. type Input = Reader[Elem]

    Permalink
    Definition Classes
    Parsers
  5. sealed abstract class NoSuccess extends ParseResult[Nothing]

    Permalink
    Definition Classes
    Parsers
  6. trait OnceParser[+T] extends Parser[T]

    Permalink
    Definition Classes
    Parsers
  7. sealed abstract class ParseResult[+T] extends AnyRef

    Permalink
    Definition Classes
    Parsers
  8. abstract class Parser[+T] extends (Input) ⇒ ParseResult[T]

    Permalink
    Definition Classes
    Parsers
  9. case class Success[+T] extends ParseResult[T] with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  10. case class ~[+a, +b] extends Product with Serializable

    Permalink
    Definition Classes
    Parsers

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from JspParser to any2stringadd[JspParser] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (JspParser, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from JspParser to ArrowAssoc[JspParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. val EofCh: Char

    Permalink
    Definition Classes
    ScalaParseSupport
  7. def IDENT: Parser[String]

    Permalink
    Definition Classes
    MarkupScanner
  8. object NoSuccess

    Permalink
    Definition Classes
    Parsers
  9. def OnceParser[T](f: (Input) ⇒ ParseResult[T]): Parser[T] with OnceParser[T]

    Permalink
    Definition Classes
    Parsers
  10. def Parser[T](f: (Input) ⇒ ParseResult[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  11. val S: Regex

    Permalink
    Definition Classes
    MarkupScanner
  12. def STRING: Parser[String]

    Permalink
    Definition Classes
    MarkupScanner
  13. def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]

    Permalink
    Definition Classes
    ScalaParseSupport → Parsers
  14. def accept[ES](es: ES)(implicit f: (ES) ⇒ List[Elem]): Parser[List[Elem]]

    Permalink
    Definition Classes
    Parsers
  15. implicit def accept(e: Elem): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  16. def acceptIf(p: (Elem) ⇒ Boolean)(err: (Elem) ⇒ String): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  17. def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]

    Permalink
    Definition Classes
    Parsers
  18. def acceptSeq[ES](es: ES)(implicit f: (ES) ⇒ Iterable[Elem]): Parser[List[Elem]]

    Permalink
    Definition Classes
    Parsers
  19. lazy val anyChar: Parser[Char]

    Permalink
    Definition Classes
    ScalaParseSupport
  20. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  21. def attribute: Parser[Attribute]

    Permalink
  22. def attributeList: Parser[List[Attribute]]

    Permalink
  23. def chainl1[T, U](first: ⇒ Parser[T], p: ⇒ Parser[U], q: ⇒ Parser[(T, U) ⇒ T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  24. def chainl1[T](p: ⇒ Parser[T], q: ⇒ Parser[(T, T) ⇒ T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  25. def chainr1[T, U](p: ⇒ Parser[T], q: ⇒ Parser[(T, U) ⇒ U], combine: (T, U) ⇒ U, first: U): Parser[U]

    Permalink
    Definition Classes
    Parsers
  26. lazy val charEscapeSeq: Parser[Char]

    Permalink
    Definition Classes
    ScalaParseSupport
  27. lazy val characterLiteral: Parser[String]

    Permalink
    Definition Classes
    ScalaParseSupport
  28. def chrExcept(cs: Char*): Parser[Char]

    Permalink
    Definition Classes
    ScalaParseSupport
  29. def chrOf(cs: String): Parser[Char]

    Permalink
    Definition Classes
    ScalaParseSupport
  30. def chrOf(cs: Char*): Parser[Char]

    Permalink
    Definition Classes
    ScalaParseSupport
  31. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def closeElement: Parser[QualifiedName]

    Permalink
  33. def commit[T](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  34. lazy val doubleQuotedChars: Parser[String]

    Permalink
    Definition Classes
    ScalaParseSupport
  35. def dquoted[T](p: Parser[T]): Parser[T]

    Permalink
    Definition Classes
    ScalaParseSupport
  36. def elem(e: Elem): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  37. def elem(kind: String, p: (Elem) ⇒ Boolean): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  38. def element: Parser[Element]

    Permalink
  39. def elementTextContent: Parser[TextFragment]

    Permalink
  40. def emptyElement: Parser[Element]

    Permalink
  41. def ensuring(cond: (JspParser) ⇒ Boolean, msg: ⇒ Any): JspParser

    Permalink
    Implicit information
    This member is added by an implicit conversion from JspParser to Ensuring[JspParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  42. def ensuring(cond: (JspParser) ⇒ Boolean): JspParser

    Permalink
    Implicit information
    This member is added by an implicit conversion from JspParser to Ensuring[JspParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  43. def ensuring(cond: Boolean, msg: ⇒ Any): JspParser

    Permalink
    Implicit information
    This member is added by an implicit conversion from JspParser to Ensuring[JspParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  44. def ensuring(cond: Boolean): JspParser

    Permalink
    Implicit information
    This member is added by an implicit conversion from JspParser to Ensuring[JspParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  45. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  46. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  47. def err(msg: String): Parser[Nothing]

    Permalink
    Definition Classes
    Parsers
  48. val expression: Parser[DollarExpressionFragment]

    Permalink
  49. val expressionParser: ExpressionParser

    Permalink
    Attributes
    protected
  50. def failure(msg: String): Parser[Nothing]

    Permalink
    Definition Classes
    Parsers
  51. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  52. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from JspParser to StringFormat[JspParser] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  53. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  54. def guard[T](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  55. def guarded[T, U](p1: Parser[T], p2: Parser[U]): Parser[U]

    Permalink
    Definition Classes
    ScalaParseSupport
  56. def handleWhiteSpace(source: CharSequence, offset: Int): Int

    Permalink
    Attributes
    protected
    Definition Classes
    RegexParsers
  57. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  58. lazy val hexDigit: Parser[Char]

    Permalink
    Definition Classes
    ScalaParseSupport
  59. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  60. implicit def literal(s: String): Parser[String]

    Permalink
    Definition Classes
    RegexParsers
  61. def log[T](p: ⇒ Parser[T])(name: String): Parser[T]

    Permalink
    Definition Classes
    Parsers
  62. def markup: Parser[PageFragment]

    Permalink
  63. def mkList[T]: (~[T, List[T]]) ⇒ List[T]

    Permalink
    Definition Classes
    Parsers
  64. lazy val multiLineChars: Parser[String]

    Permalink
    Definition Classes
    ScalaParseSupport
  65. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  66. def not[T](p: ⇒ Parser[T]): Parser[Unit]

    Permalink
    Definition Classes
    Parsers
  67. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  68. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  69. lazy val octalDigit: Parser[Char]

    Permalink
    Definition Classes
    ScalaParseSupport
  70. lazy val octalEscapeSeq: Parser[Char]

    Permalink
    Definition Classes
    ScalaParseSupport
  71. def openElement(end: String): Parser[~[QualifiedName, List[Attribute]]]

    Permalink
  72. def opt[T](p: ⇒ Parser[T]): Parser[Option[T]]

    Permalink
    Definition Classes
    Parsers
  73. def page: Parser[List[PageFragment]]

    Permalink
  74. val pageFragment: Parser[PageFragment]

    Permalink
  75. def parse[T](p: Parser[T], in: Reader): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  76. def parse[T](p: Parser[T], in: CharSequence): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  77. def parse[T](p: Parser[T], in: Reader[Char]): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  78. def parseAll[T](p: Parser[T], in: CharSequence): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  79. def parseAll[T](p: Parser[T], in: Reader): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  80. def parseAll[T](p: Parser[T], in: Reader[Char]): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  81. def parsePage(in: String): List[PageFragment]

    Permalink
  82. def phrase[T](p: Parser[T]): Parser[T]

    Permalink
    Definition Classes
    RegexParsers → Parsers
  83. def positioned[T <: Positional](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    RegexParsers → Parsers
  84. def prefixed[T, U](p1: Parser[T], p2: Parser[U]): Parser[U]

    Permalink
    Definition Classes
    ScalaParseSupport
  85. def qualifiedName: Parser[QualifiedName]

    Permalink
  86. implicit def regex(r: Regex): Parser[String]

    Permalink
    Definition Classes
    RegexParsers
  87. def rep[T](p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  88. def rep1[T](first: ⇒ Parser[T], p0: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The p0 call-by-name arguments is evaluated at most once per constructed Parser object, instead of on every need that arises during parsing.

  89. def rep1[T](p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  90. val rep1S: Regex

    Permalink
    Definition Classes
    MarkupScanner
  91. def rep1sep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  92. def repN[T](num: Int, p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  93. val repS: Regex

    Permalink
    Definition Classes
    MarkupScanner
  94. def repsep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  95. val scalaType: Regex

    Permalink
    Definition Classes
    ScalaParseSupport
  96. val scalaTypeChar: String

    Permalink
    Definition Classes
    ScalaParseSupport
  97. def skipWhitespace: Boolean

    Permalink
    Definition Classes
    MarkupScanner → RegexParsers
  98. def someUpto[T](p: Parser[T]): Parser[Text]

    Permalink
    Definition Classes
    ScalaParseSupport
  99. def squoted[T](p: Parser[T]): Parser[T]

    Permalink
    Definition Classes
    ScalaParseSupport
  100. lazy val stringLiteral: Parser[String]

    Permalink
    Definition Classes
    ScalaParseSupport
  101. def success[T](v: T): Parser[T]

    Permalink
    Definition Classes
    Parsers
  102. def surround[T](delim: Parser[Any], p: Parser[T]): Parser[T]

    Permalink
    Definition Classes
    ScalaParseSupport
  103. def surround[T](c: Char, p: Parser[T]): Parser[T]

    Permalink
    Definition Classes
    ScalaParseSupport
  104. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  105. def takeUntil(cond: Parser[Any], p: Parser[Char]): Parser[String]

    Permalink
    Definition Classes
    ScalaParseSupport
  106. def takeUntil(cond: Parser[Any]): Parser[String]

    Permalink
    Definition Classes
    ScalaParseSupport
  107. def takeWhile(p: Parser[Char]): Parser[String]

    Permalink
    Definition Classes
    ScalaParseSupport
  108. def text(p1: Parser[String]): Parser[Text]

    Permalink
    Definition Classes
    ScalaParseSupport
  109. val textFragment: Parser[TextFragment]

    Permalink
  110. def toExpression(text: String): Expression

    Permalink
  111. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  112. def tquoted[T](p: Parser[T]): Parser[T]

    Permalink
    Definition Classes
    ScalaParseSupport
  113. lazy val tripleQuote: Parser[Unit]

    Permalink
    Definition Classes
    ScalaParseSupport
  114. lazy val uniEscapeSeq: Parser[Char]

    Permalink
    Definition Classes
    ScalaParseSupport
  115. def upto[T](p: Parser[T]): Parser[Text]

    Permalink
    Definition Classes
    ScalaParseSupport
  116. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  117. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  118. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  119. val whiteSpace: Regex

    Permalink
    Attributes
    protected
    Definition Classes
    RegexParsers
  120. def wrapped[T, U](prefix: Parser[T], postfix: Parser[U]): Parser[Text]

    Permalink
    Definition Classes
    ScalaParseSupport
  121. def [B](y: B): (JspParser, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from JspParser to ArrowAssoc[JspParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from MarkupScanner

Inherited from ScalaParseSupport

Inherited from RegexParsers

Inherited from Parsers

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JspParser to any2stringadd[JspParser]

Inherited by implicit conversion StringFormat from JspParser to StringFormat[JspParser]

Inherited by implicit conversion Ensuring from JspParser to Ensuring[JspParser]

Inherited by implicit conversion ArrowAssoc from JspParser to ArrowAssoc[JspParser]

Ungrouped