Index: lams_tool_sbmt/.classpath =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/.classpath,v diff -u -r1.11 -r1.12 --- lams_tool_sbmt/.classpath 10 Oct 2005 04:41:20 -0000 1.11 +++ lams_tool_sbmt/.classpath 3 Nov 2005 00:00:50 -0000 1.12 @@ -1,6 +1,6 @@ - + Index: lams_tool_sbmt/build.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/build.properties,v diff -u -r1.8 -r1.9 --- lams_tool_sbmt/build.properties 9 Sep 2005 06:10:34 -0000 1.8 +++ lams_tool_sbmt/build.properties 3 Nov 2005 00:00:50 -0000 1.9 @@ -10,3 +10,12 @@ #submit files package definition sbmt.package=org.lamsfoundation.lams.tool.sbmt sbmt.path=org/lamsfoundation/lams/tool/sbmt + +#JBoss root. Open comment if using another folder +#jboss.home=D:/jboss-4.0.2/ + +#Repository directory +contentrepository.location = D:/repository + +# Open comment if use different folder +j2eelibs=C:/Program Files/MyEclipse/eclipse/plugins/com.genuitec.eclipse.j2eedt.core_3.8.4/data/libraryset/1.4 \ No newline at end of file Index: lams_tool_sbmt/conf/xdoclet/filters.xml =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/conf/xdoclet/filters.xml,v diff -u -r1.3 -r1.4 --- lams_tool_sbmt/conf/xdoclet/filters.xml 6 Oct 2005 06:47:52 -0000 1.3 +++ lams_tool_sbmt/conf/xdoclet/filters.xml 3 Nov 2005 00:00:50 -0000 1.4 @@ -8,6 +8,7 @@ sbmtSessionFactory + SystemSessionFilter Index: lams_tool_sbmt/conf/xdoclet/taglibs.xml =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/conf/xdoclet/taglibs.xml,v diff -u -r1.4 -r1.5 --- lams_tool_sbmt/conf/xdoclet/taglibs.xml 12 Aug 2005 04:32:27 -0000 1.4 +++ lams_tool_sbmt/conf/xdoclet/taglibs.xml 3 Nov 2005 00:00:50 -0000 1.5 @@ -50,23 +50,23 @@ - http://java.sun.com/jstl/fmt - /WEB-INF/JSTL/tlds/fmt.tld + tags-fmt + /WEB-INF/jstl/tlds/fmt.tld - http://java.sun.com/jstl/fmt-rt - /WEB-INF/JSTL/tlds/fmt-rt.tld + tags-fmt-rt + /WEB-INF/jstl/tlds/fmt-rt.tld - http://java.sun.com/jstl/core - /WEB-INF/JSTL/tlds/c.tld + tags-core + /WEB-INF/jstl/tlds/c.tld - http://java.sun.com/jstl/core-rt - /WEB-INF/JSTL/tlds/c-rt.tld + tags-core-rt + /WEB-INF/jstl/tlds/c-rt.tld Index: lams_tool_sbmt/db/model/lams_tool_sbmt.clay =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/db/model/lams_tool_sbmt.clay,v diff -u -r1.8 -r1.9 --- lams_tool_sbmt/db/model/lams_tool_sbmt.clay 4 Aug 2005 04:40:58 -0000 1.8 +++ lams_tool_sbmt/db/model/lams_tool_sbmt.clay 3 Nov 2005 00:00:50 -0000 1.9 @@ -1,5 +1,5 @@ - + @@ -14,8 +14,8 @@ - + @@ -40,8 +40,8 @@ - + @@ -53,8 +53,8 @@ - + @@ -84,8 +84,8 @@ - + @@ -97,8 +97,8 @@ - + @@ -128,8 +128,8 @@ - + @@ -141,8 +141,8 @@ - + @@ -154,8 +154,8 @@ - + @@ -181,8 +181,8 @@ - + @@ -219,13 +219,13 @@ - + - + @@ -244,8 +244,8 @@ - + @@ -281,8 +281,8 @@ - + @@ -294,8 +294,8 @@ - + @@ -307,8 +307,8 @@ - + @@ -350,8 +350,8 @@ - + @@ -363,8 +363,8 @@ - + @@ -376,8 +376,8 @@ - + @@ -389,8 +389,8 @@ - + @@ -420,8 +420,8 @@ - + @@ -453,8 +453,8 @@ - + @@ -466,8 +466,8 @@ - + @@ -479,8 +479,8 @@ - + @@ -492,8 +492,8 @@ - + Index: lams_tool_sbmt/db/sql/create_lams_tool_sbmt.sql =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/db/sql/create_lams_tool_sbmt.sql,v diff -u -r1.10 -r1.11 --- lams_tool_sbmt/db/sql/create_lams_tool_sbmt.sql 3 Aug 2005 06:19:03 -0000 1.10 +++ lams_tool_sbmt/db/sql/create_lams_tool_sbmt.sql 3 Nov 2005 00:00:50 -0000 1.11 @@ -1,75 +1,75 @@ SET FOREIGN_KEY_CHECKS=0; -CREATE TABLE tl_lasbmt11_report ( - report_id BIGINT(20) NOT NULL AUTO_INCREMENT - , comments VARCHAR(250) - , marks BIGINT(20) - , date_marks_released DATETIME - , PRIMARY KEY (report_id) +create table tl_lafrum11_attachment ( + uid bigint not null auto_increment, + file_version_id bigint, + file_type varchar(255), + file_name varchar(255), + file_uuid bigint, + create_date datetime, + forum_uid bigint, + message_uid bigint, + primary key (uid) ); +create table tl_lafrum11_forum ( + uid bigint not null auto_increment, + create_date datetime, + update_date datetime, + create_by bigint, + title varchar(255), + allow_anonym bit, + run_offline bit, + lock_on_finished bit, + instructions varchar(255), + online_instructions varchar(255), + offline_instructions varchar(255), + content_in_use bit, + define_later bit, + content_id bigint unique, + allow_edit bit, + allow_rich_editor bit, + primary key (uid) +); +create table tl_lafrum11_forum_user ( + uid bigint not null auto_increment, + user_id bigint, + status bit, + full_name varchar(255), + user_name varchar(255), + primary key (uid) +); +create table tl_lafrum11_message ( + uid bigint not null auto_increment, + create_date datetime, + update_date datetime, + create_by bigint, + modified_by bigint, + subject varchar(255), + body text, + is_authored bit, + is_anonymous bit, + forum_session_uid bigint, + user_uid bigint, + forum_uid bigint, + parent_uid bigint, + primary key (uid) +); +create table tl_lafrum11_tool_session ( + uid bigint not null auto_increment, + session_end_date datetime, + session_start_date datetime, + status integer, + forum_uid bigint, + session_id bigint, + primary key (uid) +); +alter table tl_lafrum11_attachment add index FK389AD9A2FE939F2A (message_uid), add constraint FK389AD9A2FE939F2A foreign key (message_uid) references tl_lafrum11_message (uid); +alter table tl_lafrum11_attachment add index FK389AD9A2131CE31E (forum_uid), add constraint FK389AD9A2131CE31E foreign key (forum_uid) references tl_lafrum11_forum (uid); +alter table tl_lafrum11_message add index FK4A6067E8131CE31E (forum_uid), add constraint FK4A6067E8131CE31E foreign key (forum_uid) references tl_lafrum11_forum (uid); +alter table tl_lafrum11_message add index FK4A6067E824089E4D (parent_uid), add constraint FK4A6067E824089E4D foreign key (parent_uid) references tl_lafrum11_message (uid); +alter table tl_lafrum11_message add index FK4A6067E8C6FF3C72 (forum_session_uid), add constraint FK4A6067E8C6FF3C72 foreign key (forum_session_uid) references tl_lafrum11_tool_session (uid); +alter table tl_lafrum11_message add index FK4A6067E8B0A7E6B3 (user_uid), add constraint FK4A6067E8B0A7E6B3 foreign key (user_uid) references tl_lafrum11_forum_user (uid); +alter table tl_lafrum11_tool_session add index FK5A04D7AE131CE31E (forum_uid), add constraint FK5A04D7AE131CE31E foreign key (forum_uid) references tl_lafrum11_forum (uid); -CREATE TABLE tl_lasbmt11_session_learners ( - learner_id BIGINT(20) NOT NULL AUTO_INCREMENT - , user_id BIGINT(20) - , finished TINYINT(1) - , session_id BIGINT(20) - , PRIMARY KEY (learner_id) -)TYPE=InnoDB; - -CREATE TABLE tl_lasbmt11_content ( - content_id BIGINT(20) NOT NULL DEFAULT 0 - , title VARCHAR(64) NOT NULL - , instruction TEXT - , define_later TINYINT(1) NOT NULL DEFAULT 0 - , run_offline TINYINT(1) NOT NULL DEFAULT 0 - , offline_instruction TEXT - , online_instruction TEXT - , run_offline_instruction TEXT - , content_in_use TINYINT(1) - , lock_on_finished TINYINT(1) - , PRIMARY KEY (content_id) -)TYPE=InnoDB; - -CREATE TABLE tl_lasbmt11_session ( - session_id BIGINT(20) NOT NULL AUTO_INCREMENT - , status INT(11) NOT NULL DEFAULT 0 - , content_id BIGINT(20) - , PRIMARY KEY (session_id) - , INDEX (content_id) - , CONSTRAINT FKEC8C77C9FC4BEA1 FOREIGN KEY (content_id) - REFERENCES tl_lasbmt11_content (content_id) ON DELETE NO ACTION ON UPDATE NO ACTION -)TYPE=InnoDB; - -CREATE TABLE tl_lasbmt11_instruction_files ( - file_id BIGINT(20) NOT NULL AUTO_INCREMENT - , uuid BIGINT(20) - , version_id BIGINT(20) - , type VARCHAR(20) - , name VARCHAR(255) - , content_id BIGINT(20) - , PRIMARY KEY (file_id) - , INDEX (content_id) - , CONSTRAINT FKA75538F9FC4BEA1 FOREIGN KEY (content_id) - REFERENCES tl_lasbmt11_content (content_id) ON DELETE NO ACTION ON UPDATE NO ACTION -)TYPE=InnoDB; - -CREATE TABLE tl_lasbmt11_submission_details ( - submission_id BIGINT(20) NOT NULL AUTO_INCREMENT - , filePath VARCHAR(250) - , fileDescription VARCHAR(250) - , date_of_submission DATETIME - , uuid BIGINT(20) - , version_id BIGINT(20) - , session_id BIGINT(20) - , learner_id BIGINT(20) - , PRIMARY KEY (submission_id) - , INDEX (learner_id) - , CONSTRAINT FK1411A53C3A4D8629 FOREIGN KEY (learner_id) - REFERENCES tl_lasbmt11_session_learners (learner_id) ON DELETE NO ACTION ON UPDATE NO ACTION - , INDEX (session_id) - , CONSTRAINT FK1411A53C630DDF64 FOREIGN KEY (session_id) - REFERENCES tl_lasbmt11_session (session_id) ON DELETE NO ACTION ON UPDATE NO ACTION -)TYPE=InnoDB; - INSERT INTO `tl_lasbmt11_content` (content_id,title,instruction,define_later,run_offline,content_in_use,lock_on_finished) values(1,"Java Submission","Submit your java programs",0,0,0,0); INSERT INTO `tl_lasbmt11_session` (session_id,content_id,status) values(1,1,1); SET FOREIGN_KEY_CHECKS=1; \ No newline at end of file Index: lams_tool_sbmt/src/java/org/lamsfoundation/lams/tool/sbmt/Learner.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/src/java/org/lamsfoundation/lams/tool/sbmt/Attic/Learner.java,v diff -u -r1.2 -r1.3 --- lams_tool_sbmt/src/java/org/lamsfoundation/lams/tool/sbmt/Learner.java 12 Aug 2005 04:26:51 -0000 1.2 +++ lams_tool_sbmt/src/java/org/lamsfoundation/lams/tool/sbmt/Learner.java 3 Nov 2005 00:00:50 -0000 1.3 @@ -29,7 +29,7 @@ * @hibernate.class table="tl_lasbmt11_session_learners" * @author Steve.Ni * - * $version$ + * @version $Revision$ * @serial 4951104689120529660L; */ public class Learner implements Serializable,Cloneable{ Index: lams_tool_sbmt/src/java/org/lamsfoundation/lams/tool/sbmt/dao/hibernate/SubmissionDetailsDAO.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/src/java/org/lamsfoundation/lams/tool/sbmt/dao/hibernate/SubmissionDetailsDAO.java,v diff -u -r1.8 -r1.9 --- lams_tool_sbmt/src/java/org/lamsfoundation/lams/tool/sbmt/dao/hibernate/SubmissionDetailsDAO.java 6 Oct 2005 06:47:52 -0000 1.8 +++ lams_tool_sbmt/src/java/org/lamsfoundation/lams/tool/sbmt/dao/hibernate/SubmissionDetailsDAO.java 3 Nov 2005 00:00:50 -0000 1.9 @@ -1,19 +1,14 @@ /* * Created on May 24, 2005 * - * TODO To change the template for this generated file go to - * Window - Preferences - Java - Code Style - Code Templates */ package org.lamsfoundation.lams.tool.sbmt.dao.hibernate; import java.util.List; import org.hibernate.FlushMode; -import org.hibernate.Hibernate; import org.hibernate.HibernateException; import org.hibernate.Session; -import org.hibernate.type.Type; - import org.lamsfoundation.lams.learningdesign.dao.hibernate.BaseDAO; import org.lamsfoundation.lams.tool.sbmt.SubmissionDetails; import org.lamsfoundation.lams.tool.sbmt.SubmitFilesSession; Index: lams_tool_sbmt/web/WEB-INF/jstl/tlds/c-rt.tld =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/WEB-INF/jstl/tlds/Attic/c-rt.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_sbmt/web/WEB-INF/jstl/tlds/c-rt.tld 3 Nov 2005 00:00:50 -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_tool_sbmt/web/WEB-INF/jstl/tlds/c.tld =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/WEB-INF/jstl/tlds/Attic/c.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_sbmt/web/WEB-INF/jstl/tlds/c.tld 3 Nov 2005 00:00:50 -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_tool_sbmt/web/WEB-INF/jstl/tlds/fmt-rt.tld =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/WEB-INF/jstl/tlds/Attic/fmt-rt.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_sbmt/web/WEB-INF/jstl/tlds/fmt-rt.tld 3 Nov 2005 00:00:50 -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_tool_sbmt/web/WEB-INF/jstl/tlds/fmt.tld =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/WEB-INF/jstl/tlds/Attic/fmt.tld,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_sbmt/web/WEB-INF/jstl/tlds/fmt.tld 3 Nov 2005 00:00:50 -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_tool_sbmt/web/sharing/share.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/sharing/Attic/share.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_sbmt/web/sharing/share.jsp 8 Aug 2005 05:30:09 -0000 1.1 +++ lams_tool_sbmt/web/sharing/share.jsp 3 Nov 2005 00:00:50 -0000 1.2 @@ -2,8 +2,8 @@ <%@ page language="java"%> <%@ taglib uri="tags-html-el" prefix="html" %> -<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%> -<%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%> +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-fmt" prefix="fmt"%> <% String LAMS_WEB_ROOT="/lams"; %>