org.apache.tapestry5
Class SymbolConstants

java.lang.Object
  extended by org.apache.tapestry5.SymbolConstants

public class SymbolConstants
extends Object

Defines the names of symbols used to configure Tapestry.

See Also:
SymbolSource

Field Summary
static String APPLICATION_CATALOG
          The location of the application-wide component messages catalog, relative to the web application context.
static String CHARSET
          The charset used when rendering page markup; the charset is also used as ther request encoding when handling incoming requests.
static String COMPRESS_WHITESPACE
          Controls whether whitespace is compressed by default in templates, or left as is.
static String EXCEPTION_REPORT_PAGE
          Name of page used to report exceptions; the page must implement ExceptionReporter.
static String FILE_CHECK_INTERVAL
          Time interval defining how often Tapestry will check for updates to local files (including classes).
static String FILE_CHECK_UPDATE_TIMEOUT
          Time interval that sets how long Tapestry will wait to obtain the exclusive lock needed to check local files.
static String FORCE_ABSOLUTE_URIS
          Symbol which may be set to "true" to force the use of absolute URIs (not relative URIs) exclusively.
static String PRODUCTION_MODE
          Indicates whether Tapestry is running in production mode or developer mode.
static String SUPPORTED_LOCALES
          The list of locales supported by the application; locales identified in the incoming request are "narrowed" to one of these values.
static String SUPPRESS_REDIRECT_FROM_ACTION_REQUESTS
          If set to true, then action requests will render a page markup response immediately, rather than sending a redirect to render the response.
static String TAPESTRY_VERSION
          The version number of the core Tapestry framework, or UNKNOWN if the version number is not available (which should only occur when developing Tapestry).
 
Constructor Summary
SymbolConstants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PRODUCTION_MODE

public static final String PRODUCTION_MODE
Indicates whether Tapestry is running in production mode or developer mode. The primary difference is how exceptions are reported.

See Also:
Constant Field Values

FORCE_ABSOLUTE_URIS

public static final String FORCE_ABSOLUTE_URIS
Symbol which may be set to "true" to force the use of absolute URIs (not relative URIs) exclusively.

See Also:
Constant Field Values

SUPPRESS_REDIRECT_FROM_ACTION_REQUESTS

public static final String SUPPRESS_REDIRECT_FROM_ACTION_REQUESTS
If set to true, then action requests will render a page markup response immediately, rather than sending a redirect to render the response.

See Also:
Constant Field Values

SUPPORTED_LOCALES

public static final String SUPPORTED_LOCALES
The list of locales supported by the application; locales identified in the incoming request are "narrowed" to one of these values.

See Also:
Constant Field Values

COMPRESS_WHITESPACE

public static final String COMPRESS_WHITESPACE
Controls whether whitespace is compressed by default in templates, or left as is. The factory default is to compress whitespace. This can be overridden using the xml:space attribute inside template elements.

See Also:
Constant Field Values

FILE_CHECK_INTERVAL

public static final String FILE_CHECK_INTERVAL
Time interval defining how often Tapestry will check for updates to local files (including classes). This number can be raised in a production environment.

See Also:
Constant Field Values

FILE_CHECK_UPDATE_TIMEOUT

public static final String FILE_CHECK_UPDATE_TIMEOUT
Time interval that sets how long Tapestry will wait to obtain the exclusive lock needed to check local files.

See Also:
Constant Field Values

TAPESTRY_VERSION

public static final String TAPESTRY_VERSION
The version number of the core Tapestry framework, or UNKNOWN if the version number is not available (which should only occur when developing Tapestry).

See Also:
Constant Field Values

APPLICATION_CATALOG

public static final String APPLICATION_CATALOG
The location of the application-wide component messages catalog, relative to the web application context. This will normally be WEB-INF/app.properties.

See Also:
Constant Field Values

CHARSET

public static final String CHARSET
The charset used when rendering page markup; the charset is also used as ther request encoding when handling incoming requests. The default is "UTF-8".

See Also:
Constant Field Values

EXCEPTION_REPORT_PAGE

public static final String EXCEPTION_REPORT_PAGE
Name of page used to report exceptions; the page must implement ExceptionReporter. This is used by the default exception report handler service.

See Also:
Constant Field Values
Constructor Detail

SymbolConstants

public SymbolConstants()


Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.