Package

org.fusesource.scalate

filter

Permalink

package filter

Visibility
  1. Public
  2. All

Type Members

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

    Permalink
  2. trait Filter extends AnyRef

    Permalink

    Filters transform content at a given URI.

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

    Permalink

    Represents a request to filter content.

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

    Permalink

    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

    Permalink

    Applies a number of filters in order

Value Members

  1. object CdataFilter extends Filter

    Permalink

    Surrounds the filtered text with CDATA tags.

  2. object CoffeeScriptCompiler

    Permalink

    A Scala / Rhino Coffeescript compiler.

  3. object CoffeeScriptFilter extends Filter with Log

    Permalink

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

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

    Useful for including inline Javascript.

  4. object CoffeeScriptPipeline extends Filter with Log

    Permalink

    Compiles a .coffee file into JS on the server side

  5. object CssFilter extends Filter

    Permalink

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

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

    Useful for including inline CSS.

  6. object EscapedFilter extends Filter

    Permalink

    Escapes any XML/XHTML special characters in the content.

  7. object JavascriptFilter extends Filter

    Permalink

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

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

    Useful for including inline Javascript.

  8. object PlainFilter extends Filter

    Permalink

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

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

    This is useful for large blocks of text or HTML.

  9. object ScalaMarkdownFilter extends Filter with TemplateEngineAddOn

    Permalink

    Renders markdown syntax.

Ungrouped