Index: lams_common/conf/jboss/login-config.xml =================================================================== RCS file: /usr/local/cvsroot/lams_common/conf/jboss/Attic/login-config.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/conf/jboss/login-config.xml 7 Dec 2004 07:06:56 -0000 1.1 @@ -0,0 +1,40 @@ + + + + + + + + + + java:/MySqlDS + select password from lams_user where login=? + select name,'Roles' from lams_role + + + + + Index: lams_common/conf/jboss/service/mysql-service.xml =================================================================== RCS file: /usr/local/cvsroot/lams_common/conf/jboss/service/Attic/mysql-service.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/conf/jboss/service/mysql-service.xml 7 Dec 2004 07:09:09 -0000 1.1 @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + MySqlDS + + + + jdbc:mysql://localhost/lams + com.mysql.jdbc.Driver + + root + + + + + + + + jboss.jca:service=RARDeployment,name=JBoss LocalTransaction JDBC Wrapper + + + + + + + + + 0 + 200 + 5000 + 15 + + ByContainer + + + + jboss.jca:service=CachedConnectionManager + + jboss.security:service=JaasSecurityManager + + java:/TransactionManager + + jboss.jca:service=RARDeployer + + + + + Index: lams_common/web/footer.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/Attic/footer.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/footer.jsp 7 Dec 2004 07:12:41 -0000 1.1 @@ -0,0 +1,7 @@ + + + + + +
+ \ No newline at end of file Index: lams_common/web/header.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/Attic/header.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/header.jsp 7 Dec 2004 07:12:41 -0000 1.1 @@ -0,0 +1,32 @@ +<%@ page contentType="text/html; charset=iso-8859-1" language="java" %> +<% +String title = request.getParameter("title"); +/**/ +String protocol = request.getProtocol(); +if(protocol.startsWith("HTTPS")){ + protocol = "https://"; +}else{ + protocol = "http://"; +} +String pathToRoot = protocol+request.getServerName()+":"+request.getServerPort()+request.getContextPath()+"/"; +//out.println("
pathToRoot="+pathToRoot+"
"); + +%> + + + + + + + + + +
+ + <%=title%> + + + [HELP] + + +
Index: lams_common/web/index.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/Attic/index.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/index.jsp 7 Dec 2004 07:12:41 -0000 1.1 @@ -0,0 +1,13 @@ +<%@ page contentType="text/html; charset=iso-8859-1" language="java" %> +<%@ taglib uri="/WEB-INF/jstl/c.tld" prefix="c" %> +<%@ taglib uri="/WEB-INF/jstl/c_rt.tld" prefix="c_rt" %> + + + +Welcome :: LAMS + + + +

Hellooo...

+ + \ No newline at end of file Index: lams_common/web/login.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/Attic/login.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/login.jsp 7 Dec 2004 07:12:41 -0000 1.1 @@ -0,0 +1,159 @@ + + + +<%@ page contentType="text/html; charset=iso-8859-1" language="java" %> +<%@ page import="com.lamsinternational.lams.util.JspRedirectStrategy" %> +<% + String failed = request.getParameter("failed"); + if (failed == null) //Login page + { + if (JspRedirectStrategy.loginPageRedirected(request,response)) + return; + } + else //Error page + { + if (JspRedirectStrategy.errorPageRedirected(request,response)) + return; + } +%> + + + +Login - LAMS :: Learning Activity Management System + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + +
+ +
Welcome
+ + +
+ + + + + + + + + + + + + + + + + +

+
  +

+
" method="post" name="form1" id="form1"> + <% + //String failed = request.getParameter("failed"); + if ( failed != null ){ + %> + + Sorry, that username or password is not known. Please + try again. + + <% + } + %> + + + + + + + + + + + + + + + + +
Username 
Password 
   +
+ +
+
+ + + + + + +
© 2002-2005 + LAMS Foundation.This copy of LAMS™ is authorised for use by + the registered users only. Version 1.1
+
+ + +
+ + + + + + + + +
+ + +
+ + Index: lams_common/web/style.css =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/Attic/style.css,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/style.css 7 Dec 2004 07:12:41 -0000 1.1 @@ -0,0 +1,340 @@ +.mainHeader { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 16pt; + color: #000000; +} + +.button{ + font-family: Arial, Helvetica, sans-serif; + font-size: 12px; color: #666666; + background-color: #E0E7EB + border: #666666; + border-style: solid; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; + width: 80px; +} + +.buttonover{ + font-family: Arial, Helvetica, sans-serif; + font-size: 12px; + background-color: #708A8B; + width: 80px; + border: #666666; + border-style: solid; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; +} + +.longButton { + font-family: Arial, Helvetica, sans-serif; + font-size: 12px; color: #666666; + background-color: #E0E7EB + border: #666666; + border-style: solid; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; + width: 120px; +} + +.longButtonover { + font-family: Arial, Helvetica, sans-serif; + font-size: 12px; + color: #FFFFFF; + background-color: #708A8B; + width: 120px; + border: #666666; + border-style: solid; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; +} + +.extendingButton { + font-family: Arial, Helvetica, sans-serif; + font-size: 12px; color: #666666; + background-color: #E0E7EB + border: #666666; + border-style: solid; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; +} + +.extendingButtonover { + font-family: Arial, Helvetica, sans-serif; + font-size: 12px; + color: #FFFFFF; + background-color: #708A8B; + border: #666666; + border-style: solid; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; +} + + +.body { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #000000; +} +.lightBody { + + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #666666; +} +.note { + + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 9px; + color: #000000; +} +.subHeader { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 14px; + color: #666666; + font-weight: bold; + letter-spacing: normal; + + +} +.error { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #FF0000; + font-weight: bold; + +} +.smallText { + + + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10px; + color: #333333; +} +.heading { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 14pt; + color: #666666; + font-style: normal; + +} +.tableHeader { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #FFFFFF; + font-weight: bold; + +} +.bodyBold { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #000000; + font-weight: bold; + +} + +a.nav:link { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #000000; + font-weight: bold; + text-decoration: none; +} + +a.nav:hover { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #000000; + font-weight: bold; + text-decoration: underline; +} + +a.nav:visited { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #666666; + font-weight: bold; + text-decoration: underline; +} + +a.brightNav:link { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #6600FF; + font-weight: bold; + text-decoration: none; +} + +a.brightNav:hover { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #CC3399; + font-weight: bold; + text-decoration: underline; +} + +a.brightNav:visited { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #6699FF; + font-weight: bold; + text-decoration: none; +} + +a.navLarge:link { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 18px; + color: #666666; + font-weight: normal; + text-decoration: none; +} + +a.navLarge:hover { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 18px; + color: #000000; + font-weight: bold; + text-decoration: underline; + background-color: #3399CC; + +} + + +a.navLarge:visited { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 18px; + color: #666666; + font-weight: normal; + text-decoration: none; +} + + + + +.textField { + background-color: #FFFFFF; + font-family: Arial; + font-size: 10pt; + color: #000000; + font-weight: plain; + border: 1px solid #666666; + +} + +textarea { + background-color: #FFFFFF; + font-family: Arial; + font-size: 10pt; + color: #000000; + font-weight: plain; + border: 1px solid #666666; +} + +body { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + color: #000000; +} + + +.mouseOverTableRow { + background-color: #B5CECE; +} + +.lightTableBorders { + margin-left:auto; + border-collapse:seperated; + border-spacing:0; + border: 0px; + empty-cells: show; + margin-right: auto; + cell-spacing:0px; + padding:2 px; +} + +.lightTableBorders TD { + margin-left:auto; + border: 1px solid #CCCCCC; + empty-cells: show; + margin-right: auto; + padding:2 px; +} + +.lightTableBorders TR { + margin-left:auto; + border: 1px solid #CCCCCC; + empty-cells: show; + margin-right: auto; + padding:2 px; +} + +#footer +{ +position: absolute; +top: 4px; +right:10px; +z-index: 5; +} + +#footerTable +{ +position: relative; +top: 0px; +left: 0px; +z-index: 4; +} + + +.lightNote { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 9px; + color: #666666; +} + + +a.lightNoteLink:link { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 9px; + color: #666666; + text-decoration: underline; +} + +a.lightNoteLink:hover { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 9px; + color: #666666; + text-decoration: underline; +} + +a.lightNoteLink:visited { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 9px; + color: #666666; + text-decoration: underline; +} + +.tableStyle { + border: thin solid #668A80; + +} + +.tableHeaderStyle { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; + font-weight: bold; + color: #FFFFFF; + background: #668A80; + +} \ No newline at end of file Index: lams_common/web/template.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/Attic/template.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/template.jsp 7 Dec 2004 07:12:41 -0000 1.1 @@ -0,0 +1,31 @@ + +<%@ taglib uri="/WEB-INF/struts/struts-tiles.tld" prefix="tiles" %> +<%@ taglib uri="/WEB-INF/struts/struts-html.tld" prefix="html" %> +<%@ taglib uri="/WEB-INF/jstl/fmt.tld" prefix="fmt" %> +<%@ taglib uri="/WEB-INF/jstl/c.tld" prefix="c" %> + + + + + + <tiles:getAsString name="title"/> + + + + + + + + + + + + + + + + + +
+ +
Index: lams_common/web/WEB-INF/jstl/c-rt.tld =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/WEB-INF/jstl/Attic/c-rt.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/WEB-INF/jstl/c-rt.tld 7 Dec 2004 07:16:16 -0000 1.1 @@ -0,0 +1,393 @@ + + + + 1.0 + 1.2 + c_rt + http://java.sun.com/jstl/core_rt + JSTL core RT + JSTL 1.0 core library + + + + org.apache.taglibs.standard.tlv.JstlCoreTLV + + + Provides core validation features for JSTL tags. + + + + + catch + org.apache.taglibs.standard.tag.common.core.CatchTag + JSP + + Catches any Throwable that occurs in its body and optionally + exposes it. + + + var + false + false + + + + + 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> + + + + + if + 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 + + + test + true + true + boolean + + + var + false + false + + + scope + false + false + + + + + import + 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'. + + + url + true + true + + + var + false + false + + + scope + false + false + + + varReader + false + false + + + context + false + true + + + charEncoding + false + true + + + + + forEach + org.apache.taglibs.standard.tag.rt.core.ForEachTag + org.apache.taglibs.standard.tei.ForEachTEI + JSP + + The basic iteration tag, accepting many different + collection types and supporting subsetting and other + functionality + + + items + false + true + java.lang.Object + + + begin + false + true + int + + + end + false + true + int + + + step + false + true + int + + + var + false + false + + + varStatus + false + false + + + + + forTokens + org.apache.taglibs.standard.tag.rt.core.ForTokensTag + JSP + + Iterates over tokens, separated by the supplied delimeters + + + items + true + true + java.lang.String + + + delims + true + true + java.lang.String + + + begin + false + true + int + + + end + false + true + int + + + step + false + true + int + + + var + false + false + + + varStatus + false + false + + + + + out + org.apache.taglibs.standard.tag.rt.core.OutTag + JSP + + Like <%= ... >, but for expressions. + + + value + true + true + + + default + false + true + + + escapeXml + false + true + + + + + + otherwise + org.apache.taglibs.standard.tag.common.core.OtherwiseTag + JSP + + Subtag of <choose> that follows <when> tags + and runs only if all of the prior conditions evaluated to + 'false' + + + + + param + org.apache.taglibs.standard.tag.rt.core.ParamTag + JSP + + Adds a parameter to a containing 'import' tag's URL. + + + name + true + true + + + value + false + true + + + + + redirect + org.apache.taglibs.standard.tag.rt.core.RedirectTag + JSP + + Redirects to a new URL. + + + var + false + false + + + scope + false + false + + + url + false + true + + + context + false + true + + + + + remove + org.apache.taglibs.standard.tag.common.core.RemoveTag + empty + + Removes a scoped variable (from a particular scope, if specified). + + + var + true + false + + + scope + false + false + + + + + set + org.apache.taglibs.standard.tag.rt.core.SetTag + JSP + + Sets the result of an expression evaluation in a 'scope' + + + var + false + false + + + value + false + true + + + target + false + true + + + property + false + true + + + scope + false + false + + + + + url + org.apache.taglibs.standard.tag.rt.core.UrlTag + JSP + + Creates a URL with optional query parameters. + + + var + false + false + + + scope + false + false + + + value + false + true + + + context + false + true + + + + + when + org.apache.taglibs.standard.tag.rt.core.WhenTag + JSP + + Subtag of <choose> that includes its body if its + condition evalutes to 'true' + + + test + true + true + boolean + + + + Index: lams_common/web/WEB-INF/jstl/c.tld =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/WEB-INF/jstl/Attic/c.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/WEB-INF/jstl/c.tld 7 Dec 2004 07:16:16 -0000 1.1 @@ -0,0 +1,416 @@ + + + + 1.0 + 1.2 + c + http://java.sun.com/jstl/core + JSTL core + JSTL 1.0 core library + + + + 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. + + + var + false + false + + + + + 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. + + + value + true + false + + + default + false + false + + + escapeXml + false + false + + + + + if + org.apache.taglibs.standard.tag.el.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 + + + test + true + false + + + var + false + false + + + scope + false + false + + + + + import + org.apache.taglibs.standard.tag.el.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'. + + + url + true + false + + + var + false + false + + + scope + false + false + + + varReader + false + false + + + context + false + false + + + charEncoding + false + false + + + + + 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 + + + items + false + false + + + begin + false + false + + + end + false + false + + + step + false + false + + + var + false + false + + + varStatus + false + false + + + + + forTokens + org.apache.taglibs.standard.tag.el.core.ForTokensTag + JSP + + Iterates over tokens, separated by the supplied delimeters + + + items + true + false + + + delims + true + false + + + begin + false + false + + + end + false + false + + + step + false + false + + + var + false + false + + + varStatus + false + false + + + + + otherwise + org.apache.taglibs.standard.tag.common.core.OtherwiseTag + JSP + + Subtag of <choose> that follows <when> tags + and runs only if all of the prior conditions evaluated to + 'false' + + + + + param + org.apache.taglibs.standard.tag.el.core.ParamTag + JSP + + Adds a parameter to a containing 'import' tag's URL. + + + name + true + false + + + value + false + false + + + + + redirect + org.apache.taglibs.standard.tag.el.core.RedirectTag + JSP + + Redirects to a new URL. + + + var + false + false + + + scope + false + false + + + url + true + false + + + context + false + false + + + + + remove + org.apache.taglibs.standard.tag.common.core.RemoveTag + empty + + Removes a scoped variable (from a particular scope, if specified). + + + var + true + false + + + scope + false + false + + + + + set + org.apache.taglibs.standard.tag.el.core.SetTag + JSP + + Sets the result of an expression evaluation in a 'scope' + + + var + false + false + + + value + false + false + + + target + false + false + + + property + false + false + + + 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). + + + var + false + false + + + scope + false + false + + + value + true + false + + + context + false + false + + + + + when + org.apache.taglibs.standard.tag.el.core.WhenTag + JSP + + Subtag of <choose> that includes its body if its + condition evalutes to 'true' + + + test + true + false + + + + Index: lams_common/web/WEB-INF/jstl/fmt-rt.tld =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/WEB-INF/jstl/Attic/fmt-rt.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/WEB-INF/jstl/fmt-rt.tld 7 Dec 2004 07:16:16 -0000 1.1 @@ -0,0 +1,403 @@ + + + + 1.0 + 1.2 + fmt_rt + http://java.sun.com/jstl/fmt_rt + JSTL fmt RT + JSTL 1.0 i18n-capable formatting library + + + + org.apache.taglibs.standard.tlv.JstlFmtTLV + + + Provides core validation features for JSTL tags. + + + + + requestEncoding + org.apache.taglibs.standard.tag.rt.fmt.RequestEncodingTag + empty + + Sets the request character encoding + + + value + false + true + + + + + setLocale + org.apache.taglibs.standard.tag.rt.fmt.SetLocaleTag + empty + + Stores the given locale in the locale configuration variable + + + value + true + true + + + variant + false + true + + + scope + false + false + + + + + timeZone + org.apache.taglibs.standard.tag.rt.fmt.TimeZoneTag + JSP + + Specifies the time zone for any time formatting or parsing actions + nested in its body + + + value + true + true + + + + + setTimeZone + org.apache.taglibs.standard.tag.rt.fmt.SetTimeZoneTag + empty + + Stores the given time zone in the time zone configuration variable + + + value + true + true + + + var + false + false + + + scope + false + false + + + + + bundle + org.apache.taglibs.standard.tag.rt.fmt.BundleTag + JSP + + Loads a resource bundle to be used by its tag body + + + basename + true + true + + + prefix + false + true + + + + + setBundle + org.apache.taglibs.standard.tag.rt.fmt.SetBundleTag + empty + + Loads a resource bundle and stores it in the named scoped variable or + the bundle configuration variable + + + basename + true + true + + + var + false + false + + + scope + false + false + + + + + message + org.apache.taglibs.standard.tag.rt.fmt.MessageTag + JSP + + Maps key to localized message and performs parametric replacement + + + key + false + true + + + bundle + false + true + + + var + false + false + + + scope + false + false + + + + + param + org.apache.taglibs.standard.tag.rt.fmt.ParamTag + JSP + + Supplies an argument for parametric replacement to a containing + <message> tag + + + value + false + true + + + + + formatNumber + org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag + JSP + + Formats a numeric value as a number, currency, or percentage + + + value + false + true + + + type + false + true + + + pattern + false + true + + + currencyCode + false + true + + + currencySymbol + false + true + + + groupingUsed + false + true + + + maxIntegerDigits + false + true + + + minIntegerDigits + false + true + + + maxFractionDigits + false + true + + + minFractionDigits + false + true + + + var + false + false + + + scope + false + false + + + + + parseNumber + org.apache.taglibs.standard.tag.rt.fmt.ParseNumberTag + JSP + + Parses the string representation of a number, currency, or percentage + + + value + false + true + + + type + false + true + + + pattern + false + true + + + parseLocale + false + true + + + integerOnly + false + true + + + var + false + false + + + scope + false + false + + + + + formatDate + org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag + empty + + Formats a date and/or time using the supplied styles and pattern + + + value + true + true + + + type + false + true + + + dateStyle + false + true + + + timeStyle + false + true + + + pattern + false + true + + + timeZone + false + true + + + var + false + false + + + scope + false + false + + + + + parseDate + org.apache.taglibs.standard.tag.rt.fmt.ParseDateTag + JSP + + Parses the string representation of a date and/or time + + + value + false + true + + + type + false + true + + + dateStyle + false + true + + + timeStyle + false + true + + + pattern + false + true + + + timeZone + false + true + + + parseLocale + false + true + + + var + false + false + + + scope + false + false + + + + Index: lams_common/web/WEB-INF/jstl/fmt.tld =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/WEB-INF/jstl/Attic/fmt.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/WEB-INF/jstl/fmt.tld 7 Dec 2004 07:16:16 -0000 1.1 @@ -0,0 +1,442 @@ + + + + 1.0 + 1.2 + fmt + http://java.sun.com/jstl/fmt + JSTL fmt + JSTL 1.0 i18n-capable formatting library + + + + 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 + + + value + false + false + + + + + setLocale + org.apache.taglibs.standard.tag.el.fmt.SetLocaleTag + empty + + Stores the given locale in the locale configuration variable + + + value + true + false + + + variant + false + false + + + 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 + + + value + true + false + + + + + setTimeZone + org.apache.taglibs.standard.tag.el.fmt.SetTimeZoneTag + empty + + Stores the given time zone in the time zone configuration variable + + + value + true + false + + + var + false + false + + + scope + false + false + + + + + bundle + org.apache.taglibs.standard.tag.el.fmt.BundleTag + JSP + + Loads a resource bundle to be used by its tag body + + + basename + true + false + + + prefix + false + false + + + + + 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 + + + basename + true + false + + + var + false + false + + + scope + false + false + + + + + message + org.apache.taglibs.standard.tag.el.fmt.MessageTag + JSP + + Maps key to localized message and performs parametric replacement + + + key + false + false + + + bundle + false + false + + + var + false + false + + + scope + false + false + + + + + param + org.apache.taglibs.standard.tag.el.fmt.ParamTag + JSP + + Supplies an argument for parametric replacement to a containing + <message> tag + + + value + false + false + + + + + formatNumber + org.apache.taglibs.standard.tag.el.fmt.FormatNumberTag + JSP + + Formats a numeric value as a number, currency, or percentage + + + value + false + false + + + type + false + false + + + pattern + false + false + + + currencyCode + false + false + + + currencySymbol + false + false + + + groupingUsed + false + false + + + maxIntegerDigits + false + false + + + minIntegerDigits + false + false + + + maxFractionDigits + false + false + + + minFractionDigits + false + false + + + var + false + false + + + scope + false + false + + + + + parseNumber + org.apache.taglibs.standard.tag.el.fmt.ParseNumberTag + JSP + + Parses the string representation of a number, currency, or percentage + + + value + false + false + + + type + false + false + + + pattern + false + false + + + parseLocale + false + false + + + integerOnly + false + false + + + var + false + false + + + 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 + + + value + true + false + + + type + false + false + + + dateStyle + false + false + + + timeStyle + false + false + + + pattern + false + false + + + timeZone + false + false + + + var + false + false + + + scope + false + false + + + + + parseDate + org.apache.taglibs.standard.tag.el.fmt.ParseDateTag + JSP + + Parses the string representation of a date and/or time + + + value + false + false + + + type + false + false + + + dateStyle + false + false + + + timeStyle + false + false + + + pattern + false + false + + + timeZone + false + false + + + parseLocale + false + false + + + var + false + false + + + scope + false + false + + + + Index: lams_common/web/WEB-INF/jstl/sql-rt.tld =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/WEB-INF/jstl/Attic/sql-rt.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/WEB-INF/jstl/sql-rt.tld 7 Dec 2004 07:16:16 -0000 1.1 @@ -0,0 +1,188 @@ + + + + 1.0 + 1.2 + sql_rt + http://java.sun.com/jstl/sql_rt + JSTL sql RT + JSTL 1.0 sql library + + + + org.apache.taglibs.standard.tlv.JstlSqlTLV + + + Provides core validation features for JSTL tags. + + + + + transaction + org.apache.taglibs.standard.tag.rt.sql.TransactionTag + JSP + + Provides nested database action elements with a shared Connection, + set up to execute all statements as one transaction. + + + dataSource + false + true + + + isolation + false + true + + + + + query + org.apache.taglibs.standard.tag.rt.sql.QueryTag + JSP + + Executes the SQL query defined in its body or through the + sql attribute. + + + var + true + false + + + scope + false + false + + + sql + false + true + + + dataSource + false + true + + + startRow + false + true + + + maxRows + false + true + + + + + update + org.apache.taglibs.standard.tag.rt.sql.UpdateTag + JSP + + Executes the SQL update defined in its body or through the + sql attribute. + + + var + false + false + + + scope + false + false + + + sql + false + true + + + dataSource + false + true + + + + + param + org.apache.taglibs.standard.tag.rt.sql.ParamTag + JSP + + Sets a parameter in an SQL statement to the specified value. + + + value + false + true + + + + + dateParam + org.apache.taglibs.standard.tag.rt.sql.DateParamTag + empty + + Sets a parameter in an SQL statement to the specified java.util.Date value. + + + value + true + true + + + type + false + true + + + + + setDataSource + org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag + empty + + Creates a simple DataSource suitable only for prototyping. + + + var + false + false + + + scope + false + false + + + dataSource + false + true + + + driver + false + true + + + url + false + true + + + user + false + true + + + password + false + true + + + Index: lams_common/web/WEB-INF/jstl/sql.tld =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/WEB-INF/jstl/Attic/sql.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/WEB-INF/jstl/sql.tld 7 Dec 2004 07:16:16 -0000 1.1 @@ -0,0 +1,213 @@ + + + + 1.0 + 1.2 + sql + http://java.sun.com/jstl/sql + JSTL sql + JSTL 1.0 sql library + + + + org.apache.taglibs.standard.tlv.JstlSqlTLV + + + expressionAttributes + + transaction:dataSource + transaction:isolation + query:sql + query:dataSource + query:startRow + query:maxRows + update:sql + update:dataSource + param:value + dateParam:value + dateParam:type + setDataSource:dataSource + setDataSource:driver + setDataSource:url + setDataSource:user + setDataSource:password + + + 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. + + + + + + transaction + org.apache.taglibs.standard.tag.el.sql.TransactionTag + JSP + + Provides nested database action elements with a shared Connection, + set up to execute all statements as one transaction. + + + dataSource + false + false + + + isolation + false + false + + + + + query + org.apache.taglibs.standard.tag.el.sql.QueryTag + JSP + + Executes the SQL query defined in its body or through the + sql attribute. + + + var + true + false + + + scope + false + false + + + sql + false + false + + + dataSource + false + false + + + startRow + false + false + + + maxRows + false + false + + + + + update + org.apache.taglibs.standard.tag.el.sql.UpdateTag + JSP + + Executes the SQL update defined in its body or through the + sql attribute. + + + var + false + false + + + scope + false + false + + + sql + false + false + + + dataSource + false + false + + + + + param + org.apache.taglibs.standard.tag.el.sql.ParamTag + JSP + + Sets a parameter in an SQL statement to the specified value. + + + value + false + false + + + + + dateParam + org.apache.taglibs.standard.tag.el.sql.DateParamTag + empty + + Sets a parameter in an SQL statement to the specified java.util.Date val +ue. + + + value + true + true + + + type + false + true + + + + + setDataSource + org.apache.taglibs.standard.tag.el.sql.SetDataSourceTag + empty + + Creates a simple DataSource suitable only for prototyping. + + + var + false + false + + + scope + false + false + + + dataSource + false + false + + + driver + false + false + + + url + false + false + + + user + false + false + + + password + false + false + + + Index: lams_common/web/WEB-INF/jstl/x-rt.tld =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/WEB-INF/jstl/Attic/x-rt.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/WEB-INF/jstl/x-rt.tld 7 Dec 2004 07:16:16 -0000 1.1 @@ -0,0 +1,256 @@ + + + + 1.0 + 1.2 + x_rt + http://java.sun.com/jstl/xml_rt + JSTL XML RT + JSTL 1.0 XML library + + + + org.apache.taglibs.standard.tlv.JstlXmlTLV + + + Provides validation features for JSTL XML tags. + + + + + 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.rt.xml.ExprTag + empty + + Like <%= ... >, but for XPath expressions. + + + select + true + false + + + escapeXml + false + true + + + + + if + org.apache.taglibs.standard.tag.common.xml.IfTag + JSP + + XML conditional tag, which evalutes its body if the + supplied XPath expression evalutes to 'true' as a boolean + + + select + true + false + + + var + false + false + + + scope + false + false + + + + + forEach + org.apache.taglibs.standard.tag.common.xml.ForEachTag + JSP + + XML iteration tag. + + + var + false + false + + + select + true + false + + + + + otherwise + org.apache.taglibs.standard.tag.common.core.OtherwiseTag + JSP + + Subtag of <choose> that follows <when> tags + and runs only if all of the prior conditions evaluated to + 'false' + + + + + param + org.apache.taglibs.standard.tag.rt.xml.ParamTag + JSP + + Adds a parameter to a containing 'transform' tag's Transformer + + + name + true + true + + + value + false + true + + + + + parse + org.apache.taglibs.standard.tag.rt.xml.ParseTag + org.apache.taglibs.standard.tei.XmlParseTEI + JSP + + Parses XML content from 'source' attribute or 'body' + + + var + false + false + + + varDom + false + false + + + scope + false + false + + + scopeDom + false + false + + + xml + false + true + + + systemId + false + true + + + filter + false + true + + + + + set + org.apache.taglibs.standard.tag.common.xml.SetTag + empty + + Saves the result of an XPath expression evaluation in a 'scope' + + + var + true + false + + + select + false + false + + + scope + false + false + + + + + transform + org.apache.taglibs.standard.tag.rt.xml.TransformTag + org.apache.taglibs.standard.tei.XmlTransformTEI + JSP + + Conducts a transformation given a source XML document + and an XSLT stylesheet + + + var + false + false + + + scope + false + false + + + result + false + true + + + xml + false + true + + + xmlSystemId + false + true + + + xslt + false + true + + + xsltSystemId + false + true + + + + + when + org.apache.taglibs.standard.tag.common.xml.WhenTag + JSP + + Subtag of <choose> that includes its body if its + expression evalutes to 'true' + + + select + true + false + + + + Index: lams_common/web/WEB-INF/jstl/x.tld =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/WEB-INF/jstl/Attic/x.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/web/WEB-INF/jstl/x.tld 7 Dec 2004 07:16:16 -0000 1.1 @@ -0,0 +1,273 @@ + + + + 1.0 + 1.2 + x + http://java.sun.com/jstl/xml + JSTL XML + JSTL 1.0 XML library + + + + org.apache.taglibs.standard.tlv.JstlXmlTLV + + + expressionAttributes + + out:escapeXml + parse:xml + parse:systemId + parse:filter + transform:xml + transform:xmlSystemId + transform:xslt + transform:xsltSystemId + transform:result + + + 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. + + + + + + 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.xml.ExprTag + empty + + Like <%= ... >, but for XPath expressions. + + + select + true + false + + + escapeXml + false + false + + + + + if + org.apache.taglibs.standard.tag.common.xml.IfTag + JSP + + XML conditional tag, which evalutes its body if the + supplied XPath expression evalutes to 'true' as a boolean + + + select + true + false + + + var + false + false + + + scope + false + false + + + + + forEach + org.apache.taglibs.standard.tag.common.xml.ForEachTag + JSP + + XML iteration tag. + + + var + false + false + + + select + true + false + + + + + otherwise + org.apache.taglibs.standard.tag.common.core.OtherwiseTag + JSP + + Subtag of <choose> that follows <when> tags + and runs only if all of the prior conditions evaluated to + 'false' + + + + + param + org.apache.taglibs.standard.tag.el.xml.ParamTag + JSP + + Adds a parameter to a containing 'transform' tag's Transformer + + + name + true + false + + + value + false + false + + + + + parse + org.apache.taglibs.standard.tag.el.xml.ParseTag + org.apache.taglibs.standard.tei.XmlParseTEI + JSP + + Parses XML content from 'source' attribute or 'body' + + + var + false + false + + + varDom + false + false + + + scope + false + false + + + scopeDom + false + false + + + xml + false + false + + + systemId + false + false + + + filter + false + false + + + + + set + org.apache.taglibs.standard.tag.common.xml.SetTag + empty + + Saves the result of an XPath expression evaluation in a 'scope' + + + var + true + false + + + select + false + false + + + scope + false + false + + + + + transform + org.apache.taglibs.standard.tag.el.xml.TransformTag + org.apache.taglibs.standard.tei.XmlTransformTEI + JSP + + Conducts a transformation given a source XML document + and an XSLT stylesheet + + + var + false + false + + + scope + false + false + + + result + false + false + + + xml + false + false + + + xmlSystemId + false + false + + + xslt + false + false + + + xsltSystemId + false + false + + + + + when + org.apache.taglibs.standard.tag.common.xml.WhenTag + JSP + + Subtag of <choose> that includes its body if its + expression evalutes to 'true' + + + select + true + false + + + + Index: lams_common/web/images/1pxGreen.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/1pxGreen.gif,v diff -u Binary files differ Index: lams_common/web/images/1pxGrey.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/1pxGrey.gif,v diff -u Binary files differ Index: lams_common/web/images/1pxRed.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/1pxRed.gif,v diff -u Binary files differ Index: lams_common/web/images/Thumbs.db =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/Thumbs.db,v diff -u Binary files differ Index: lams_common/web/images/circle_empty.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/circle_empty.gif,v diff -u Binary files differ Index: lams_common/web/images/circle_filled.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/circle_filled.gif,v diff -u Binary files differ Index: lams_common/web/images/cross.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/cross.gif,v diff -u Binary files differ Index: lams_common/web/images/customer_logo.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/customer_logo.gif,v diff -u Binary files differ Index: lams_common/web/images/flash_get.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/flash_get.gif,v diff -u Binary files differ Index: lams_common/web/images/green_arrow_down_right.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/green_arrow_down_right.gif,v diff -u Binary files differ Index: lams_common/web/images/greyBullet.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/greyBullet.gif,v diff -u Binary files differ Index: lams_common/web/images/lams_welcome_header.jpg =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/lams_welcome_header.jpg,v diff -u Binary files differ Index: lams_common/web/images/launch_page_graphic.jpg =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/launch_page_graphic.jpg,v diff -u Binary files differ Index: lams_common/web/images/ld_logo.jpg =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/ld_logo.jpg,v diff -u Binary files differ Index: lams_common/web/images/learner_footer.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/learner_footer.gif,v diff -u Binary files differ Index: lams_common/web/images/learner_header_logo.jpg =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/learner_header_logo.jpg,v diff -u Binary files differ Index: lams_common/web/images/learner_header_right.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/learner_header_right.gif,v diff -u Binary files differ Index: lams_common/web/images/log_on_blank.jpg =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/log_on_blank.jpg,v diff -u Binary files differ Index: lams_common/web/images/log_on_divider.jpg =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/log_on_divider.jpg,v diff -u Binary files differ Index: lams_common/web/images/log_on_logo.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/log_on_logo.gif,v diff -u Binary files differ Index: lams_common/web/images/spacer.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/spacer.gif,v diff -u Binary files differ Index: lams_common/web/images/synch_active.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/synch_active.gif,v diff -u Binary files differ Index: lams_common/web/images/synch_not_active.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/synch_not_active.gif,v diff -u Binary files differ Index: lams_common/web/images/tick.gif =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/images/Attic/tick.gif,v diff -u Binary files differ