Index: lams_central/web/WEB-INF/lams.tld
===================================================================
diff -u -r440554bb4a9a414c6e3e676a93de72de3298951c -r3220a0153d636b00968e90e338847526a35e9871
--- lams_central/web/WEB-INF/lams.tld (.../lams.tld) (revision 440554bb4a9a414c6e3e676a93de72de3298951c)
+++ lams_central/web/WEB-INF/lams.tld (.../lams.tld) (revision 3220a0153d636b00968e90e338847526a35e9871)
@@ -24,6 +24,17 @@
+ Output a random number for the learner and passon flash movies to communicate directly.
+ generate unique ID
+
+
+ generateID
+ org.lamsfoundation.lams.web.tag.GenerateIDTag
+ empty
+
+
+
+
Output details from the shared session UserDTO object
user details
@@ -44,17 +55,6 @@
- Output the basic URL for the current webapp. e.g. http://server/lams/tool/nb11/
- Base URL for the current web app
-
-
- WebAppURL
- org.lamsfoundation.lams.web.tag.WebAppURLTag
- empty
-
-
-
-
Output stylesheet based on the user preferences.
User's chosen stylesheet
@@ -73,7 +73,18 @@
+
+ Output the basic URL for the current webapp. e.g. http://server/lams/tool/nb11/
+ Base URL for the current web app
+
+
+ WebAppURL
+ org.lamsfoundation.lams.web.tag.WebAppURLTag
+ empty
+
+
+
STRUTS-textarea
org.lamsfoundation.lams.web.tag.MultiLinesTextareaTag
Index: lams_learning/web/WEB-INF/lams.tld
===================================================================
diff -u -r058624bba137d9124eed6784321dbecc72a12550 -r3220a0153d636b00968e90e338847526a35e9871
--- lams_learning/web/WEB-INF/lams.tld (.../lams.tld) (revision 058624bba137d9124eed6784321dbecc72a12550)
+++ lams_learning/web/WEB-INF/lams.tld (.../lams.tld) (revision 3220a0153d636b00968e90e338847526a35e9871)
@@ -24,6 +24,17 @@
+ Output a random number for the learner and passon flash movies to communicate directly.
+ generate unique ID
+
+
+ generateID
+ org.lamsfoundation.lams.web.tag.GenerateIDTag
+ empty
+
+
+
+
Output details from the shared session UserDTO object
user details
@@ -44,17 +55,6 @@
- Output the basic URL for the current webapp. e.g. http://server/lams/tool/nb11/
- Base URL for the current web app
-
-
- WebAppURL
- org.lamsfoundation.lams.web.tag.WebAppURLTag
- empty
-
-
-
-
Output stylesheet based on the user preferences.
User's chosen stylesheet
@@ -73,7 +73,18 @@
+
+ Output the basic URL for the current webapp. e.g. http://server/lams/tool/nb11/
+ Base URL for the current web app
+
+
+ WebAppURL
+ org.lamsfoundation.lams.web.tag.WebAppURLTag
+ empty
+
+
+
STRUTS-textarea
org.lamsfoundation.lams.web.tag.MultiLinesTextareaTag
@@ -274,5 +285,13 @@
SetEditor
/WEB-INF/tags/SetEditor.tag
+
+ AuthoringButton
+ /WEB-INF/tags/AuthoringButton.tag
+
+
+ headItems
+ /WEB-INF/tags/headItems.tag
+
Index: lams_learning/web/WEB-INF/tags/AuthoringButton.tag
===================================================================
diff -u
--- lams_learning/web/WEB-INF/tags/AuthoringButton.tag (revision 0)
+++ lams_learning/web/WEB-INF/tags/AuthoringButton.tag (revision 3220a0153d636b00968e90e338847526a35e9871)
@@ -0,0 +1,91 @@
+<%
+/****************************************************************
+ * Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org)
+ * =============================================================
+ * License Information: http://lamsfoundation.org/licensing/lams/2.0/
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2.0
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ * USA
+ *
+ * http://www.gnu.org/licenses/gpl.txt
+ * ****************************************************************
+ */
+
+ /**
+ * AuthoringButton.tag
+ * Author: Dapeng Ni
+ * Description: Creates the save/cancel button for authoring page
+ */
+
+ %>
+<%@ tag body-content="scriptless" %>
+<%@ taglib uri="tags-core" prefix="c" %>
+<%@ taglib uri="tags-fmt" prefix="fmt" %>
+<%@ taglib uri="tags-html" prefix="html" %>
+
+<%@ attribute name="formID" required="true" rtexprvalue="true" %>
+<%@ attribute name="toolSignature" required="true" rtexprvalue="true" %>
+<%@ attribute name="toolContentID" required="true" rtexprvalue="true" %>
+<%@ attribute name="clearSessionActionUrl" required="true" rtexprvalue="true" %>
+
+<%-- Optional attribute --%>
+<%@ attribute name="accessMode" required="false" rtexprvalue="true" %>
+<%@ attribute name="cancelButtonLabelKey" required="false" rtexprvalue="true" %>
+<%@ attribute name="saveButtonLabelKey" required="false" rtexprvalue="true" %>
+<%@ attribute name="cancelConfirmMsgKey" required="false" rtexprvalue="true" %>
+<%@ attribute name="defineLater" required="false" rtexprvalue="false" %>
+
+<%-- Default value for message key --%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file