Index: lams_admin/web/WEB-INF/jstl/tlds/c.tld =================================================================== diff -u -rcf0f2fa25a0c6ff2116f6a3310292e72beea2c64 -rbf443a5a78c56abc2f752e4cb1f703ba54e83ac3 --- lams_admin/web/WEB-INF/jstl/tlds/c.tld (.../c.tld) (revision cf0f2fa25a0c6ff2116f6a3310292e72beea2c64) +++ lams_admin/web/WEB-INF/jstl/tlds/c.tld (.../c.tld) (revision bf443a5a78c56abc2f752e4cb1f703ba54e83ac3) @@ -1,415 +1,562 @@ - - - - 1.0 - 1.2 - c - http://java.sun.com/jstl/core + + + + + JSTL 1.1 core library JSTL core - JSTL 1.0 core library + 1.1 + c + http://java.sun.com/jsp/jstl/core + + Provides core validation features for JSTL tags. + - org.apache.taglibs.standard.tlv.JstlCoreTLV + org.apache.taglibs.standard.tlv.JstlCoreTLV - - expressionAttributes - - out:value - out:default - out:escapeXml - if:test - import:url - import:context - import:charEncoding - forEach:items - forEach:begin - forEach:end - forEach:step - forTokens:items - forTokens:begin - forTokens:end - forTokens:step - param:encode - param:name - param:value - redirect:context - redirect:url - set:property - set:target - set:value - url:context - url:value - when:test - - - Whitespace-separated list of colon-separated token pairs - describing tag:attribute combinations that accept expressions. - The validator uses this information to determine which - attributes need their syntax validated. - - - catch - org.apache.taglibs.standard.tag.common.core.CatchTag - JSP 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 that establishes a context for - mutually exclusive conditional operations, marked by - <when> and <otherwise> - - out - org.apache.taglibs.standard.tag.el.core.OutTag - JSP - Like <%= ... >, but for expressions. + 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 - - value - true - false - - - default - false - false - - - escapeXml - false - false - - - - if - org.apache.taglibs.standard.tag.el.core.IfTag + org.apache.taglibs.standard.tag.rt.core.IfTag 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 - + +The test condition that determines whether or +not the body content should be processed. + test true - false + 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.el.core.ImportTag + org.apache.taglibs.standard.tag.rt.core.ImportTag org.apache.taglibs.standard.tei.ImportTEI JSP - - Retrieves an absolute or relative URL and exposes its contents - to either the page, a String in 'var', or a Reader in 'varReader'. - + +The URL of the resource to import. + url true - false + 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 - false + true + +Character encoding of the content at the input +resource. + charEncoding false - false + true - forEach - org.apache.taglibs.standard.tag.el.core.ForEachTag - org.apache.taglibs.standard.tei.ForEachTEI - JSP 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 - false + true + 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 - 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 - false + true + int + +Iteration will only process every step items of +the collection, starting with the first one. + step false - 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 - forTokens - org.apache.taglibs.standard.tag.el.core.ForTokensTag - JSP 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 - false + true + java.lang.String + +The set of delimiters (the characters that +separate the tokens in the string). + delims true - false + true + java.lang.String + +Iteration begins at the token located at the +specified index. First token has index 0. + begin false - false + true + int + +Iteration ends at the token located at the +specified index (inclusive). + end false - false + true + int + +Iteration will only process every step tokens +of the string, starting with the first one. + step false - 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 - otherwise - org.apache.taglibs.standard.tag.common.core.OtherwiseTag + + 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' + 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 - param - org.apache.taglibs.standard.tag.el.core.ParamTag - JSP - Adds a parameter to a containing 'import' tag's URL. + 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 - false + true + +Value of the parameter. + value false - false + true - redirect - org.apache.taglibs.standard.tag.el.core.RedirectTag - JSP - Redirects to a new URL. + Redirects to a new URL. + redirect + org.apache.taglibs.standard.tag.rt.core.RedirectTag + JSP - var + +The URL of the resource to redirect to. + + url false - false + true - scope - false - false - - - url - true - false - - + +Name of the context when redirecting to a relative URL +resource that belongs to a foreign context. + context false - false + true + + Removes a scoped variable (from a particular scope, if specified). + remove org.apache.taglibs.standard.tag.common.core.RemoveTag empty - - Removes a scoped variable (from a particular scope, if specified). - + +Name of the scoped variable to be removed. + var true false + +Scope for var. + scope false false - - set - org.apache.taglibs.standard.tag.el.core.SetTag - JSP + - Sets the result of an expression evaluation in a 'scope' + 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 - false + true + +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 - false + true + +Name of the property to be set in the target object. + property false - false + true + +Scope for var. + scope false false - url - org.apache.taglibs.standard.tag.el.core.UrlTag - JSP - Prints or exposes a URL with optional query parameters - (via the c:param tag). + 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 - true - false + false + true + +Name of the context when specifying a relative URL +resource that belongs to a foreign context. + context false - false + true - when - org.apache.taglibs.standard.tag.el.core.WhenTag - JSP - Subtag of <choose> that includes its body if its - condition evalutes to '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 - false + true + boolean