org.fusesource.scalate

filter

package filter

Visibility
  1. Public
  2. All

Type Members

  1. case class CompilationError(sourceName: Option[String], message: String) extends Product with Serializable

  2. trait Filter extends AnyRef

    Filters transform content at a given URI.

  3. case class FilterRequest(filter: String, content: Any) extends Product with Serializable

    Represents a request to filter content.

  4. case class NoLayoutFilter(next: Filter, contentType: String) extends Filter with Product with Serializable

    A useful filter for wrapping other filters as a Pipeline (a top level processor of stand alone resources)

  5. case class Pipeline(filters: List[Filter]) extends Filter with Product with Serializable

    Applies a number of filters in order

Value Members

  1. object CdataFilter extends Filter

    Surrounds the filtered text with CDATA tags.

  2. object CoffeeScriptCompiler

    A Scala / Rhino Coffeescript compiler.

  3. object CoffeeScriptFilter extends Filter with Log

    Surrounds the filtered text with <script> and CDATA tags.

  4. object CoffeeScriptPipeline extends Filter with Log

    Compiles a .

  5. object CssFilter extends Filter

    Surrounds the filtered text with <style> and CDATA tags.

  6. object EscapedFilter extends Filter

    Escapes any XML/XHTML special characters in the content.

  7. object JavascriptFilter extends Filter

    Surrounds the filtered text with <script> and CDATA tags.

  8. object PlainFilter extends Filter

    A filter that simply returns the given String without any processing.

  9. object ScalaMarkdownFilter extends Filter with TemplateEngineAddOn

    Renders markdown syntax.

Ungrouped