Class

org.fusesource.scalate.page.PageFilter

PageParser

Related Doc: package PageFilter

Permalink

class PageParser extends ScalaParseSupport

Parser for the Page Format

Source
PageFilter.scala
Linear Supertypes
ScalaParseSupport, RegexParsers, Parsers, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PageParser
  2. ScalaParseSupport
  3. RegexParsers
  4. Parsers
  5. AnyRef
  6. 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 PageParser()

    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 PageParser to any2stringadd[PageParser] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (PageParser, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from PageParser to ArrowAssoc[PageParser] 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. object NoSuccess

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  18. val attribute: Parser[Attribute]

    Permalink
  19. val attribute_key: Parser[Text]

    Permalink
  20. val attribute_value: Parser[Text]

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

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

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

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

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

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

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. def commit[T](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  31. val content: Parser[Text]

    Permalink
  32. val div: Parser[List[Attribute]]

    Permalink
  33. lazy val doubleQuotedChars: Parser[String]

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

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

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

    Permalink
    Definition Classes
    Parsers
  37. def ensuring(cond: (PageParser) ⇒ Boolean, msg: ⇒ Any): PageParser

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

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from PageParser to Ensuring[PageParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  41. val eof: Parser[Text]

    Permalink
  42. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    Parsers
  45. def failure(msg: String): Parser[Nothing]

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Parsers
  57. def mkList[T]: (~[T, List[T]]) ⇒ List[T]

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

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

    Permalink
    Definition Classes
    AnyRef
  60. val nl: Parser[Text]

    Permalink
  61. def not[T](p: ⇒ Parser[T]): Parser[Unit]

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

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

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

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

    Permalink
    Definition Classes
    ScalaParseSupport
  66. def opt[T](p: ⇒ Parser[T]): Parser[Option[T]]

    Permalink
    Definition Classes
    Parsers
  67. val opt_space: Parser[Text]

    Permalink
  68. val page_part: Parser[PagePart]

    Permalink
  69. val page_parts: Parser[List[PagePart]]

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

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

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

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

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

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

    Permalink
    Definition Classes
    RegexParsers
  76. def parsePageParts(in: String): List[PagePart]

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

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

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

    Permalink
    Definition Classes
    ScalaParseSupport
  80. implicit def regex(r: Regex): Parser[String]

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

    Permalink
    Definition Classes
    Parsers
  82. 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.

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

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

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

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

    Permalink
    Definition Classes
    Parsers
  87. val scalaType: Regex

    Permalink
    Definition Classes
    ScalaParseSupport
  88. val scalaTypeChar: String

    Permalink
    Definition Classes
    ScalaParseSupport
  89. def skipWhitespace: Boolean

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

    Permalink
    Definition Classes
    ScalaParseSupport
  91. val space: Parser[Text]

    Permalink
  92. def squoted[T](p: Parser[T]): Parser[T]

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    ScalaParseSupport
  102. def toString(): String

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    ScalaParseSupport
  112. def [B](y: B): (PageParser, B)

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

Inherited from ScalaParseSupport

Inherited from RegexParsers

Inherited from Parsers

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped