t

org.scalatra.scalate

ScalateI18nSupport

trait ScalateI18nSupport extends ScalateSupport with I18nSupport

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScalateI18nSupport
  2. I18nSupport
  3. ScalateSupport
  4. ServletBase
  5. ScalatraBase
  6. DefaultImplicitConversions
  7. LowPriorityImplicitConversions
  8. LowestPriorityImplicitConversions
  9. TypeConverterSupport
  10. ScalatraParamsImplicits
  11. Initializable
  12. DynamicScope
  13. RequestResponseScope
  14. CoreDsl
  15. Control
  16. Handler
  17. ScalatraContext
  18. CookieContext
  19. SessionSupport
  20. ServletApiImplicits
  21. AnyRef
  22. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait Config extends AnyRef
    Definition Classes
    Initializable
  2. sealed class TypedMultiParams extends AnyRef
    Definition Classes
    ScalatraParamsImplicits
  3. sealed class TypedParams extends AnyRef
    Definition Classes
    ScalatraParamsImplicits
  4. abstract type ConfigT <: AnyRef { ... /* 3 definitions in type refinement */ }
    Definition Classes
    ServletBaseInitializable
  5. trait ScalatraTemplateEngine extends AnyRef

    A TemplateEngine integrated with Scalatra.

    A TemplateEngine integrated with Scalatra.

    A ScalatraTemplateEngine looks for layouts in /WEB-INF/templates/layouts before searching in /WEB-INF/layouts and /WEB-INF/scalate/layouts.

    Definition Classes
    ScalateSupport

Abstract Value Members

  1. abstract def requestPath(implicit request: HttpServletRequest): String

    The effective path against which routes are matched.

    The effective path against which routes are matched. The definition varies between servlets and filters.

    Definition Classes
    ScalatraBase

Concrete Value Members

  1. def after(transformers: RouteTransformer*)(fun: ⇒ Any): Unit

    Adds a filter to run after the route.

    Adds a filter to run after the route. The filter only runs if each routeMatcher returns Some. If the routeMatchers list is empty, the filter runs for all routes.

    Definition Classes
    ScalatraBaseCoreDsl
  2. implicit val anyToBoolean: TypeConverter[Any, Boolean]
  3. implicit val anyToByte: TypeConverter[Any, Byte]
  4. implicit val anyToDouble: TypeConverter[Any, Double]
  5. implicit val anyToFloat: TypeConverter[Any, Float]
  6. implicit val anyToInt: TypeConverter[Any, Int]
  7. implicit val anyToLong: TypeConverter[Any, Long]
  8. implicit val anyToShort: TypeConverter[Any, Short]
  9. implicit val anyToString: TypeConverter[Any, String]
  10. def before(transformers: RouteTransformer*)(fun: ⇒ Any): Unit

    Adds a filter to run before the route.

    Adds a filter to run before the route. The filter only runs if each routeMatcher returns Some. If the routeMatchers list is empty, the filter runs for all routes.

    Definition Classes
    ScalatraBaseCoreDsl
  11. val config: ConfigT

    The configuration, typically a ServletConfig or FilterConfig.

    The configuration, typically a ServletConfig or FilterConfig.

    Definition Classes
    ScalatraBase
  12. def contentType: String

    Gets the content type of the current response.

    Gets the content type of the current response.

    Definition Classes
    ScalatraContext
  13. def contentType_=(contentType: String): Unit

    Sets the content type of the current response.

    Sets the content type of the current response.

    Definition Classes
    ScalatraContext
  14. implicit def cookieOptions: CookieOptions
    Definition Classes
    CookieContext
  15. def cookies(implicit request: HttpServletRequest): SweetCookies
    Definition Classes
    CookieContext
  16. implicit def defaultStringToSeq[T](implicit elementConverter: TypeConverter[String, T], mf: Manifest[T]): TypeConverter[String, Seq[T]]
    Definition Classes
    DefaultImplicitConversions
  17. def delete(transformers: RouteTransformer*)(action: ⇒ Any): Route

    Definition Classes
    ScalatraBaseCoreDsl
    See also

    get

  18. implicit def enrichRequest(request: HttpServletRequest): RichRequest
    Definition Classes
    ServletApiImplicits
  19. implicit def enrichResponse(response: HttpServletResponse): RichResponse
    Definition Classes
    ServletApiImplicits
  20. implicit def enrichServletContext(servletContext: ServletContext): RichServletContext
    Definition Classes
    ServletApiImplicits
  21. implicit def enrichSession(session: HttpSession): RichSession
    Definition Classes
    ServletApiImplicits
  22. def environment: String
    Definition Classes
    ScalatraBase
  23. def error(handler: ErrorHandler): Unit

    Defines an error handler for exceptions thrown in either the before block or a route action.

    Defines an error handler for exceptions thrown in either the before block or a route action.

    If the error handler does not match, the result falls through to the previously defined error handler. The default error handler simply rethrows the exception.

    The error handler is run before the after filters, and the result is rendered like a standard response. It is the error handler's responsibility to set any appropriate status code.

    Definition Classes
    ScalatraBaseCoreDsl
  24. def format_=(formatValue: String): Unit

    Explicitly sets the request-scoped format.

    Explicitly sets the request-scoped format. This takes precedence over whatever was inferred from the request.

    Definition Classes
    ScalatraContext
  25. def format_=(formatValue: Symbol): Unit

    Explicitly sets the request-scoped format.

    Explicitly sets the request-scoped format. This takes precedence over whatever was inferred from the request.

    Definition Classes
    ScalatraContext
  26. def fullUrl(path: String, params: Iterable[(String, Any)] = Iterable.empty, includeContextPath: Boolean = true, includeServletPath: Boolean = true, withSessionId: Boolean = true)(implicit request: HttpServletRequest, response: HttpServletResponse): String

    Builds a full URL from the given relative path.

    Builds a full URL from the given relative path. Takes into account the port configuration, https, ...

    path

    a relative path

    returns

    the full URL

    Definition Classes
    ScalatraBase
  27. def get(transformers: RouteTransformer*)(action: ⇒ Any): Route

    The Scalatra DSL core methods take a list of org.scalatra.RouteMatcher and a block as the action body.

    The Scalatra DSL core methods take a list of org.scalatra.RouteMatcher and a block as the action body. The return value of the block is rendered through the pipeline and sent to the client as the response body.

    See org.scalatra.ScalatraBase#renderResponseBody for the detailed behaviour and how to handle your response body more explicitly, and see how different return types are handled.

    The block is executed in the context of a CoreDsl instance, so all the methods defined in this trait are also available inside the block.

    get("/") {
      <form action="/echo">
        <label>Enter your name</label>
        <input type="text" name="name"/>
      </form>
    }
    
    post("/echo") {
      "hello {params('name)}!"
    }

    ScalatraKernel provides implicit transformation from boolean blocks, strings and regular expressions to org.scalatra.RouteMatcher, so you can write code naturally.

    get("/", request.getRemoteHost == "127.0.0.1") { "Hello localhost!" }
    Definition Classes
    ScalatraBaseCoreDsl
  28. def halt(result: ActionResult): Nothing
    Definition Classes
    Control
  29. def halt[T](status: Integer = null, body: T = (), headers: Map[String, String] = Map.empty, reason: String = null)(implicit arg0: Manifest[T]): Nothing

    Immediately halts processing of a request.

    Immediately halts processing of a request. Can be called from either a before filter or a route.

    status

    the status to set on the response, or null to leave the status unchanged.

    body

    a result to render through the render pipeline as the body

    headers

    headers to add to the response

    reason

    the HTTP status reason to set, or null to leave unchanged.

    Definition Classes
    Control
  30. def handle(req: HttpServletRequest, res: HttpServletResponse): Unit

    Handles a request and renders a response.

    Handles a request and renders a response.

    $ 1. If the request lacks a character encoding, defaultCharacterEncoding is set to the request.

    $ 2. Sets the response's character encoding to defaultCharacterEncoding.

    $ 3. Binds the current request, response, and multiParams, and calls executeRoutes().

    Definition Classes
    ScalateSupportServletBaseScalatraBaseHandler
  31. def head(transformers: RouteTransformer*)(action: ⇒ Any): Route

    Definition Classes
    ScalatraBaseCoreDsl
    See also

    head

  32. def initParameter(name: String): Option[String]

    Gets an init paramter from the config.

    Gets an init paramter from the config.

    name

    the name of the key

    returns

    an option containing the value of the parameter if defined, or None if the parameter is not set.

    Definition Classes
    ScalatraBase
  33. def initialize(config: ConfigT): Unit

    Initializes the kernel.

    Initializes the kernel. Used to provide context that is unavailable when the instance is constructed, for example the servlet lifecycle. Should set the config variable to the parameter.

    config

    the configuration.

    Definition Classes
    ScalateSupportScalatraBaseInitializable
  34. def isDevelopmentMode: Boolean

    A boolean flag representing whether the kernel is in development mode.

    A boolean flag representing whether the kernel is in development mode. The default is true if the environment begins with "dev", case-insensitive.

    Definition Classes
    ScalatraBase
  35. def locale(implicit request: HttpServletRequest): Locale
    Definition Classes
    I18nSupport
  36. implicit def lowestPriorityAny2T[T](implicit arg0: Manifest[T]): TypeConverter[Any, T]
  37. def messages(implicit request: HttpServletRequest): Messages
    Definition Classes
    I18nSupport
  38. def messages(key: String)(implicit request: HttpServletRequest): String
    Definition Classes
    I18nSupport
  39. def methodNotAllowed(f: (Set[HttpMethod]) ⇒ Any): Unit

    Defines a block to run if matching routes are found only for other methods.

    Defines a block to run if matching routes are found only for other methods. The set of matching methods is passed to the block.

    Definition Classes
    ScalatraBaseCoreDsl
  40. def multiParams(implicit request: HttpServletRequest): MultiParams

    The current multiparams.

    The current multiparams. Multiparams are a result of merging the standard request params (query string or post params) with the route parameters extracted from the route matchers of the current route. The default value for an unknown param is the empty sequence. Invalid outside handle.

    Definition Classes
    ScalatraBase
  41. def multiParams(key: String)(implicit request: HttpServletRequest): Seq[String]
    Definition Classes
    ScalatraBase
  42. def notFound(fun: ⇒ Any): Unit

    Defines a block to run if no matching routes are found, or if all matching routes pass.

    Defines a block to run if no matching routes are found, or if all matching routes pass.

    Definition Classes
    ScalatraBaseCoreDsl
  43. def options(transformers: RouteTransformer*)(action: ⇒ Any): Route

    Definition Classes
    ScalatraBaseCoreDsl
    See also

    get

  44. def params(implicit request: HttpServletRequest): Params
    Definition Classes
    ScalatraBase
  45. def params(key: Symbol)(implicit request: HttpServletRequest): String
    Definition Classes
    ScalatraBase
  46. def params(key: String)(implicit request: HttpServletRequest): String
    Definition Classes
    ScalatraBase
  47. def pass(): Nothing

    Immediately exits from the current route.

    Immediately exits from the current route.

    Definition Classes
    Control
  48. def patch(transformers: RouteTransformer*)(action: ⇒ Any): Route

    Definition Classes
    ScalatraBaseCoreDsl
    See also

    patch

  49. def post(transformers: RouteTransformer*)(action: ⇒ Any): Route

    Definition Classes
    ScalatraBaseCoreDsl
    See also

    get

  50. def provideMessages(locale: Locale): Messages

    Provides a default Message resolver

    Provides a default Message resolver

    locale

    Locale used to create instance

    returns

    a new instance of Messages, override to provide own implementation

    Definition Classes
    I18nSupport
  51. def put(transformers: RouteTransformer*)(action: ⇒ Any): Route

    Definition Classes
    ScalatraBaseCoreDsl
    See also

    get

  52. def redirect(uri: String)(implicit request: HttpServletRequest, response: HttpServletResponse): Nothing

    Sends a redirect response and immediately halts the current action.

    Sends a redirect response and immediately halts the current action.

    Definition Classes
    ScalatraBase
  53. def relativeUrl(path: String, params: Iterable[(String, Any)] = Iterable.empty, includeContextPath: Boolean = true, includeServletPath: Boolean = true)(implicit request: HttpServletRequest, response: HttpServletResponse): String
    Definition Classes
    ScalatraBase
  54. implicit def request: HttpServletRequest

    The currently scoped request.

    The currently scoped request. Valid only inside the handle method.

    Definition Classes
    DynamicScopeRequestResponseScope
  55. implicit def response: HttpServletResponse

    The currently scoped response.

    The currently scoped response. Valid only inside the handle method.

    Definition Classes
    DynamicScopeRequestResponseScope
  56. lazy val routes: RouteRegistry

    The routes registered in this kernel.

    The routes registered in this kernel.

    Definition Classes
    ScalatraBase
  57. implicit def safe[S, T](f: (S) ⇒ T): TypeConverter[S, T]
    Definition Classes
    TypeConverterSupport
  58. implicit def safeOption[S, T](f: (S) ⇒ Option[T]): TypeConverter[S, T]

    Implicit convert a (String) => Option[T] function into a TypeConverter[T]

    Implicit convert a (String) => Option[T] function into a TypeConverter[T]

    Definition Classes
    TypeConverterSupport
  59. implicit def seqHead[T](implicit elementConverter: TypeConverter[String, T], mf: Manifest[T]): TypeConverter[Seq[String], T]
    Definition Classes
    DefaultImplicitConversions
  60. implicit def seqToSeq[T](implicit elementConverter: TypeConverter[String, T], mf: Manifest[T]): TypeConverter[Seq[String], Seq[T]]
    Definition Classes
    DefaultImplicitConversions
  61. def serverHost(implicit request: HttpServletRequest): String
    Definition Classes
    ScalatraBase
  62. def serverPort(implicit request: HttpServletRequest): Int
    Definition Classes
    ScalatraBase
  63. def servletContext: ServletContext

    The servlet context in which this kernel runs.

    The servlet context in which this kernel runs.

    Definition Classes
    ScalatraBaseScalatraContext
  64. def session(key: Symbol)(implicit request: HttpServletRequest): Any
    Definition Classes
    SessionSupport
  65. def session(key: String)(implicit request: HttpServletRequest): Any
    Definition Classes
    SessionSupport
  66. implicit def session(implicit request: HttpServletRequest): HttpSession

    The current session.

    The current session. Creates a session if none exists.

    Definition Classes
    SessionSupport
  67. def sessionOption(implicit request: HttpServletRequest): Option[HttpSession]

    The current session.

    The current session. If none exists, None is returned.

    Definition Classes
    SessionSupport
  68. def shutdown(): Unit

    A hook to shutdown the class.

    A hook to shutdown the class. Bridges the gap between servlet's destroy and filter's destroy.

    Definition Classes
    ScalateSupportInitializable
  69. def status: Int

    Gets the status code of the current response.

    Gets the status code of the current response.

    Definition Classes
    ScalatraContext
  70. def status_=(code: Int): Unit

    Sets the status code of the current response.

    Sets the status code of the current response.

    Definition Classes
    ScalatraContext
  71. implicit val stringToBoolean: TypeConverter[String, Boolean]
    Definition Classes
    DefaultImplicitConversions
  72. implicit val stringToByte: TypeConverter[String, Byte]
    Definition Classes
    DefaultImplicitConversions
  73. def stringToDate(format: ⇒ String): TypeConverter[String, Date]
    Definition Classes
    DefaultImplicitConversions
  74. def stringToDateFormat(format: ⇒ DateFormat): TypeConverter[String, Date]
    Definition Classes
    DefaultImplicitConversions
  75. implicit val stringToDouble: TypeConverter[String, Double]
    Definition Classes
    DefaultImplicitConversions
  76. implicit val stringToFloat: TypeConverter[String, Float]
    Definition Classes
    DefaultImplicitConversions
  77. implicit val stringToInt: TypeConverter[String, Int]
    Definition Classes
    DefaultImplicitConversions
  78. implicit val stringToLong: TypeConverter[String, Long]
    Definition Classes
    DefaultImplicitConversions
  79. implicit val stringToSelf: TypeConverter[String, String]
    Definition Classes
    DefaultImplicitConversions
  80. def stringToSeq[T](elementConverter: TypeConverter[String, T], separator: String = ",")(implicit arg0: Manifest[T]): TypeConverter[String, Seq[T]]
    Definition Classes
    DefaultImplicitConversions
  81. implicit val stringToShort: TypeConverter[String, Short]
    Definition Classes
    DefaultImplicitConversions
  82. implicit def toTypedMultiParams(params: MultiParams): TypedMultiParams
    Definition Classes
    ScalatraParamsImplicits
  83. implicit def toTypedParams(params: Params): TypedParams
    Definition Classes
    ScalatraParamsImplicits
  84. def trap(codes: Range)(block: ⇒ Any): Unit

    Error handler for HTTP response status code range.

    Error handler for HTTP response status code range. You can intercept every response code previously specified with #status or even generic 404 error.

      trap(403) {
       "You are not authorized"
      }
    }*

    }}

    Definition Classes
    ScalatraBaseCoreDsl
  85. def trap(code: Int)(block: ⇒ Any): Unit

    Definition Classes
    CoreDsl
    See also

    error

  86. def url(path: String, params: Iterable[(String, Any)] = Iterable.empty, includeContextPath: Boolean = true, includeServletPath: Boolean = true, absolutize: Boolean = true, withSessionId: Boolean = true)(implicit request: HttpServletRequest, response: HttpServletResponse): String

    Returns a context-relative, session-aware URL for a path and specified parameters.

    Returns a context-relative, session-aware URL for a path and specified parameters. Finally, the result is run through response.encodeURL for a session ID, if necessary.

    path

    the base path. If a path begins with '/', then the context path will be prepended to the result

    params

    params, to be appended in the form of a query string

    returns

    the path plus the query string, if any. The path is run through response.encodeURL to add any necessary session tracking parameters.

    Definition Classes
    ScalatraBase
  87. def userLocales(implicit request: HttpServletRequest): Array[Locale]
    Definition Classes
    I18nSupport

Deprecated Value Members

  1. def applicationContext: ServletContext
    Definition Classes
    ScalatraBase
    Annotations
    @deprecated
    Deprecated

    (Since version 2.1.0) Use servletContext instead

  2. def renderTemplate(path: String, attributes: (String, Any)*)(implicit request: HttpServletRequest, response: HttpServletResponse): Unit

    Creates a render context and renders directly to that.

    Creates a render context and renders directly to that. No template search is performed, and the layout strategy is circumvented. Clients are urged to consider layoutTemplate instead.

    Definition Classes
    ScalateSupport
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) not idiomatic Scalate; consider layoutTemplate instead

  3. def status(code: Int): Unit
    Definition Classes
    ScalatraContext
    Annotations
    @deprecated
    Deprecated

    (Since version 2.1.0) Use status_=(Int) instead