+ 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..e6ed3ae
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1 @@
+rootProject.name = 'spud-markdown'
\ No newline at end of file
diff --git a/src/groovy/spud/markdown/MarkdownFormatter.groovy b/src/main/groovy/spud/markdown/MarkdownFormatter.groovy
similarity index 100%
rename from src/groovy/spud/markdown/MarkdownFormatter.groovy
rename to src/main/groovy/spud/markdown/MarkdownFormatter.groovy
diff --git a/src/main/groovy/spud/markdown/SpudMarkdownGrailsPlugin.groovy b/src/main/groovy/spud/markdown/SpudMarkdownGrailsPlugin.groovy
new file mode 100644
index 0000000..8d8c1fa
--- /dev/null
+++ b/src/main/groovy/spud/markdown/SpudMarkdownGrailsPlugin.groovy
@@ -0,0 +1,115 @@
+package spud.markdown
+
+import grails.plugins.*
+import grails.util.Environment
+import groovy.util.logging.Slf4j
+import org.grails.config.NavigableMapPropertySource
+import org.grails.config.PrefixedMapPropertySource
+import org.springframework.core.env.MapPropertySource
+import org.springframework.core.env.PropertySource
+
+@Slf4j
+class SpudMarkdownGrailsPlugin extends Plugin {
+
+ // the version or versions of Grails the plugin is designed for
+ def grailsVersion = "3.3.7 > *"
+ // resources that are excluded from plugin packaging
+ def pluginExcludes = [
+ "grails-app/views/error.gsp"
+ ]
+
+// def dependsOn = [spudCore: "3.0.0"]
+
+ // TODO Fill in these fields
+ def title = "Spud Markdown Plugin" // Headline display name of the plugin
+ def author = "David Estes"
+ def authorEmail = "destes@bcap.com"
+ def description = '''\
+Adds Markdown formatting support to the Spud Site Management platform.
+'''
+ def profiles = ['web']
+
+ // URL to the plugin's documentation
+ def documentation = "http://grails.org/plugin/spud-markdown"
+
+ // 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-markdown/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-markdown"]
+
+ Closure doWithSpring() { {->
+ // TODO Implement runtime spring config (optional)
+ }
+ }
+
+ void doWithDynamicMethods() {
+ // TODO Implement registering dynamic methods to classes (optional)
+ }
+
+ void doWithApplicationContext() {
+ // TODO Implement post initialization spring config (optional)
+// def customConfig = "[name: 'markdown', description: 'Markdown', formatterClass: spud.markdown.MarkdownFormatter]"
+// grailsApplication.config.spud.formatters << [name: 'markdown', description: 'Markdown', formatterClass: spud.markdown.MarkdownFormatter]
+// println "doWithApplicationContext customConfig: ${customConfig}"
+ log.debug "doWithApplicationContext called"
+ def customConfig = [:]
+ customConfig.name = 'markdown'
+ customConfig.description = 'Markdown'
+ customConfig.formatterClass = 'spud.markdown.MarkdownFormatter'
+
+ ArrayList formatters = grailsApplication.config.spud.formatters
+ if(log.isDebugEnabled()) {
+ log.debug "doWithApplicationContext formatters: ${formatters}"
+ }
+ formatters.add(customConfig)
+ if(log.isDebugEnabled()) {
+ formatters.each { formatter ->
+ log.debug "formatter: ${formatter}"
+ }
+ }
+
+ log.debug "doWithApplicationContext formatters.class.simpleName: ${formatters.class.simpleName}"
+ if(log.isTraceEnabled()) {
+ grailsApplication.config.toProperties().each { prop ->
+ log.trace "prop: ${prop}"
+ }
+ }
+ grailsApplication.configChanged()
+ }
+
+ 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.
+ if (event.application) {
+ log.info "onChange event: ${event?.application?.dump()}"
+ } else {
+ log.info "onChange event: ${event?.dump()}"
+ }
+ }
+
+ void onConfigChange(Map event) {
+ // TODO Implement code that is executed when the project configuration changes.
+ // The event is the same as for 'onChange'.
+ log.info "onConfigChange event: ${event?.dump()}"
+ }
+
+ void onShutdown(Map event) {
+ // TODO Implement code that is executed when the application shuts down (optional)
+ }
+}
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/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
-
-
-
-