Index: lams_admin/web/WEB-INF/jstl/tlds/fmt.tld =================================================================== RCS file: /usr/local/cvsroot/lams_admin/web/WEB-INF/jstl/tlds/Attic/fmt.tld,v diff -u -r1.1 -r1.2 --- lams_admin/web/WEB-INF/jstl/tlds/fmt.tld 8 Sep 2005 02:45:20 -0000 1.1 +++ lams_admin/web/WEB-INF/jstl/tlds/fmt.tld 24 Feb 2006 08:08:43 -0000 1.2 @@ -1,438 +1,667 @@ - - - - 1.0 - 1.2 - fmt - http://java.sun.com/jstl/fmt + + + + + JSTL 1.1 i18n-capable formatting library JSTL fmt - JSTL 1.0 i18n-capable formatting library + 1.1 + fmt + http://java.sun.com/jsp/jstl/fmt + + Provides core validation features for JSTL tags. + - org.apache.taglibs.standard.tlv.JstlFmtTLV + org.apache.taglibs.standard.tlv.JstlFmtTLV - - expressionAttributes - - requestEncoding:value - setLocale:value - setLocale:variant - timeZone:value - setTimeZone:value - bundle:basename - bundle:prefix - setBundle:basename - message:key - message:bundle - param:value - formatNumber:value - formatNumber:pattern - formatNumber:currencyCode - formatNumber:currencySymbol - formatNumber:groupingUsed - formatNumber:maxIntegerDigits - formatNumber:minIntegerDigits - formatNumber:maxFractionDigits - formatNumber:minFractionDigits - parseNumber:value - parseNumber:pattern - parseNumber:parseLocale - parseNumber:integerOnly - formatDate:value - formatDate:pattern - formatDate:timeZone - parseDate:value - parseDate:pattern - parseDate:timeZone - parseDate:parseLocale - - - 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. - - - requestEncoding - org.apache.taglibs.standard.tag.el.fmt.RequestEncodingTag - empty 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 - false + true - setLocale - org.apache.taglibs.standard.tag.el.fmt.SetLocaleTag - empty 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 - false + true + +Vendor- or browser-specific variant. +See the java.util.Locale javadocs for +more information on variants. + variant false - false + true + +Scope of the locale configuration variable. + scope false false - timeZone - org.apache.taglibs.standard.tag.el.fmt.TimeZoneTag - JSP 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 - false + true - setTimeZone - org.apache.taglibs.standard.tag.el.fmt.SetTimeZoneTag - empty 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 - false + 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 - bundle - org.apache.taglibs.standard.tag.el.fmt.BundleTag - JSP 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 - false + true + +Prefix to be prepended to the value of the message +key of any nested <fmt:message> action. + prefix false - false + true - setBundle - org.apache.taglibs.standard.tag.el.fmt.SetBundleTag - empty 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 - false + 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 - message - org.apache.taglibs.standard.tag.el.fmt.MessageTag - JSP 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 - false + true + +Localization context in whose resource +bundle the message key is looked up. + bundle false - false + true + +Name of the exported scoped variable +which stores the localized message. + var false false + +Scope of var. + scope false false - param - org.apache.taglibs.standard.tag.el.fmt.ParamTag - JSP 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 - false + true - formatNumber - org.apache.taglibs.standard.tag.el.fmt.FormatNumberTag - JSP 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 - false + true + +Specifies whether the value is to be +formatted as number, currency, or +percentage. + type false - false + true + +Custom formatting pattern. + pattern false - false + true + +ISO 4217 currency code. Applied only +when formatting currencies (i.e. if type is +equal to "currency"); ignored otherwise. + currencyCode false - false + true + +Currency symbol. Applied only when +formatting currencies (i.e. if type is equal +to "currency"); ignored otherwise. + currencySymbol false - false + true + +Specifies whether the formatted output +will contain any grouping separators. + groupingUsed false - false + true + +Maximum number of digits in the integer +portion of the formatted output. + maxIntegerDigits false - false + true + +Minimum number of digits in the integer +portion of the formatted output. + minIntegerDigits false - false + true + +Maximum number of digits in the +fractional portion of the formatted output. + maxFractionDigits false - false + true + +Minimum number of digits in the +fractional portion of the formatted output. + minFractionDigits false - 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 - parseNumber - org.apache.taglibs.standard.tag.el.fmt.ParseNumberTag - JSP 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 - false + true + +Specifies whether the string in the value +attribute should be parsed as a number, +currency, or percentage. + type false - false + true + +Custom formatting pattern that determines +how the string in the value attribute is to be +parsed. + pattern false - 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 - false + true + +Specifies whether just the integer portion of +the given value should be parsed. + integerOnly false - 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 - formatDate - org.apache.taglibs.standard.tag.el.fmt.FormatDateTag - empty 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 - false + true + +Specifies whether the time, the date, or both +the time and date components of the given +date are to be formatted. + type false - 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 - 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 - false + true + +Custom formatting style for dates and times. + pattern false - false + true + +Time zone in which to represent the formatted +time. + timeZone false - 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 - parseDate - org.apache.taglibs.standard.tag.el.fmt.ParseDateTag - JSP 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 - false + true + +Specifies whether the date string in the +value attribute is supposed to contain a +time, a date, or both. + type false - 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 - 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 - false + true + +Custom formatting pattern which +determines how the date string is to be +parsed. + pattern false - false + true + +Time zone in which to interpret any time +information in the date string. + timeZone false - 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 - 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