+ Congratulations, you have successfully started your first Grails application! At the moment
+ this is the default page, feel free to modify it to either redirect to a controller or display
+ whatever content you may choose. Below is a list of controllers that are currently deployed in
+ this application, click on each to execute its default action:
+
+
+
+
+
+
diff --git a/grails-app/views/notFound.gsp b/grails-app/views/notFound.gsp
new file mode 100644
index 0000000..4c873ba
--- /dev/null
+++ b/grails-app/views/notFound.gsp
@@ -0,0 +1,14 @@
+
+
+
+ Page Not Found
+
+
+
+
+
+
Error: Page Not Found (404)
+
Path: ${request.forwardURI}
+
+
+
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..0cb411b
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1 @@
+rootProject.name = 'spud-permalinks'
\ No newline at end of file
diff --git a/src/groovy/spud/permalinks/PermalinkFilter.groovy b/src/groovy/spud/permalinks/PermalinkFilter.groovy
deleted file mode 100644
index 91e0f97..0000000
--- a/src/groovy/spud/permalinks/PermalinkFilter.groovy
+++ /dev/null
@@ -1,72 +0,0 @@
-package spud.permalinks
-
-import javax.servlet.*
-import org.springframework.web.context.support.WebApplicationContextUtils
-import grails.util.Environment
-
-
-class PermalinkFilter implements Filter {
- def permalinkService
- void init(FilterConfig config) throws ServletException {
- def applicationContext = WebApplicationContextUtils.getWebApplicationContext(config.servletContext)
- permalinkService = applicationContext['spudPermalinkService']
- }
-
- void destroy() {
- }
-
- void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
- def permalinks
- def permalinkUri = request.requestURI
- def redirectUrl
-
- if(request.contextPath && request.contextPath != "/") {
- permalinkUri = permalinkUri.substring(request.contextPath.size())
- }
-
- if(permalinkUri.size() > 0) {
- def siteId = request.getAttribute('spudSiteId')
-
- permalinks = permalinkService.permalinksForSite(siteId)
- if(permalinks) {
- permalinks = permalinks.findAll {
- if(permalinkUri.startsWith("/") && permalinkUri.size() > 1) {
- it.urlName == permalinkUri || it.urlName == permalinkUri.substring(1)
- } else {
- it.urlName == permalinkUri
- }
- }
- }
- }
-
-
- if(permalinks) {
- def permalink = permalinks[0]
- if(!permalink.destinationUrl.startsWith("/")) {
- if(permalink.destinationUrl ==~ /(http|https|ftp)\:\/\/.*/) {
- redirectUrl = permalinks[0].destinationUrl
- } else {
- def prefix = request.contextPath ?: "/"
- if(!prefix.endsWith("/")) {
- prefix += "/"
- }
- redirectUrl = prefix + permalinks[0].destinationUrl
- }
- } else {
- redirectUrl = request.contextPath + permalinks[0].destinationUrl
- }
- }
-
- if(redirectUrl) {
- response.setHeader('Location', redirectUrl)
- response.status = 301
- response.flushBuffer()
- }
-
- if (!response.committed) {
- chain.doFilter(request, response)
- }
- }
-
-
-}
diff --git a/src/main/groovy/spud/permalinks/PermalinkFilter.groovy b/src/main/groovy/spud/permalinks/PermalinkFilter.groovy
new file mode 100644
index 0000000..533f72e
--- /dev/null
+++ b/src/main/groovy/spud/permalinks/PermalinkFilter.groovy
@@ -0,0 +1,83 @@
+package spud.permalinks
+
+import groovy.util.logging.Slf4j
+import org.springframework.web.context.support.WebApplicationContextUtils
+
+import javax.servlet.*
+
+@Slf4j
+class PermalinkFilter implements Filter {
+ def permalinkService
+ def applicationContext
+
+ @Override
+ void init(FilterConfig filterConfig) throws ServletException {
+ applicationContext = WebApplicationContextUtils.getWebApplicationContext(filterConfig.servletContext)
+ permalinkService = applicationContext['spudPermalinkService']
+ }
+
+ @Override
+ void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
+ def permalinks
+ def permalinkUri = request.requestURI
+ def redirectUrl
+
+ log.debug "doFilter permalinkUri: ${permalinkUri}"
+ log.debug "doFilter redirectUrl: ${redirectUrl}"
+ log.debug "doFilter request.contextPath: ${request.contextPath}"
+ if(request.contextPath && request.contextPath != "/") {
+ log.debug "doFilterInternal request.contextPath: ${request.contextPath}"
+ permalinkUri = permalinkUri.substring(request.contextPath.size())
+ }
+
+ if(permalinkUri.size() > 0) {
+ def siteId = request.getAttribute('spudSiteId')
+ log.debug "doFilter siteId: ${siteId}"
+ permalinks = permalinkService.permalinksForSite(siteId)
+ if(permalinks) {
+ permalinks = permalinks.findAll {
+ if(permalinkUri.startsWith("/") && permalinkUri.size() > 1) {
+ it.urlName == permalinkUri || it.urlName == permalinkUri.substring(1)
+ } else {
+ it.urlName == permalinkUri
+ }
+ }
+ log.debug "doFilter permalinks: ${permalinks}"
+ }
+ }
+
+ if(permalinks) {
+ def permalink = permalinks[0]
+ log.debug "doFilter permalink: ${permalink}"
+ if(!permalink.destinationUrl.startsWith("/")) {
+ if(permalink.destinationUrl ==~ /(http|https|ftp)\:\/\/.*/) {
+ redirectUrl = permalinks[0].destinationUrl
+ } else {
+ def prefix = request.contextPath ?: "/"
+ if(!prefix.endsWith("/")) {
+ prefix += "/"
+ }
+ redirectUrl = prefix + permalinks[0].destinationUrl
+ }
+ } else {
+ redirectUrl = request.contextPath + permalinks[0].destinationUrl
+ }
+ }
+
+ if(redirectUrl) {
+ log.debug "doFilter redirectUrl: ${redirectUrl}"
+ response.setHeader('Location', redirectUrl)
+ response.status = 301
+ response.flushBuffer()
+ }
+
+ if (!response.committed) {
+ chain.doFilter(request, response)
+ }
+ }
+
+ @Override
+ void destroy() {
+
+ }
+}
diff --git a/src/main/groovy/spud/permalinks/SpudPermalinksGrailsPlugin.groovy b/src/main/groovy/spud/permalinks/SpudPermalinksGrailsPlugin.groovy
new file mode 100644
index 0000000..f154eb8
--- /dev/null
+++ b/src/main/groovy/spud/permalinks/SpudPermalinksGrailsPlugin.groovy
@@ -0,0 +1,118 @@
+package spud.permalinks
+
+import grails.plugins.*
+import groovy.util.logging.Slf4j
+import org.springframework.boot.context.embedded.FilterRegistrationBean
+import org.springframework.core.Ordered
+import org.springframework.util.ClassUtils
+
+@Slf4j
+class SpudPermalinksGrailsPlugin extends Plugin {
+
+ // the version or versions of Grails the plugin is designed for
+ def grailsVersion = "3.1.12 > *"
+ // resources that are excluded from plugin packaging
+ def pluginExcludes = [
+ "grails-app/views/error.gsp"
+ ]
+
+ // TODO Fill in these fields
+ def title = "Spud Permalinks Plugin" // Headline display name of the plugin
+ def author = "David Estes"
+ def authorEmail = "destes@bcap.com"
+ def description = '''\
+Creates a filter for redirecting urls from one location to another and provides an admin interface for defining these permalinks.
+'''
+ def profiles = ['web']
+
+ // URL to the plugin's documentation
+ def documentation = "http://grails.org/plugin/spud-permalinks"
+
+ // Extra (optional) plugin metadata
+
+ // License: one of 'APACHE', 'GPL2', 'GPL3'
+ def license = "APACHE"
+
+ // Details of company behind the plugin (if there is one)
+// def organization = [ name: "My Company", url: "http://www.my-company.com/" ]
+ def organization = [name: "Bertram Labs", url: "http://www.bertramlabs.com/"]
+
+ // Any additional developers beyond the author specified above.
+// def developers = [ [ name: "Joe Bloggs", email: "joe@bloggs.net" ]]
+
+ // Location of the plugin's issue tracker.
+// def issueManagement = [ system: "JIRA", url: "http://jira.grails.org/browse/GPMYPLUGIN" ]
+ def issueManagement = [system: "GITHUB", url: "https://github.com/spud-grails/spud-permalinks/issues"]
+
+ // Online location of the plugin's browseable source code.
+// def scm = [ url: "http://svn.codehaus.org/grails-plugins/" ]
+ def scm = [url: "https://github.com/spud-grails/spud-permalinks"]
+
+ Closure doWithSpring() { {->
+ // TODO Implement runtime spring config (optional)
+
+ def application = grailsApplication
+ def config = application.config
+
+ def catchAllMapping = ["/*".toString()]
+
+ ClassLoader classLoader = application.classLoader
+ Class registrationBean = ClassUtils.isPresent("org.springframework.boot.web.servlet.FilterRegistrationBean", classLoader ) ?
+ ClassUtils.forName("org.springframework.boot.web.servlet.FilterRegistrationBean", classLoader) :
+ ClassUtils.forName("org.springframework.boot.context.embedded.FilterRegistrationBean", classLoader)
+
+ permalinkFilter(registrationBean) {
+ filter = new PermalinkFilter()
+ urlPatterns = catchAllMapping
+ order = Ordered.LOWEST_PRECEDENCE - 100
+ }
+ }
+ }
+
+ void doWithDynamicMethods() {
+ // TODO Implement registering dynamic methods to classes (optional)
+ }
+
+ void doWithApplicationContext() {
+ // TODO Implement post initialization spring config (optional)
+ }
+
+ void onChange(Map event) {
+ // TODO Implement code that is executed when any artefact that this plugin is
+ // watching is modified and reloaded. The event contains: event.source,
+ // event.application, event.manager, event.ctx, and event.plugin.
+ }
+
+ void onConfigChange(Map event) {
+ // TODO Implement code that is executed when the project configuration changes.
+ // The event is the same as for 'onChange'.
+ }
+
+ void onShutdown(Map event) {
+ // TODO Implement code that is executed when the application shuts down (optional)
+ }
+
+ def getWebXmlFilterOrder() {
+ [SpudPermalinkPluginFilter: FilterManager.GRAILS_WEB_REQUEST_POSITION - 100]
+ }
+
+ def doWithWebDescriptor = { xml ->
+
+ def filters = xml.filter[0]
+ filters + {
+ 'filter' {
+ 'filter-name'('SpudPermalinkPluginFilter')
+ 'filter-class'('spud.permalinks.PermalinkFilter')
+ }
+ }
+
+ def mappings = xml.'filter-mapping'[0]
+ mappings + {
+ 'filter-mapping' {
+ 'filter-name'('SpudPermalinkPluginFilter')
+ 'url-pattern'('/*')
+ dispatcher('REQUEST')
+ }
+ }
+ }
+}
diff --git a/test/unit/spud/admin/PermalinksControllerSpec.groovy b/src/test/groovy/spud/admin/PermalinksControllerSpec.groovy
similarity index 100%
rename from test/unit/spud/admin/PermalinksControllerSpec.groovy
rename to src/test/groovy/spud/admin/PermalinksControllerSpec.groovy
diff --git a/test/unit/spud/permalinks/SpudPermalinkServiceSpec.groovy b/src/test/groovy/spud/permalinks/SpudPermalinkServiceSpec.groovy
similarity index 100%
rename from test/unit/spud/permalinks/SpudPermalinkServiceSpec.groovy
rename to src/test/groovy/spud/permalinks/SpudPermalinkServiceSpec.groovy
diff --git a/test/unit/spud/permalinks/SpudPermalinkSpec.groovy b/src/test/groovy/spud/permalinks/SpudPermalinkSpec.groovy
similarity index 100%
rename from test/unit/spud/permalinks/SpudPermalinkSpec.groovy
rename to src/test/groovy/spud/permalinks/SpudPermalinkSpec.groovy
diff --git a/test/unit/spudpermalinks/PermalinksFiltersSpec.groovy b/test/unit/spudpermalinks/PermalinksFiltersSpec.groovy
deleted file mode 100644
index 58c1b35..0000000
--- a/test/unit/spudpermalinks/PermalinksFiltersSpec.groovy
+++ /dev/null
@@ -1,17 +0,0 @@
-package spudpermalinks
-
-import grails.test.mixin.Mock
-import spock.lang.Specification
-
-@Mock(PermalinksFilters)
-class PermalinksFiltersSpec extends Specification {
-
- def setup() {
- }
-
- def cleanup() {
- }
-
- void "test something"() {
- }
-}
diff --git a/web-app/WEB-INF/applicationContext.xml b/web-app/WEB-INF/applicationContext.xml
deleted file mode 100644
index a48dec0..0000000
--- a/web-app/WEB-INF/applicationContext.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
- Grails application factory bean
-
-
-
-
-
- A bean that manages Grails plugins
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- utf-8
-
-
-
-
-
\ No newline at end of file
diff --git a/web-app/WEB-INF/sitemesh.xml b/web-app/WEB-INF/sitemesh.xml
deleted file mode 100644
index 72399ce..0000000
--- a/web-app/WEB-INF/sitemesh.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/web-app/WEB-INF/tld/c.tld b/web-app/WEB-INF/tld/c.tld
deleted file mode 100644
index 5e18236..0000000
--- a/web-app/WEB-INF/tld/c.tld
+++ /dev/null
@@ -1,572 +0,0 @@
-
-
-
-
- JSTL 1.2 core library
- JSTL core
- 1.2
- c
- http://java.sun.com/jsp/jstl/core
-
-
-
- Provides core validation features for JSTL tags.
-
-
- org.apache.taglibs.standard.tlv.JstlCoreTLV
-
-
-
-
-
- Catches any Throwable that occurs in its body and optionally
- exposes it.
-
- catch
- org.apache.taglibs.standard.tag.common.core.CatchTag
- JSP
-
-
-Name of the exported scoped variable for the
-exception thrown from a nested action. The type of the
-scoped variable is the type of the exception thrown.
-
- var
- false
- false
-
-
-
-
-
- Simple conditional tag that establishes a context for
- mutually exclusive conditional operations, marked by
- <when> and <otherwise>
-
- choose
- org.apache.taglibs.standard.tag.common.core.ChooseTag
- JSP
-
-
-
-
- Simple conditional tag, which evalutes its body if the
- supplied condition is true and optionally exposes a Boolean
- scripting variable representing the evaluation of this condition
-
- if
- org.apache.taglibs.standard.tag.rt.core.IfTag
- JSP
-
-
-The test condition that determines whether or
-not the body content should be processed.
-
- test
- true
- true
- boolean
-
-
-
-Name of the exported scoped variable for the
-resulting value of the test condition. The type
-of the scoped variable is Boolean.
-
- var
- false
- false
-
-
-
-Scope for var.
-
- scope
- false
- false
-
-
-
-
-
- Retrieves an absolute or relative URL and exposes its contents
- to either the page, a String in 'var', or a Reader in 'varReader'.
-
- import
- org.apache.taglibs.standard.tag.rt.core.ImportTag
- org.apache.taglibs.standard.tei.ImportTEI
- JSP
-
-
-The URL of the resource to import.
-
- url
- true
- true
-
-
-
-Name of the exported scoped variable for the
-resource's content. The type of the scoped
-variable is String.
-
- var
- false
- false
-
-
-
-Scope for var.
-
- scope
- false
- false
-
-
-
-Name of the exported scoped variable for the
-resource's content. The type of the scoped
-variable is Reader.
-
- varReader
- false
- false
-
-
-
-Name of the context when accessing a relative
-URL resource that belongs to a foreign
-context.
-
- context
- false
- true
-
-
-
-Character encoding of the content at the input
-resource.
-
- charEncoding
- false
- true
-
-
-
-
-
- The basic iteration tag, accepting many different
- collection types and supporting subsetting and other
- functionality
-
- forEach
- org.apache.taglibs.standard.tag.rt.core.ForEachTag
- org.apache.taglibs.standard.tei.ForEachTEI
- JSP
-
-
-Collection of items to iterate over.
-
- items
- false
- true
- java.lang.Object
-
- java.lang.Object
-
-
-
-
-If items specified:
-Iteration begins at the item located at the
-specified index. First item of the collection has
-index 0.
-If items not specified:
-Iteration begins with index set at the value
-specified.
-
- begin
- false
- true
- int
-
-
-
-If items specified:
-Iteration ends at the item located at the
-specified index (inclusive).
-If items not specified:
-Iteration ends when index reaches the value
-specified.
-
- end
- false
- true
- int
-
-
-
-Iteration will only process every step items of
-the collection, starting with the first one.
-
- step
- false
- true
- int
-
-
-
-Name of the exported scoped variable for the
-current item of the iteration. This scoped
-variable has nested visibility. Its type depends
-on the object of the underlying collection.
-
- var
- false
- false
-
-
-
-Name of the exported scoped variable for the
-status of the iteration. Object exported is of type
-javax.servlet.jsp.jstl.core.LoopTagStatus. This scoped variable has nested
-visibility.
-
- varStatus
- false
- false
-
-
-
-
-
- Iterates over tokens, separated by the supplied delimeters
-
- forTokens
- org.apache.taglibs.standard.tag.rt.core.ForTokensTag
- JSP
-
-
-String of tokens to iterate over.
-
- items
- true
- true
- java.lang.String
-
- java.lang.String
-
-
-
-
-The set of delimiters (the characters that
-separate the tokens in the string).
-
- delims
- true
- true
- java.lang.String
-
-
-
-Iteration begins at the token located at the
-specified index. First token has index 0.
-
- begin
- false
- true
- int
-
-
-
-Iteration ends at the token located at the
-specified index (inclusive).
-
- end
- false
- true
- int
-
-
-
-Iteration will only process every step tokens
-of the string, starting with the first one.
-
- step
- false
- true
- int
-
-
-
-Name of the exported scoped variable for the
-current item of the iteration. This scoped
-variable has nested visibility.
-
- var
- false
- false
-
-
-
-Name of the exported scoped variable for the
-status of the iteration. Object exported is of
-type
-javax.servlet.jsp.jstl.core.LoopTag
-Status. This scoped variable has nested
-visibility.
-
- varStatus
- false
- false
-
-
-
-
-
- Like <%= ... >, but for expressions.
-
- out
- org.apache.taglibs.standard.tag.rt.core.OutTag
- JSP
-
-
-Expression to be evaluated.
-
- value
- true
- true
-
-
-
-Default value if the resulting value is null.
-
- default
- false
- true
-
-
-
-Determines whether characters <,>,&,'," in the
-resulting string should be converted to their
-corresponding character entity codes. Default value is
-true.
-
- escapeXml
- false
- true
-
-
-
-
-
-
- Subtag of <choose> that follows <when> tags
- and runs only if all of the prior conditions evaluated to
- 'false'
-
- otherwise
- org.apache.taglibs.standard.tag.common.core.OtherwiseTag
- JSP
-
-
-
-
- Adds a parameter to a containing 'import' tag's URL.
-
- param
- org.apache.taglibs.standard.tag.rt.core.ParamTag
- JSP
-
-
-Name of the query string parameter.
-
- name
- true
- true
-
-
-
-Value of the parameter.
-
- value
- false
- true
-
-
-
-
-
- Redirects to a new URL.
-
- redirect
- org.apache.taglibs.standard.tag.rt.core.RedirectTag
- JSP
-
-
-The URL of the resource to redirect to.
-
- url
- false
- true
-
-
-
-Name of the context when redirecting to a relative URL
-resource that belongs to a foreign context.
-
- context
- false
- true
-
-
-
-
-
- Removes a scoped variable (from a particular scope, if specified).
-
- remove
- org.apache.taglibs.standard.tag.common.core.RemoveTag
- empty
-
-
-Name of the scoped variable to be removed.
-
- var
- true
- false
-
-
-
-Scope for var.
-
- scope
- false
- false
-
-
-
-
-
- Sets the result of an expression evaluation in a 'scope'
-
- set
- org.apache.taglibs.standard.tag.rt.core.SetTag
- JSP
-
-
-Name of the exported scoped variable to hold the value
-specified in the action. The type of the scoped variable is
-whatever type the value expression evaluates to.
-
- var
- false
- false
-
-
-
-Expression to be evaluated.
-
- value
- false
- true
-
- java.lang.Object
-
-
-
-
-Target object whose property will be set. Must evaluate to
-a JavaBeans object with setter property property, or to a
-java.util.Map object.
-
- target
- false
- true
-
-
-
-Name of the property to be set in the target object.
-
- property
- false
- true
-
-
-
-Scope for var.
-
- scope
- false
- false
-
-
-
-
-
- Creates a URL with optional query parameters.
-
- url
- org.apache.taglibs.standard.tag.rt.core.UrlTag
- JSP
-
-
-Name of the exported scoped variable for the
-processed url. The type of the scoped variable is
-String.
-
- var
- false
- false
-
-
-
-Scope for var.
-
- scope
- false
- false
-
-
-
-URL to be processed.
-
- value
- false
- true
-
-
-
-Name of the context when specifying a relative URL
-resource that belongs to a foreign context.
-
- context
- false
- true
-
-
-
-
-
- Subtag of <choose> that includes its body if its
- condition evalutes to 'true'
-
- when
- org.apache.taglibs.standard.tag.rt.core.WhenTag
- JSP
-
-
-The test condition that determines whether or not the
-body content should be processed.
-
- test
- true
- true
- boolean
-
-
-
-
diff --git a/web-app/WEB-INF/tld/fmt.tld b/web-app/WEB-INF/tld/fmt.tld
deleted file mode 100644
index 2ae4776..0000000
--- a/web-app/WEB-INF/tld/fmt.tld
+++ /dev/null
@@ -1,671 +0,0 @@
-
-
-
-
- JSTL 1.2 i18n-capable formatting library
- JSTL fmt
- 1.2
- fmt
- http://java.sun.com/jsp/jstl/fmt
-
-
-
- Provides core validation features for JSTL tags.
-
-
- org.apache.taglibs.standard.tlv.JstlFmtTLV
-
-
-
-
-
- Sets the request character encoding
-
- requestEncoding
- org.apache.taglibs.standard.tag.rt.fmt.RequestEncodingTag
- empty
-
-
-Name of character encoding to be applied when
-decoding request parameters.
-
- value
- false
- true
-
-
-
-
-
- Stores the given locale in the locale configuration variable
-
- setLocale
- org.apache.taglibs.standard.tag.rt.fmt.SetLocaleTag
- empty
-
-
-A String value is interpreted as the
-printable representation of a locale, which
-must contain a two-letter (lower-case)
-language code (as defined by ISO-639),
-and may contain a two-letter (upper-case)
-country code (as defined by ISO-3166).
-Language and country codes must be
-separated by hyphen (-) or underscore
-(_).
-
- value
- true
- true
-
-
-
-Vendor- or browser-specific variant.
-See the java.util.Locale javadocs for
-more information on variants.
-
- variant
- false
- true
-
-
-
-Scope of the locale configuration variable.
-
- scope
- false
- false
-
-
-
-
-
- Specifies the time zone for any time formatting or parsing actions
- nested in its body
-
- timeZone
- org.apache.taglibs.standard.tag.rt.fmt.TimeZoneTag
- JSP
-
-
-The time zone. A String value is interpreted as
-a time zone ID. This may be one of the time zone
-IDs supported by the Java platform (such as
-"America/Los_Angeles") or a custom time zone
-ID (such as "GMT-8"). See
-java.util.TimeZone for more information on
-supported time zone formats.
-
- value
- true
- true
-
-
-
-
-
- Stores the given time zone in the time zone configuration variable
-
- setTimeZone
- org.apache.taglibs.standard.tag.rt.fmt.SetTimeZoneTag
- empty
-
-
-The time zone. A String value is interpreted as
-a time zone ID. This may be one of the time zone
-IDs supported by the Java platform (such as
-"America/Los_Angeles") or a custom time zone
-ID (such as "GMT-8"). See java.util.TimeZone for
-more information on supported time zone
-formats.
-
- value
- true
- true
-
-
-
-Name of the exported scoped variable which
-stores the time zone of type
-java.util.TimeZone.
-
- var
- false
- false
-
-
-
-Scope of var or the time zone configuration
-variable.
-
- scope
- false
- false
-
-
-
-
-
- Loads a resource bundle to be used by its tag body
-
- bundle
- org.apache.taglibs.standard.tag.rt.fmt.BundleTag
- JSP
-
-
-Resource bundle base name. This is the bundle's
-fully-qualified resource name, which has the same
-form as a fully-qualified class name, that is, it uses
-"." as the package component separator and does not
-have any file type (such as ".class" or ".properties")
-suffix.
-
- basename
- true
- true
-
-
-
-Prefix to be prepended to the value of the message
-key of any nested <fmt:message> action.
-
- prefix
- false
- true
-
-
-
-
-
- Loads a resource bundle and stores it in the named scoped variable or
- the bundle configuration variable
-
- setBundle
- org.apache.taglibs.standard.tag.rt.fmt.SetBundleTag
- empty
-
-
-Resource bundle base name. This is the bundle's
-fully-qualified resource name, which has the same
-form as a fully-qualified class name, that is, it uses
-"." as the package component separator and does not
-have any file type (such as ".class" or ".properties")
-suffix.
-
- basename
- true
- true
-
-
-
-Name of the exported scoped variable which stores
-the i18n localization context of type
-javax.servlet.jsp.jstl.fmt.LocalizationC
-ontext.
-
- var
- false
- false
-
-
-
-Scope of var or the localization context
-configuration variable.
-
- scope
- false
- false
-
-
-
-
-
- Maps key to localized message and performs parametric replacement
-
- message
- org.apache.taglibs.standard.tag.rt.fmt.MessageTag
- JSP
-
-
-Message key to be looked up.
-
- key
- false
- true
-
-
-
-Localization context in whose resource
-bundle the message key is looked up.
-
- bundle
- false
- true
-
-
-
-Name of the exported scoped variable
-which stores the localized message.
-
- var
- false
- false
-
-
-
-Scope of var.
-
- scope
- false
- false
-
-
-
-
-
- Supplies an argument for parametric replacement to a containing
- <message> tag
-
- param
- org.apache.taglibs.standard.tag.rt.fmt.ParamTag
- JSP
-
-
-Argument used for parametric replacement.
-
- value
- false
- true
-
-
-
-
-
- Formats a numeric value as a number, currency, or percentage
-
- formatNumber
- org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag
- JSP
-
-
-Numeric value to be formatted.
-
- value
- false
- true
-
-
-
-Specifies whether the value is to be
-formatted as number, currency, or
-percentage.
-
- type
- false
- true
-
-
-
-Custom formatting pattern.
-
- pattern
- false
- true
-
-
-
-ISO 4217 currency code. Applied only
-when formatting currencies (i.e. if type is
-equal to "currency"); ignored otherwise.
-
- currencyCode
- false
- true
-
-
-
-Currency symbol. Applied only when
-formatting currencies (i.e. if type is equal
-to "currency"); ignored otherwise.
-
- currencySymbol
- false
- true
-
-
-
-Specifies whether the formatted output
-will contain any grouping separators.
-
- groupingUsed
- false
- true
-
-
-
-Maximum number of digits in the integer
-portion of the formatted output.
-
- maxIntegerDigits
- false
- true
-
-
-
-Minimum number of digits in the integer
-portion of the formatted output.
-
- minIntegerDigits
- false
- true
-
-
-
-Maximum number of digits in the
-fractional portion of the formatted output.
-
- maxFractionDigits
- false
- true
-
-
-
-Minimum number of digits in the
-fractional portion of the formatted output.
-
- minFractionDigits
- false
- true
-
-
-
-Name of the exported scoped variable
-which stores the formatted result as a
-String.
-
- var
- false
- false
-
-
-
-Scope of var.
-
- scope
- false
- false
-
-
-
-
-
- Parses the string representation of a number, currency, or percentage
-
- parseNumber
- org.apache.taglibs.standard.tag.rt.fmt.ParseNumberTag
- JSP
-
-
-String to be parsed.
-
- value
- false
- true
-
-
-
-Specifies whether the string in the value
-attribute should be parsed as a number,
-currency, or percentage.
-
- type
- false
- true
-
-
-
-Custom formatting pattern that determines
-how the string in the value attribute is to be
-parsed.
-
- pattern
- false
- true
-
-
-
-Locale whose default formatting pattern (for
-numbers, currencies, or percentages,
-respectively) is to be used during the parse
-operation, or to which the pattern specified
-via the pattern attribute (if present) is
-applied.
-
- parseLocale
- false
- true
-
-
-
-Specifies whether just the integer portion of
-the given value should be parsed.
-
- integerOnly
- false
- true
-
-
-
-Name of the exported scoped variable which
-stores the parsed result (of type
-java.lang.Number).
-
- var
- false
- false
-
-
-
-Scope of var.
-
- scope
- false
- false
-
-
-
-
-
- Formats a date and/or time using the supplied styles and pattern
-
- formatDate
- org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag
- empty
-
-
-Date and/or time to be formatted.
-
- value
- true
- true
-
-
-
-Specifies whether the time, the date, or both
-the time and date components of the given
-date are to be formatted.
-
- type
- false
- true
-
-
-
-Predefined formatting style for dates. Follows
-the semantics defined in class
-java.text.DateFormat. Applied only
-when formatting a date or both a date and
-time (i.e. if type is missing or is equal to
-"date" or "both"); ignored otherwise.
-
- dateStyle
- false
- true
-
-
-
-Predefined formatting style for times. Follows
-the semantics defined in class
-java.text.DateFormat. Applied only
-when formatting a time or both a date and
-time (i.e. if type is equal to "time" or "both");
-ignored otherwise.
-
- timeStyle
- false
- true
-
-
-
-Custom formatting style for dates and times.
-
- pattern
- false
- true
-
-
-
-Time zone in which to represent the formatted
-time.
-
- timeZone
- false
- true
-
-
-
-Name of the exported scoped variable which
-stores the formatted result as a String.
-
- var
- false
- false
-
-
-
-Scope of var.
-
- scope
- false
- false
-
-
-
-
-
- Parses the string representation of a date and/or time
-
- parseDate
- org.apache.taglibs.standard.tag.rt.fmt.ParseDateTag
- JSP
-
-
-Date string to be parsed.
-
- value
- false
- true
-
-
-
-Specifies whether the date string in the
-value attribute is supposed to contain a
-time, a date, or both.
-
- type
- false
- true
-
-
-
-Predefined formatting style for days
-which determines how the date
-component of the date string is to be
-parsed. Applied only when formatting a
-date or both a date and time (i.e. if type
-is missing or is equal to "date" or "both");
-ignored otherwise.
-
- dateStyle
- false
- true
-
-
-
-Predefined formatting styles for times
-which determines how the time
-component in the date string is to be
-parsed. Applied only when formatting a
-time or both a date and time (i.e. if type
-is equal to "time" or "both"); ignored
-otherwise.
-
- timeStyle
- false
- true
-
-
-
-Custom formatting pattern which
-determines how the date string is to be
-parsed.
-
- pattern
- false
- true
-
-
-
-Time zone in which to interpret any time
-information in the date string.
-
- timeZone
- false
- true
-
-
-
-Locale whose predefined formatting styles
-for dates and times are to be used during
-the parse operation, or to which the
-pattern specified via the pattern
-attribute (if present) is applied.
-
- parseLocale
- false
- true
-
-
-
-Name of the exported scoped variable in
-which the parsing result (of type
-java.util.Date) is stored.
-
- var
- false
- false
-
-
-
-Scope of var.
-
- scope
- false
- false
-
-
-
-
diff --git a/web-app/WEB-INF/tld/grails.tld b/web-app/WEB-INF/tld/grails.tld
deleted file mode 100644
index 9bd036b..0000000
--- a/web-app/WEB-INF/tld/grails.tld
+++ /dev/null
@@ -1,550 +0,0 @@
-
-
- The Grails custom tag library
- 0.2
- grails
- http://grails.codehaus.org/tags
-
-
- link
- org.codehaus.groovy.grails.web.taglib.jsp.JspLinkTag
- JSP
-
- action
- false
- true
-
-
- controller
- false
- true
-
-
- id
- false
- true
-
-
- url
- false
- true
-
-
- params
- false
- true
-
- true
-
-
- form
- org.codehaus.groovy.grails.web.taglib.jsp.JspFormTag
- JSP
-
- action
- false
- true
-
-
- controller
- false
- true
-
-
- id
- false
- true
-
-
- url
- false
- true
-
-
- method
- true
- true
-
- true
-
-
- select
- org.codehaus.groovy.grails.web.taglib.jsp.JspSelectTag
- JSP
-
- name
- true
- true
-
-
- value
- false
- true
-
-
- optionKey
- false
- true
-
-
- optionValue
- false
- true
-
- true
-
-
- datePicker
- org.codehaus.groovy.grails.web.taglib.jsp.JspDatePickerTag
- empty
-
- name
- true
- true
-
-
- value
- false
- true
-
-
- precision
- false
- true
-
- false
-
-
- currencySelect
- org.codehaus.groovy.grails.web.taglib.jsp.JspCurrencySelectTag
- empty
-
- name
- true
- true
-
-
- value
- false
- true
-
- true
-
-
- localeSelect
- org.codehaus.groovy.grails.web.taglib.jsp.JspLocaleSelectTag
- empty
-
- name
- true
- true
-
-
- value
- false
- true
-
- true
-
-
- timeZoneSelect
- org.codehaus.groovy.grails.web.taglib.jsp.JspTimeZoneSelectTag
- empty
-
- name
- true
- true
-
-
- value
- false
- true
-
- true
-
-
- checkBox
- org.codehaus.groovy.grails.web.taglib.jsp.JspCheckboxTag
- empty
-
- name
- true
- true
-
-
- value
- true
- true
-
- true
-
-
- hasErrors
- org.codehaus.groovy.grails.web.taglib.jsp.JspHasErrorsTag
- JSP
-
- model
- false
- true
-
-
- bean
- false
- true
-
-
- field
- false
- true
-
- false
-
-
- eachError
- org.codehaus.groovy.grails.web.taglib.jsp.JspEachErrorTag
- JSP
-
- model
- false
- true
-
-
- bean
- false
- true
-
-
- field
- false
- true
-
- false
-
-
- renderErrors
- org.codehaus.groovy.grails.web.taglib.jsp.JspEachErrorTag
- JSP
-
- model
- false
- true
-
-
- bean
- false
- true
-
-
- field
- false
- true
-
-
- as
- true
- true
-
- false
-
-
- message
- org.codehaus.groovy.grails.web.taglib.jsp.JspMessageTag
- JSP
-
- code
- false
- true
-
-
- error
- false
- true
-
-
- default
- false
- true
-
- false
-
-
- remoteFunction
- org.codehaus.groovy.grails.web.taglib.jsp.JspRemoteFunctionTag
- empty
-
- before
- false
- true
-
-
- after
- false
- true
-
-
- action
- false
- true
-
-
- controller
- false
- true
-
-
- id
- false
- true
-
-
- url
- false
- true
-
-
- params
- false
- true
-
-
- asynchronous
- false
- true
-
-
- method
- false
- true
-
-
- update
- false
- true
-
-
- onSuccess
- false
- true
-
-
- onFailure
- false
- true
-
-
- onComplete
- false
- true
-
-
- onLoading
- false
- true
-
-
- onLoaded
- false
- true
-
-
- onInteractive
- false
- true
-
- true
-
-
- remoteLink
- org.codehaus.groovy.grails.web.taglib.jsp.JspRemoteLinkTag
- JSP
-
- before
- false
- true
-
-
- after
- false
- true
-
-
- action
- false
- true
-
-
- controller
- false
- true
-
-
- id
- false
- true
-
-
- url
- false
- true
-
-
- params
- false
- true
-
-
- asynchronous
- false
- true
-
-
- method
- false
- true
-
-
- update
- false
- true
-
-
- onSuccess
- false
- true
-
-
- onFailure
- false
- true
-
-
- onComplete
- false
- true
-
-
- onLoading
- false
- true
-
-
- onLoaded
- false
- true
-
-
- onInteractive
- false
- true
-
- true
-
-
- formRemote
- org.codehaus.groovy.grails.web.taglib.jsp.JspFormRemoteTag
- JSP
-
- before
- false
- true
-
-
- after
- false
- true
-
-
- action
- false
- true
-
-
- controller
- false
- true
-
-
- id
- false
- true
-
-
- url
- false
- true
-
-
- params
- false
- true
-
-
- asynchronous
- false
- true
-
-
- method
- false
- true
-
-
- update
- false
- true
-
-
- onSuccess
- false
- true
-
-
- onFailure
- false
- true
-
-
- onComplete
- false
- true
-
-
- onLoading
- false
- true
-
-
- onLoaded
- false
- true
-
-
- onInteractive
- false
- true
-
- true
-
-
- invokeTag
- org.codehaus.groovy.grails.web.taglib.jsp.JspInvokeGrailsTagLibTag
- JSP
-
- it
- java.lang.Object
- true
- NESTED
-
-
- tagName
- true
- true
-
- true
-
-
-
diff --git a/web-app/WEB-INF/tld/spring-form.tld b/web-app/WEB-INF/tld/spring-form.tld
deleted file mode 100644
index 1520a68..0000000
--- a/web-app/WEB-INF/tld/spring-form.tld
+++ /dev/null
@@ -1,2411 +0,0 @@
-
-
-
- Spring Framework JSP Form Tag Library
- 3.0
- form
- http://www.springframework.org/tags/form
-
-
- Renders an HTML 'form' tag and exposes a binding path to inner tags for binding.
- form
- org.springframework.web.servlet.tags.form.FormTag
- JSP
-
- HTML Standard Attribute
- id
- false
- true
-
-
- HTML Standard Attribute - added for backwards compatibility cases
- name
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- Name of the model attribute under which the form object is exposed.
- Defaults to 'command'.
- modelAttribute
- false
- true
-
-
- Name of the model attribute under which the form object is exposed.
- Defaults to 'command'.
- commandName
- false
- true
-
-
- HTML Required Attribute
- action
- false
- true
-
-
- HTML Optional Attribute
- method
- false
- true
-
-
- HTML Optional Attribute
- target
- false
- true
-
-
- HTML Optional Attribute
- enctype
- false
- true
-
-
- Specifies the list of character encodings for input data that is accepted by the server processing this form. The value is a space- and/or comma-delimited list of charset values. The client must interpret this list as an exclusive-or list, i.e., the server is able to accept any single character encoding per entity received.
- acceptCharset
- false
- true
-
-
- HTML Event Attribute
- onsubmit
- false
- true
-
-
- HTML Event Attribute
- onreset
- false
- true
-
-
- Common Optional Attribute
- autocomplete
- false
- true
-
-
- The parameter name used for HTTP methods other then GET and POST. Default is '_method'
- methodParam
- false
- true
-
- true
-
-
-
- Renders an HTML 'input' tag with type 'text' using the bound value.
- input
- org.springframework.web.servlet.tags.form.InputTag
- empty
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- HTML Event Attribute
- onfocus
- false
- true
-
-
- HTML Event Attribute
- onblur
- false
- true
-
-
- HTML Event Attribute
- onchange
- false
- true
-
-
- HTML Standard Attribute
- accesskey
- false
- true
-
-
- HTML Optional Attribute
- size
- false
- true
-
-
- HTML Optional Attribute
- maxlength
- false
- true
-
-
- HTML Optional Attribute
- alt
- false
- true
-
-
- HTML Event Attribute
- onselect
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will make the HTML element readonly.
- readonly
- false
- true
-
-
- Common Optional Attribute
- autocomplete
- false
- true
-
- true
-
-
-
- Renders an HTML 'input' tag with type 'password' using the bound value.
- password
- org.springframework.web.servlet.tags.form.PasswordInputTag
- empty
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- HTML Event Attribute
- onfocus
- false
- true
-
-
- HTML Event Attribute
- onblur
- false
- true
-
-
- HTML Event Attribute
- onchange
- false
- true
-
-
- HTML Standard Attribute
- accesskey
- false
- true
-
-
- HTML Optional Attribute
- size
- false
- true
-
-
- HTML Optional Attribute
- maxlength
- false
- true
-
-
- HTML Optional Attribute
- alt
- false
- true
-
-
- HTML Event Attribute
- onselect
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will make the HTML element readonly.
- readonly
- false
- true
-
-
- Common Optional Attribute
- autocomplete
- false
- true
-
-
- Is the password value to be shown? Defaults to false.
- showPassword
- false
- true
-
- true
-
-
-
- Renders an HTML 'input' tag with type 'hidden' using the bound value.
- hidden
- org.springframework.web.servlet.tags.form.HiddenInputTag
- empty
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
- true
-
-
-
- Renders an HTML 'select' element. Supports databinding to the selected option.
- select
- org.springframework.web.servlet.tags.form.SelectTag
- JSP
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- HTML Event Attribute
- onfocus
- false
- true
-
-
- HTML Event Attribute
- onblur
- false
- true
-
-
- HTML Event Attribute
- onchange
- false
- true
-
-
- HTML Standard Attribute
- accesskey
- false
- true
-
-
- The Collection, Map or array of objects used to generate the inner 'option' tags
- items
- false
- true
-
-
- Name of the property mapped to 'value' attribute of the 'option' tag
- itemValue
- false
- true
-
-
- Name of the property mapped to the inner text of the 'option' tag
- itemLabel
- false
- true
-
-
- HTML Optional Attribute
- size
- false
- true
-
-
- HTML Optional Attribute
- multiple
- false
- true
-
- true
-
-
-
- Renders a single HTML 'option'. Sets 'selected' as appropriate based on bound value.
- option
- org.springframework.web.servlet.tags.form.OptionTag
- JSP
-
- The actual value bound to the 'value' attribute
- value
- java.lang.Object
-
-
- The String representation of thr value bound to the 'value' attribute, taking into consideration
- any PropertyEditor associated with the enclosing 'select' tag.
- displayValue
- java.lang.String
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- HTML Optional Attribute
- value
- true
- true
-
-
- HTML Optional Attribute
- label
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
- true
-
-
-
- Renders a list of HTML 'option' tags. Sets 'selected' as appropriate based on bound value.
- options
- org.springframework.web.servlet.tags.form.OptionsTag
- empty
-
- HTML Standard Attribute
- id
- false
- true
-
-
- The Collection, Map or array of objects used to generate the inner 'option' tags. This attribute is required unless the containing select's property for data binding is an Enum, in which case the enum's values are used.
- items
- false
- true
-
-
- Name of the property mapped to 'value' attribute of the 'option' tag
- itemValue
- false
- true
-
-
- Name of the property mapped to the inner text of the 'option' tag
- itemLabel
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
- true
-
-
-
- Renders an HTML 'input' tag with type 'radio'.
- radiobutton
- org.springframework.web.servlet.tags.form.RadioButtonTag
- empty
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- HTML Event Attribute
- onfocus
- false
- true
-
-
- HTML Event Attribute
- onblur
- false
- true
-
-
- HTML Event Attribute
- onchange
- false
- true
-
-
- HTML Standard Attribute
- accesskey
- false
- true
-
-
- HTML Optional Attribute
- value
- false
- true
-
-
- Value to be displayed as part of the tag
- label
- false
- true
-
- true
-
-
-
- Renders multiple HTML 'input' tags with type 'radio'.
- radiobuttons
- org.springframework.web.servlet.tags.form.RadioButtonsTag
- empty
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- HTML Event Attribute
- onfocus
- false
- true
-
-
- HTML Event Attribute
- onblur
- false
- true
-
-
- HTML Event Attribute
- onchange
- false
- true
-
-
- HTML Standard Attribute
- accesskey
- false
- true
-
-
- The Collection, Map or array of objects used to generate the 'input' tags with type 'radio'. This attribute is required unless the property for data binding is an Enum, in which case the enum's values are used.
- items
- false
- true
-
-
- Name of the property mapped to 'value' attribute of the 'input' tags with type 'radio'
- itemValue
- false
- true
-
-
- Value to be displayed as part of the 'input' tags with type 'radio'
- itemLabel
- false
- true
-
-
- Delimiter to use between each 'input' tag with type 'radio'. There is no delimiter by default.
- delimiter
- false
- true
-
-
- Specifies the HTML element that is used to enclose each 'input' tag with type 'radio'. Defaults to 'span'.
- element
- false
- true
-
- true
-
-
-
- Renders an HTML 'input' tag with type 'checkbox'.
- checkbox
- org.springframework.web.servlet.tags.form.CheckboxTag
- empty
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- HTML Event Attribute
- onfocus
- false
- true
-
-
- HTML Event Attribute
- onblur
- false
- true
-
-
- HTML Event Attribute
- onchange
- false
- true
-
-
- HTML Standard Attribute
- accesskey
- false
- true
-
-
- HTML Optional Attribute
- value
- false
- true
-
-
- Value to be displayed as part of the tag
- label
- false
- true
-
- true
-
-
-
- Renders multiple HTML 'input' tags with type 'checkbox'.
- checkboxes
- org.springframework.web.servlet.tags.form.CheckboxesTag
- empty
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- HTML Event Attribute
- onfocus
- false
- true
-
-
- HTML Event Attribute
- onblur
- false
- true
-
-
- HTML Event Attribute
- onchange
- false
- true
-
-
- HTML Standard Attribute
- accesskey
- false
- true
-
-
- The Collection, Map or array of objects used to generate the 'input' tags with type 'checkbox'
- items
- true
- true
-
-
- Name of the property mapped to 'value' attribute of the 'input' tags with type 'checkbox'
- itemValue
- false
- true
-
-
- Value to be displayed as part of the 'input' tags with type 'checkbox'
- itemLabel
- false
- true
-
-
- Delimiter to use between each 'input' tag with type 'checkbox'. There is no delimiter by default.
- delimiter
- false
- true
-
-
- Specifies the HTML element that is used to enclose each 'input' tag with type 'checkbox'. Defaults to 'span'.
- element
- false
- true
-
- true
-
-
-
- Renders an HTML 'textarea'.
- textarea
- org.springframework.web.servlet.tags.form.TextareaTag
- empty
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used when the bound field has errors.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- HTML Event Attribute
- onfocus
- false
- true
-
-
- HTML Event Attribute
- onblur
- false
- true
-
-
- HTML Event Attribute
- onchange
- false
- true
-
-
- HTML Standard Attribute
- accesskey
- false
- true
-
-
- HTML Required Attribute
- rows
- false
- true
-
-
- HTML Required Attribute
- cols
- false
- true
-
-
- HTML Event Attribute
- onselect
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will make the HTML element readonly.
- readonly
- false
- true
-
- true
-
-
-
- Renders field errors in an HTML 'span' tag.
- errors
- org.springframework.web.servlet.tags.form.ErrorsTag
- JSP
-
- messages
- java.util.List
-
-
- Path to errors object for data binding
- path
- false
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- Delimiter for displaying multiple error messages. Defaults to the br tag.
- delimiter
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute
- cssClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
-
- Specifies the HTML element that is used to render the enclosing errors.
- element
- false
- true
-
- true
-
-
-
- Renders a form field label in an HTML 'label' tag.
- label
- org.springframework.web.servlet.tags.form.LabelTag
- JSP
-
- Path to property for data binding
- path
- true
- true
-
-
- HTML Standard Attribute
- id
- false
- true
-
-
- Enable/disable HTML escaping of rendered values.
- htmlEscape
- false
- true
-
-
- HTML Standard Attribute
- for
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute.
- cssClass
- false
- true
-
-
- Equivalent to "class" - HTML Optional Attribute. Used only when errors are present.
- cssErrorClass
- false
- true
-
-
- Equivalent to "style" - HTML Optional Attribute
- cssStyle
- false
- true
-
-
- HTML Standard Attribute
- lang
- false
- true
-
-
- HTML Standard Attribute
- title
- false
- true
-
-
- HTML Standard Attribute
- dir
- false
- true
-
-
- HTML Standard Attribute
- tabindex
- false
- true
-
-
- HTML Event Attribute
- onclick
- false
- true
-
-
- HTML Event Attribute
- ondblclick
- false
- true
-
-
- HTML Event Attribute
- onmousedown
- false
- true
-
-
- HTML Event Attribute
- onmouseup
- false
- true
-
-
- HTML Event Attribute
- onmouseover
- false
- true
-
-
- HTML Event Attribute
- onmousemove
- false
- true
-
-
- HTML Event Attribute
- onmouseout
- false
- true
-
-
- HTML Event Attribute
- onkeypress
- false
- true
-
-
- HTML Event Attribute
- onkeyup
- false
- true
-
-
- HTML Event Attribute
- onkeydown
- false
- true
-
- true
-
-
-
- Renders an HTML 'button' tag.
- button
- org.springframework.web.servlet.tags.form.ButtonTag
- JSP
-
- HTML Standard Attribute
- id
- false
- true
-
-
- The name attribute for the HTML button tag
- name
- false
- true
-
-
- The value attribute for the HTML button tag
- value
- false
- true
-
-
- HTML Optional Attribute. Setting the value of this attribute to 'true' (without the quotes) will disable the HTML element.
- disabled
- false
- true
-
- true
-
-
-
diff --git a/web-app/WEB-INF/tld/spring.tld b/web-app/WEB-INF/tld/spring.tld
deleted file mode 100644
index a0a8c6f..0000000
--- a/web-app/WEB-INF/tld/spring.tld
+++ /dev/null
@@ -1,457 +0,0 @@
-
-
-
- Spring Framework JSP Tag Library
- 3.0
- spring
- http://www.springframework.org/tags
-
-
-
- Sets default HTML escape value for the current page.
- Overrides a "defaultHtmlEscape" context-param in web.xml, if any.
-
- htmlEscape
- org.springframework.web.servlet.tags.HtmlEscapeTag
- JSP
-
- Set the default value for HTML escaping, to be put
- into the current PageContext.
- defaultHtmlEscape
- true
- true
-
-
-
-
-
- Escapes its enclosed body content, applying HTML escaping and/or JavaScript escaping.
- The HTML escaping flag participates in a page-wide or application-wide setting
- (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
-
- escapeBody
- org.springframework.web.servlet.tags.EscapeBodyTag
- JSP
-
- Set HTML escaping for this tag, as boolean value. Overrides the
- default HTML escaping setting for the current page.
- htmlEscape
- false
- true
-
-
- Set JavaScript escaping for this tag, as boolean value.
- Default is false.
- javaScriptEscape
- false
- true
-
-
-
-
-
- Retrieves the message with the given code, or text if code isn't resolvable.
- The HTML escaping flag participates in a page-wide or application-wide setting
- (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
-
- message
- org.springframework.web.servlet.tags.MessageTag
- JSP
-
- A MessageSourceResolvable argument (direct or through JSP EL).
- Fits nicely when used in conjunction with Spring's own validation error
- classes which all implement the MessageSourceResolvable interface. For
- example, this allows you to iterate over all of the errors in a form,
- passing each error (using a runtime expression) as the value of this
- 'message' attribute, thus effecting the easy display of such error
- messages.
- message
- false
- true
-
-
- The code (key) to use when looking up the message.
- If code is not provided, the text attribute will be used.
- code
- false
- true
-
-
- Set optional message arguments for this tag, as a
- (comma-)delimited String (each String argument can contain JSP EL),
- an Object array (used as argument array), or a single Object (used
- as single argument).
- arguments
- false
- true
-
-
- The separator character to be used for splitting the
- arguments string value; defaults to a 'comma' (',').
- argumentSeparator
- false
- true
-
-
- Default text to output when a message for the given code
- could not be found. If both text and code are not set, the tag will
- output null.
- text
- false
- true
-
-
- The string to use when binding the result to the page,
- request, session or application scope. If not specified, the result
- gets outputted to the writer (i.e. typically directly to the JSP).
- var
- false
- true
-
-
- The scope to use when exporting the result to a variable.
- This attribute is only used when var is also set. Possible values are
- page, request, session and application.
- scope
- false
- true
-
-
- Set HTML escaping for this tag, as boolean value.
- Overrides the default HTML escaping setting for the current page.
- htmlEscape
- false
- true
-
-
- Set JavaScript escaping for this tag, as boolean value. Default is false.
- javaScriptEscape
- false
- true
-
-
-
-
-
- Retrieves the theme message with the given code, or text if code isn't resolvable.
- The HTML escaping flag participates in a page-wide or application-wide setting
- (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
-
- theme
- org.springframework.web.servlet.tags.ThemeTag
- JSP
-
- A MessageSourceResolvable argument (direct or through JSP EL).
- message
- false
- true
-
-
- The code (key) to use when looking up the message.
- If code is not provided, the text attribute will be used.
- code
- false
- true
-
-
- Set optional message arguments for this tag, as a
- (comma-)delimited String (each String argument can contain JSP EL),
- an Object array (used as argument array), or a single Object (used
- as single argument).
- arguments
- false
- true
-
-
- The separator character to be used for splitting the
- arguments string value; defaults to a 'comma' (',').
- argumentSeparator
- false
- true
-
-
- Default text to output when a message for the given code
- could not be found. If both text and code are not set, the tag will
- output null.
- text
- false
- true
-
-
- The string to use when binding the result to the page,
- request, session or application scope. If not specified, the result
- gets outputted to the writer (i.e. typically directly to the JSP).
- var
- false
- true
-
-
- The scope to use when exporting the result to a variable.
- This attribute is only used when var is also set. Possible values are
- page, request, session and application.
- scope
- false
- true
-
-
- Set HTML escaping for this tag, as boolean value.
- Overrides the default HTML escaping setting for the current page.
- htmlEscape
- false
- true
-
-
- Set JavaScript escaping for this tag, as boolean value. Default is false.
- javaScriptEscape
- false
- true
-
-
-
-
-
- Provides Errors instance in case of bind errors.
- The HTML escaping flag participates in a page-wide or application-wide setting
- (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
-
- hasBindErrors
- org.springframework.web.servlet.tags.BindErrorsTag
- JSP
-
- errors
- org.springframework.validation.Errors
-
-
- The name of the bean in the request, that needs to be
- inspected for errors. If errors are available for this bean, they
- will be bound under the 'errors' key.
- name
- true
- true
-
-
- Set HTML escaping for this tag, as boolean value.
- Overrides the default HTML escaping setting for the current page.
- htmlEscape
- false
- true
-
-
-
-
-
- Sets a nested path to be used by the bind tag's path.
-
- nestedPath
- org.springframework.web.servlet.tags.NestedPathTag
- JSP
-
- nestedPath
- java.lang.String
-
-
- Set the path that this tag should apply. E.g. 'customer'
- to allow bind paths like 'address.street' rather than
- 'customer.address.street'.
- path
- true
- true
-
-
-
-
-
- Provides BindStatus object for the given bind path.
- The HTML escaping flag participates in a page-wide or application-wide setting
- (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
-
- bind
- org.springframework.web.servlet.tags.BindTag
- JSP
-
- status
- org.springframework.web.servlet.support.BindStatus
-
-
- The path to the bean or bean property to bind status
- information for. For instance account.name, company.address.zipCode
- or just employee. The status object will exported to the page scope,
- specifically for this bean or bean property
- path
- true
- true
-
-
- Set whether to ignore a nested path, if any. Default is to not ignore.
- ignoreNestedPath
- false
- true
-
-
- Set HTML escaping for this tag, as boolean value. Overrides
- the default HTML escaping setting for the current page.
- htmlEscape
- false
- true
-
-
-
-
-
- Provides transformation of variables to Strings, using an appropriate
- custom PropertyEditor from BindTag (can only be used inside BindTag).
- The HTML escaping flag participates in a page-wide or application-wide setting
- (i.e. by HtmlEscapeTag or a 'defaultHtmlEscape' context-param in web.xml).
-
- transform
- org.springframework.web.servlet.tags.TransformTag
- JSP
-
- The value to transform. This is the actual object you want
- to have transformed (for instance a Date). Using the PropertyEditor that
- is currently in use by the 'spring:bind' tag.
- value
- true
- true
-
-
- The string to use when binding the result to the page,
- request, session or application scope. If not specified, the result gets
- outputted to the writer (i.e. typically directly to the JSP).
- var
- false
- true
-
-
- The scope to use when exported the result to a variable.
- This attribute is only used when var is also set. Possible values are
- page, request, session and application.
- scope
- false
- true
-
-
- Set HTML escaping for this tag, as boolean value. Overrides
- the default HTML escaping setting for the current page.
- htmlEscape
- false
- true
-
-
-
-
- URL tag based on the JSTL c:url tag. This variant is fully
- backwards compatible with the standard tag. Enhancements include support
- for URL template parameters.
- url
- org.springframework.web.servlet.tags.UrlTag
- JSP
-
- The URL to build. This value can include template place holders
- that are replaced with the URL encoded value of the named parameter. Parameters
- must be defined using the param tag inside the body of this tag.
- value
- true
- true
-
-
- Specifies a remote application context path. The default is the
- current application context path.
- context
- false
- true
-
-
- The name of the variable to export the URL value to.
- var
- false
- true
-
-
- The scope for the var. 'application', 'session', 'request' and
- 'page' scopes are supported. Defaults to page scope. This attribute has no
- effect unless the var attribute is also defined.
- scope
- false
- true
-
-
- Set HTML escaping for this tag, as a boolean value. Overrides the
- default HTML escaping setting for the current page.
- htmlEscape
- false
- true
-
-
- Set JavaScript escaping for this tag, as a boolean value.
- Default is false.
- javaScriptEscape
- false
- true
-
-
-
-
- Parameter tag based on the JSTL c:param tag. The sole purpose is to
- support params inside the spring:url tag.
- param
- org.springframework.web.servlet.tags.ParamTag
- JSP
-
- The name of the parameter.
- name
- true
- true
-
-
- The value of the parameter.
- value
- false
- true
-
-
-
-
- Evaluates a Spring expression (SpEL) and either prints the result or assigns it to a variable.
- eval
- org.springframework.web.servlet.tags.EvalTag
- JSP
-
- The expression to evaluate.
- expression
- true
- true
-
-
- The name of the variable to export the evaluation result to.
- var
- false
- true
-
-
- The scope for the var. 'application', 'session', 'request' and
- 'page' scopes are supported. Defaults to page scope. This attribute has no
- effect unless the var attribute is also defined.
- scope
- false
- true
-
-
- Set HTML escaping for this tag, as a boolean value. Overrides the
- default HTML escaping setting for the current page.
- htmlEscape
- false
- true
-
-
- Set JavaScript escaping for this tag, as a boolean value. Default is false.
- javaScriptEscape
- false
- true
-
-
-
-