Index: lams_tool_survey/web/WEB-INF/tags/AdvancedAccordian.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/AdvancedAccordian.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/AdvancedAccordian.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,53 @@ +<% + /**************************************************************** + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + + /** + * AdvancedAccordian.tag + * Author: Fiona Malikoff + * Description: Creates the show/hide entry for the Advanced Settings in Montoring. + * Wiki: + */ +%> +<%@ attribute name="title" required="true" rtexprvalue="true"%> + +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-fmt" prefix="fmt"%> +<%@ taglib uri="tags-lams" prefix="lams"%> + +
+
+ + +
+ +
+
+
+ \ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/Arrow.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/Arrow.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/Arrow.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,35 @@ +<%@ tag body-content="scriptless"%> +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-function" prefix="fn" %> + +<%-- state = up: up arrow; state = down: down arrow --%> +<%@ attribute name="state" required="true" rtexprvalue="true"%> +<%@ attribute name="title" required="false" rtexprvalue="true"%> +<%@ attribute name="onclick" required="false" rtexprvalue="true"%> + + + + title="${title}" + + + + + + + + + onclick="${onclick}" + + + + + + + + + + + + + + Index: lams_tool_survey/web/WEB-INF/tags/AuthoringButton.tag =================================================================== diff -u -r29fac4bd0bdf28bcaaeee7aae4020ccb15b6e520 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/WEB-INF/tags/AuthoringButton.tag (.../AuthoringButton.tag) (revision 29fac4bd0bdf28bcaaeee7aae4020ccb15b6e520) +++ lams_tool_survey/web/WEB-INF/tags/AuthoringButton.tag (.../AuthoringButton.tag) (revision 230631757ce5657c02733128542f738928cc514e) @@ -122,12 +122,12 @@ window.close(); } -

- - - - +

+ -

+ + + +
\ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/AuthoringRatingCriteria.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/AuthoringRatingCriteria.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/AuthoringRatingCriteria.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,349 @@ +<% + /** + * AuthoringRatingCriteria.tag + * Author: Andrey Balan + * Description: Creates list of rating criterias 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" %> +<%@ taglib uri="tags-lams" prefix="lams"%> +<%@ taglib uri="tags-function" prefix="fn" %> + + +<%@ attribute name="criterias" required="true" rtexprvalue="true" type="java.util.Collection" %> + +<%-- Optional attribute --%> +<%@ attribute name="hasRatingLimits" required="false" rtexprvalue="true" %> +<%@ attribute name="formContentPrefix" required="false" rtexprvalue="true" %> +<%@ attribute name="styleId" required="false" rtexprvalue="true" %> +<%@ attribute name="headerLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="addLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="deleteLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="upLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="downLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="minimumLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="maximumLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="noMinimumLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="noMaximumLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="jsWarningLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="allowCommentsLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="minNumberWordsLabel" required="false" rtexprvalue="true" %> + +<%-- Default value for message key --%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+ + + + + + + + + + + + + + + +
+ + + +
">
+
">
+
+ "> +
+ + + + +
+ + + + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + + + + + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + +
+
+ +
+ +
+ +
+ + +
+
+
+
+ \ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/CKEditor.tag =================================================================== diff -u -rdc884b8e6274ebbc664d1ee940e565803445bb26 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/WEB-INF/tags/CKEditor.tag (.../CKEditor.tag) (revision dc884b8e6274ebbc664d1ee940e565803445bb26) +++ lams_tool_survey/web/WEB-INF/tags/CKEditor.tag (.../CKEditor.tag) (revision 230631757ce5657c02733128542f738928cc514e) @@ -10,7 +10,12 @@ <%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> <%@ attribute name="displayExpanded" required="false" rtexprvalue="true"%> <%@ attribute name="resizeParentFrameName" required="false" rtexprvalue="true"%> +<%@ attribute name="method" required="false" rtexprvalue="true"%> + + + + @@ -19,6 +24,10 @@ + + ${toolbarSet}Inline + + @@ -33,10 +42,10 @@ - + - ckeditor/ + /lams/ckeditor/ @@ -59,10 +68,9 @@ var editor = CKEDITOR.instances["${id}"]; if (editor) { editor.destroy(true); } - var instance = CKEDITOR.replace( "${id}", { + var instance = CKEDITOR.${method}( "${id}", { width : "${width}", height : "${height}", - autoGrow_minHeight : "${height}".replace("px", ""), toolbar : "${toolbarSet}", language : "${language}", defaultLangugage : "en", Index: lams_tool_survey/web/WEB-INF/tags/Comments.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/Comments.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/Comments.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,47 @@ +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-lams" prefix="lams"%> +<%@ taglib uri="tags-function" prefix="fn" %> + +<%@ attribute name="toolSessionId" required="true" rtexprvalue="true"%> +<%@ attribute name="toolSignature" required="true" rtexprvalue="true"%> +<%@ attribute name="height" required="false" rtexprvalue="true"%> +<%@ attribute name="width" required="false" rtexprvalue="true"%> +<%@ attribute name="mode" required="false" rtexprvalue="true"%> +<%@ attribute name="likeAndDislike" required="false" rtexprvalue="true"%> +<%@ attribute name="readOnly" required="false" rtexprvalue="true"%> +<%@ attribute name="pageSize" required="false" rtexprvalue="true"%> +<%@ attribute name="sortBy" required="false" rtexprvalue="true"%> + + + + + + + + + + + + + &mode=${mode} + + + + + + + + + + + + + + +
+ \ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/CommentsAuthor.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/CommentsAuthor.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/CommentsAuthor.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,51 @@ +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-html" prefix="html"%> +<%@ taglib uri="tags-fmt" prefix="fmt"%> + +<%@ attribute name="allowCommentsVariableName" required="false" rtexprvalue="true"%> +<%@ attribute name="allowCommentLabelKey" required="false" rtexprvalue="true"%> +<%@ attribute name="likeDislikeVariableName" required="false" rtexprvalue="true"%> +<%@ attribute name="likeOnlyCommentLabelKey" required="false" rtexprvalue="true"%> +<%@ attribute name="likeDislikeLabelKey" required="false" rtexprvalue="true"%> + + + + + + + + + + + + + + + + + +
+ +
+
+     +   +
+ + + + Index: lams_tool_survey/web/WEB-INF/tags/Page.tag =================================================================== diff -u -re5688be8da56dbbc69bb5441cace7491712cd13b -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/WEB-INF/tags/Page.tag (.../Page.tag) (revision e5688be8da56dbbc69bb5441cace7491712cd13b) +++ lams_tool_survey/web/WEB-INF/tags/Page.tag (.../Page.tag) (revision 230631757ce5657c02733128542f738928cc514e) @@ -12,25 +12,38 @@
+ + + + + +
-
- + +
- - - - -
+ + + +
+
+
+
+
+ + + + Index: lams_tool_survey/web/WEB-INF/tags/Rating.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/Rating.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/Rating.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,194 @@ +<% + /** + * Rating.tag + * Author: Andrey Balan + * Description: Shows rating stars widget + */ + %> +<%@ tag body-content="scriptless" %> +<%@ taglib uri="tags-core" prefix="c" %> +<%@ taglib uri="tags-fmt" prefix="fmt" %> +<%@ taglib uri="tags-html" prefix="html" %> +<%@ taglib uri="tags-lams" prefix="lams"%> +<%@ taglib uri="tags-function" prefix="fn" %> + + +<%@ attribute name="itemRatingDto" required="true" rtexprvalue="true" type="org.lamsfoundation.lams.rating.dto.ItemRatingDTO" %> + +<%-- Optional attribute --%> +<%@ attribute name="disabled" required="false" rtexprvalue="true" %> +<%@ attribute name="isItemAuthoredByUser" required="false" rtexprvalue="true" %> +<%@ attribute name="maxRates" required="false" rtexprvalue="true" %> +<%@ attribute name="countRatedItems" required="false" rtexprvalue="true" %> +<%@ attribute name="yourRatingLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="averageRatingLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="minNumberWordsLabel" required="false" rtexprvalue="true" %> +<%@ attribute name="showComments" required="false" rtexprvalue="true" %> + +<%-- Default value for message key --%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<%--Rating stars area---------------------------------------%> + +
+
+ + + + + + + + + + + + + + + + + + + + + + ${criteriaDto.ratingCriteria.title} + + + + + + + + + + + +
+
+ + + +
+ + + + + + ${criteriaDto.numberOfVotes} + + +
+
+ + +
style="visibility: hidden;" + > + + + + + + + + + + + + + ${criteriaDto.numberOfVotes} + + +
+ +
+
+ +
+ +
+ +
+ +<%--Comments area---------------------------------------%> + +
+ + + + +
+ +
+
+
+ + +
+ +
+
+ + +
+ + + + + + + : + + + + +
+
+ +
+
+
+
+
+
+
+ +
+
\ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/RestrictedUsageAccordian.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/RestrictedUsageAccordian.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/RestrictedUsageAccordian.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,54 @@ +<% + /**************************************************************** + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + + /** + * AdvancedAccordian.tag + * Author: Fiona Malikoff + * Description: Creates the show/hide entry for the Restricted Usage Settings in Monitoring. + * Wiki: + */ +%> +<%@ attribute name="title" required="true" rtexprvalue="true"%> + +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-fmt" prefix="fmt"%> +<%@ taglib uri="tags-lams" prefix="lams"%> + +
+
+ + + +
+ +
+
+
+ \ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/TSTable.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/TSTable.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/TSTable.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,53 @@ +<%-- Tablesorter Table and Pager --%> +<%@ tag body-content="scriptless"%> +<%@ taglib uri="tags-core" prefix="c"%> + +<%@ attribute name="numColumns" required="true" rtexprvalue="true"%> +<%@ attribute name="dataId" required="false" rtexprvalue="true"%> +<%@ attribute name="tableClass" required="false" rtexprvalue="true"%> +<%@ attribute name="pagerClass" required="false" rtexprvalue="true"%> +<%@ attribute name="test" required="false" rtexprvalue="true"%> + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + +
+ + \ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/Tab.tag =================================================================== diff -u -rac6c077d83ef253fa3f07a515edc49077317029a -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/WEB-INF/tags/Tab.tag (.../Tab.tag) (revision ac6c077d83ef253fa3f07a515edc49077317029a) +++ lams_tool_survey/web/WEB-INF/tags/Tab.tag (.../Tab.tag) (revision 230631757ce5657c02733128542f738928cc514e) @@ -1,85 +1,89 @@ -<% - /**************************************************************** - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 - * USA - * - * http://www.gnu.org/licenses/gpl.txt - * **************************************************************** - */ - - /** - * Tab.tag - * Author: Mitchell Seaton - * Description: Creates a tab element. - * Wiki: - */ -%> -<%@ tag body-content="empty"%> -<%@ attribute name="id" required="true" rtexprvalue="true"%> -<%@ attribute name="value" required="false" rtexprvalue="true"%> -<%@ attribute name="key" required="false" rtexprvalue="true"%> -<%@ attribute name="inactive" required="false" rtexprvalue="true"%> -<%@ attribute name="methodCall" required="false" rtexprvalue="true"%> - -<%@ taglib uri="tags-core" prefix="c"%> -<%@ taglib uri="tags-fmt" prefix="fmt"%> -<%@ taglib uri="tags-lams" prefix="lams"%> - -<%-- Check if bundle is set --%> - - - - - - - - - - -<%-- - Usually methodCall is selectTab, but the calling code can override methodCall if desired. - this is handy if the page needs different logic on initialisation and user switching tabs ---%> - - - - - - - - - - - - - - - - - - - +<% + /**************************************************************** + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + + /** + * Tab.tag + * Author: Fiona Malikoff + * Description: Creates a tab element within the Hybrid Tab Header. + * Wiki: + */ +%> +<%@ tag body-content="empty"%> +<%@ attribute name="id" required="true" rtexprvalue="true"%> +<%@ attribute name="value" required="false" rtexprvalue="true"%> +<%@ attribute name="key" required="false" rtexprvalue="true"%> +<%@ attribute name="inactive" required="false" rtexprvalue="true"%> +<%@ attribute name="methodCall" required="false" rtexprvalue="true"%> + +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-fmt" prefix="fmt"%> +<%@ taglib uri="tags-lams" prefix="lams"%> + +<%-- Check if bundle is set --%> + + + + + + + + + + +<%-- + Usually methodCall is selectTab, but the calling code can override methodCall if desired. + this is handy if the page needs different logic on initialisation and user switching tabs + + -- onclick="${methodCall}(${id});return false;"> + +--%> + + + + + + + + + + + + + + + + + + + + + class="active" + + + + + class="disabled" + + +
  • ${tabTitle}
  • Index: lams_tool_survey/web/WEB-INF/tags/TabBody.tag =================================================================== diff -u -r9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/WEB-INF/tags/TabBody.tag (.../TabBody.tag) (revision 9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6) +++ lams_tool_survey/web/WEB-INF/tags/TabBody.tag (.../TabBody.tag) (revision 230631757ce5657c02733128542f738928cc514e) @@ -1,52 +1,44 @@ -<%/**************************************************************** - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 - * USA - * - * http://www.gnu.org/licenses/gpl.txt - * **************************************************************** - */ - -/** - * TabBody.tag - * Author: Mitchell Seaton - * Description: Creates the body container for a tab element - * Wiki: - */ - - %> -<%@ tag body-content="scriptless"%> -<%@ attribute name="id" required="true" rtexprvalue="true"%> -<%@ attribute name="tabTitle" required="false" rtexprvalue="true"%> -<%@ attribute name="titleKey" required="false" rtexprvalue="true"%> -<%@ attribute name="page" required="false" rtexprvalue="true"%> -<%@ taglib uri="tags-core" prefix="c"%> -<%@ taglib uri="tags-bean" prefix="bean"%> - - -
    - - - - - - - - - -
    - +<%/**************************************************************** + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + +/** + * TabBody.tag + * Author: Mitchell Seaton + * Description: Creates the body container for a tab element + * Wiki: + */ + +%> +<%@ attribute name="id" required="true" rtexprvalue="true"%> +<%@ attribute name="tabTitle" required="false" rtexprvalue="true"%> +<%@ attribute name="titleKey" required="false" rtexprvalue="true"%> +<%@ attribute name="page" required="false" rtexprvalue="true"%> +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-bean" prefix="bean"%> + + + + active + + +
    Index: lams_tool_survey/web/WEB-INF/tags/TabBodyArea.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/TabBodyArea.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/TabBodyArea.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,39 @@ +<%/**************************************************************** + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + +/** + * TabBodyArea.tag + * Author: Fiona Malikoff + * Description: Creates the panel body area for a nav bar screen + * Wiki: + */ + +%> +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-bean" prefix="bean"%> + +
    + +
    + + \ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/TabBodys.tag =================================================================== diff -u --- lams_tool_survey/web/WEB-INF/tags/TabBodys.tag (revision 0) +++ lams_tool_survey/web/WEB-INF/tags/TabBodys.tag (revision 230631757ce5657c02733128542f738928cc514e) @@ -0,0 +1,37 @@ +<%/**************************************************************** + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + +/** + * TabBodys.tag + * Author: Fiona Malikoff + * Description: Create a tabbody list from nested TabBody tags. + * Wiki: + */ + + %> +<%@ tag body-content="scriptless"%> + + +
    + +
    Index: lams_tool_survey/web/WEB-INF/tags/TabName.tag =================================================================== diff -u -r7329c82c5388fbb86b6a0a2b27a71151ee8f116e -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/WEB-INF/tags/TabName.tag (.../TabName.tag) (revision 7329c82c5388fbb86b6a0a2b27a71151ee8f116e) +++ lams_tool_survey/web/WEB-INF/tags/TabName.tag (.../TabName.tag) (revision 230631757ce5657c02733128542f738928cc514e) @@ -1,59 +1,59 @@ -<%/**************************************************************** - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 - * USA - * - * http://www.gnu.org/licenses/gpl.txt - * **************************************************************** - */ - -/** - * TabName Tag - * Author: Mitchell Seaton - * Description: Shortens name that are too long to fit inside a tab - */ - - %> -<%@ tag body-content="scriptless" %> - -<%@ attribute name="url" required="true" rtexprvalue="true"%> -<%@ attribute name="highlight" required="false" rtexprvalue="true" %> - -<%@ taglib uri="tags-core" prefix="c"%> -<%@ taglib uri="tags-function" prefix="fn"%> - -12 - - - - - - - - - - - - - - - - - - - +<%/**************************************************************** + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + +/** + * TabName Tag + * Author: Mitchell Seaton + * Description: Shortens name that are too long to fit inside a tab + */ + + %> +<%@ tag body-content="scriptless" %> + +<%@ attribute name="url" required="true" rtexprvalue="true"%> +<%@ attribute name="highlight" required="false" rtexprvalue="true" %> + +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-function" prefix="fn"%> + +12 + + + + + + + + + + + + + + + + + + + \ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/Tabs.tag =================================================================== diff -u -r9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/WEB-INF/tags/Tabs.tag (.../Tabs.tag) (revision 9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6) +++ lams_tool_survey/web/WEB-INF/tags/Tabs.tag (.../Tabs.tag) (revision 230631757ce5657c02733128542f738928cc514e) @@ -1,69 +1,92 @@ -<%/**************************************************************** - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 - * USA - * - * http://www.gnu.org/licenses/gpl.txt - * **************************************************************** - */ - -/** - * Tabs.tag - * Author: Mitchell Seaton - * Description: Create a tab list from a input collection or nested Tab tags. - * Wiki: - */ - - %> -<%@ tag body-content="scriptless"%> -<%@ attribute name="collection" type="java.util.Collection" required="false" rtexprvalue="true"%> -<%@ attribute name="control" required="false" rtexprvalue="true"%> -<%@ attribute name="useKey" required="false" rtexprvalue="true"%> -<%@ taglib uri="tags-core" prefix="c"%> -<%@ taglib uri="tags-lams" prefix="lams"%> - - - - - - - - - - - - +<%/**************************************************************** + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + +/** + * Tabs.tag + * Author: Fiona Malikoff + * Description: Create a hybrid panel header that contains a nav bar that acts like tabs. + */ + +%> +<%@ attribute name="control" required="false" rtexprvalue="true"%> +<%@ attribute name="title" required="false" rtexprvalue="true"%> +<%@ attribute name="refreshOnClickAction" required="false" rtexprvalue="true"%> +<%@ attribute name="helpToolSignature" required="false" rtexprvalue="true"%> +<%@ attribute name="helpModule" required="false" rtexprvalue="true"%> +<%@ attribute name="extraControl" required="false" rtexprvalue="true"%> + +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-lams" prefix="lams"%> + + + + + + + + + + + + +
    + + \ No newline at end of file Index: lams_tool_survey/web/WEB-INF/tags/headItems.tag =================================================================== diff -u -r613f0d0d76eb497ed58d7e6836eda34a245425a9 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/WEB-INF/tags/headItems.tag (.../headItems.tag) (revision 613f0d0d76eb497ed58d7e6836eda34a245425a9) +++ lams_tool_survey/web/WEB-INF/tags/headItems.tag (.../headItems.tag) (revision 230631757ce5657c02733128542f738928cc514e) @@ -41,7 +41,9 @@ - + - + + + Index: lams_tool_survey/web/WEB-INF/tlds/lams/lams.tld =================================================================== diff -u -raf1051520a59e1945b25b8be64c5c6a0f7820baf -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/WEB-INF/tlds/lams/lams.tld (.../lams.tld) (revision af1051520a59e1945b25b8be64c5c6a0f7820baf) +++ lams_tool_survey/web/WEB-INF/tlds/lams/lams.tld (.../lams.tld) (revision 230631757ce5657c02733128542f738928cc514e) @@ -178,7 +178,7 @@ css org.lamsfoundation.lams.web.tag.CssTag empty - + Output stylesheet based on the user preferences. style @@ -408,18 +408,34 @@ /WEB-INF/tags/TabBody.tag + TabBodys + /WEB-INF/tags/TabBodys.tag + + TabName /WEB-INF/tags/TabName.tag + TabBodyArea + /WEB-INF/tags/TabBodyArea.tag + + CKEditor /WEB-INF/tags/CKEditor.tag AuthoringButton /WEB-INF/tags/AuthoringButton.tag - + + AuthoringRatingCriteria + /WEB-INF/tags/AuthoringRatingCriteria.tag + + + Rating + /WEB-INF/tags/Rating.tag + + headItems /WEB-INF/tags/headItems.tag @@ -438,8 +454,24 @@ Page /WEB-INF/tags/Page.tag + + + TSTable + /WEB-INF/tags/TSTable.tag + + + Arrow + /WEB-INF/tags/Arrow.tag + + + AdvancedAccordian + /WEB-INF/tags/AdvancedAccordian.tag + RestrictedUsageAccordian + /WEB-INF/tags/RestrictedUsageAccordian.tag + + ImgButtonWrapper /WEB-INF/tags/ImgButtonWrapper.tag @@ -481,5 +513,13 @@ head /WEB-INF/tags/Head.tag + + Comments + /WEB-INF/tags/Comments.tag + + + CommentsAuthor + /WEB-INF/tags/CommentsAuthor.tag + Index: lams_tool_survey/web/common/tabbedheader.jsp =================================================================== diff -u -r613f0d0d76eb497ed58d7e6836eda34a245425a9 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/common/tabbedheader.jsp (.../tabbedheader.jsp) (revision 613f0d0d76eb497ed58d7e6836eda34a245425a9) +++ lams_tool_survey/web/common/tabbedheader.jsp (.../tabbedheader.jsp) (revision 230631757ce5657c02733128542f738928cc514e) @@ -3,13 +3,4 @@ - - - - - - - - - - + Index: lams_tool_survey/web/includes/javascript/surveyitem.js =================================================================== diff -u -r8b97231e320c0c5b674f07c14da711f232ba9e1c -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/includes/javascript/surveyitem.js (.../surveyitem.js) (revision 8b97231e320c0c5b674f07c14da711f232ba9e1c) +++ lams_tool_survey/web/includes/javascript/surveyitem.js (.../surveyitem.js) (revision 230631757ce5657c02733128542f738928cc514e) @@ -1,44 +1,27 @@ /* - This is Survey Item instrcution area. + This is Survey Item instruction area. */ - var instructionTargetDiv = "instructionArea"; // Please set these 2 variables in JSP file for using tag reason: // var removeInstructionUrl = ""; // var addInstructionUrl = ""; function removeInstruction(idx){ - //var id = "instructionItem" + idx; - //Element.remove(id); - var url= removeInstructionUrl; var reqIDVar = new Date(); - var param = Form.serialize("instructionForm")+"&removeIdx="+idx+"&reqID="+reqIDVar.getTime(); - removeInstructionLoading(); - var myAjax = new Ajax.Updater( - instructionTargetDiv, - url, - { - method:'post', - parameters:param, - onComplete:removeInstructionComplete, - evalScripts:true - } - ); + var param = $("#instructionForm").serialize()+"&removeIdx="+idx+"&reqID="+reqIDVar.getTime(); + var url= removeInstructionUrl+"?"+param; + showInstructionBusy(); + $('#instructionArea').load(url,function(data) { + hideInstructionBusy(); + }); } function addInstruction(){ - var url= addInstructionUrl; var reqIDVar = new Date(); - var param = Form.serialize("instructionForm")+"&reqID="+reqIDVar.getTime(); - addInstructionLoading(); - var myAjax = new Ajax.Updater( - instructionTargetDiv, - url, - { - method:'post', - parameters:param, - onComplete:addInstructionComplete, - evalScripts:true - } - ); + var param = $("#instructionForm").serialize()+"&reqID="+reqIDVar.getTime(); + var url= addInstructionUrl+"?"+param; + showInstructionBusy(); + $('#instructionArea').load(url,function() { + hideInstructionBusy(); + }); } function upItem(itemIdx){ if(itemIdx == 0) @@ -55,50 +38,41 @@ switchValue(currId,repId); } function switchValue(currId,repId){ - var temp = $(repId).value; - $(repId).value = $(currId).value; - $(currId).value= temp; + var current = document.getElementById(currId); + var rep = document.getElementById(repId); + var temp = rep.value; + rep.value = current.value; + current.value= temp; } - function removeInstructionLoading(){ - showBusy(instructionTargetDiv); + function showInstructionBusy(){ + $('#instructionAreaBusy').show(); } - function removeInstructionComplete(){ - hideBusy(instructionTargetDiv); - + function hideInstructionBusy(){ + $('#instructionAreaBusy').hide(); } - function addInstructionLoading(){ - showBusy(instructionTargetDiv); + function refreshCKEditors() { + // make sure all the ckeditors are refreshed, not just the validated ones + for (var i in CKEDITOR.instances) { + CKEDITOR.instances[i].updateElement(); + } } - function addInstructionComplete(){ - hideBusy(instructionTargetDiv); - - } - function showBusy(targetDiv){ - if($(targetDiv+"_Busy") != null){ - Element.show(targetDiv+"_Busy"); + + function submitSurveyItem(){ + refreshCKEditors(); + if (document.getElementById("instructionForm")) { + document.getElementById("instructionList").value = $("#instructionForm").serialize(); } + $.ajax({ + data: $("#surveyItemForm").serialize(), + type: $("#surveyItemForm").attr('method'), + url: $("#surveyItemForm").attr('action'), + success: function(data) { + $('#questionInputArea').html(data); + } + }); } - function hideBusy(targetDiv){ - if($(targetDiv+"_Busy") != null){ - Element.hide(targetDiv+"_Busy"); - } - } - function submitSurveyItem(){ - if($("instructionList") != null) - $("instructionList").value = Form.serialize("instructionForm"); - $("surveyItemForm").submit(); - } - function cancelSurveyItem(){ - var win = null; - if (window.hideMessage) { - win = window; - } else if (window.parent && window.parent.hideMessage) { - win = window.parent; - } else { - win = window.top; - } - win.hideMessage(); + hideMessage(); } Index: lams_tool_survey/web/pages/authoring/addCondition.jsp =================================================================== diff -u -re48fc0e1f6819e257b87efa36c3baec3c1c488f0 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/pages/authoring/addCondition.jsp (.../addCondition.jsp) (revision e48fc0e1f6819e257b87efa36c3baec3c1c488f0) +++ lams_tool_survey/web/pages/authoring/addCondition.jsp (.../addCondition.jsp) (revision 230631757ce5657c02733128542f738928cc514e) @@ -2,59 +2,42 @@ <%@ include file="/common/taglibs.jsp"%> - - - <%@ include file="/common/header.jsp"%> - - - - - - - <%@ include file="/common/messages.jsp"%> - - -

    - -

    +
    +
    +
    +
    -
    - -
    +
    -
    - -
    - <%-- Text search form fields are being included --%> - -

    - - - - - -
    -
    + <%@ include file="/common/messages.jsp"%> + + + +
    + + +
    -
    + <%-- Text search form fields are being included --%> + +

    + +
    + +
    +
    + + - - - - - - +
    + + +
    + +
    +
    \ No newline at end of file Index: lams_tool_survey/web/pages/authoring/advance.jsp =================================================================== diff -u -r098d686653002409f33aff0f69b1183e07c1eab3 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/pages/authoring/advance.jsp (.../advance.jsp) (revision 098d686653002409f33aff0f69b1183e07c1eab3) +++ lams_tool_survey/web/pages/authoring/advance.jsp (.../advance.jsp) (revision 230631757ce5657c02733128542f738928cc514e) @@ -3,44 +3,44 @@ -

    - +

    -

    +
    -

    - +

    -

    +
    -

    - +

    -

    +
    -

    - +

    -

    +
    -

    - +

    -

    +
    -

    - -

    +
    + +
    + - - - - - - - +
    + + +
    +
    + + +
    -
    -
    - -
    - -
    -
    - -
    - -
    <%@ include file="/pages/authoring/parts/itemlist.jsp"%>
    -

    - ');"> - +');" + class="btn btn-default"> +   - ');" - class="space-left"> -

    +');" + class="btn btn-default">   -

    - -

    - +
    Index: lams_tool_survey/web/pages/authoring/conditionList.jsp =================================================================== diff -u -r21ce4d0194e8b81e613f4f6e14eb4e8bf53bdf59 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/pages/authoring/conditionList.jsp (.../conditionList.jsp) (revision 21ce4d0194e8b81e613f4f6e14eb4e8bf53bdf59) +++ lams_tool_survey/web/pages/authoring/conditionList.jsp (.../conditionList.jsp) (revision 230631757ce5657c02733128542f738928cc514e) @@ -1,18 +1,16 @@ <%@ include file="/common/taglibs.jsp"%> -
    -

    - - -

    +
    + +
    - +
    - - - + + + +
    @@ -40,62 +38,33 @@ ${condition.displayName} - + + - " - onclick="upCondition(${status.index},'${sessionMapID}')"> - - "> - - - + + + + - - "> - - - " - onclick="downCondition(${status.index},'${sessionMapID}')"> - + + + - " - onclick="editCondition(${status.index},'${sessionMapID}')" /> - - " - onclick="deleteCondition(${status.index},'${sessionMapID}')" /> - " + onclick="editCondition(${status.index},'${sessionMapID}')">" + onclick="deleteCondition(${status.index},'${sessionMapID}')">
    -<%-- This script will works when a new resoruce Condition submit in order to refresh "TaskList List" panel. --%> +<%-- This script will works when a new resource Condition submit in order to refresh "TaskList List" panel. --%> Index: lams_tool_survey/web/pages/authoring/conditions.jsp =================================================================== diff -u -r7b79396263b36a933d66390fb9ab12821956d59d -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/pages/authoring/conditions.jsp (.../conditions.jsp) (revision 7b79396263b36a933d66390fb9ab12821956d59d) +++ lams_tool_survey/web/pages/authoring/conditions.jsp (.../conditions.jsp) (revision 230631757ce5657c02733128542f738928cc514e) @@ -2,109 +2,61 @@
    - <%@ include file="/pages/authoring/conditionList.jsp"%> + <%@ include file="conditionList.jsp"%>
    + + -

    - ');" class="button-add-item"> - -

    - - -

    - -

    +
    Index: lams_tool_survey/web/pages/authoring/definelater.jsp =================================================================== diff -u -re48fc0e1f6819e257b87efa36c3baec3c1c488f0 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/pages/authoring/definelater.jsp (.../definelater.jsp) (revision e48fc0e1f6819e257b87efa36c3baec3c1c488f0) +++ lams_tool_survey/web/pages/authoring/definelater.jsp (.../definelater.jsp) (revision 230631757ce5657c02733128542f738928cc514e) @@ -5,11 +5,6 @@ <%@ page import="java.util.HashSet"%> <%@ page import="org.lamsfoundation.lams.tool.survey.SurveyConstants"%> <%@ page import="java.util.Set"%> -<%Set tabs = new HashSet(); - tabs.add("label.authoring.heading.basic"); - pageContext.setAttribute("tabs", tabs); - - %> <fmt:message key="label.author.title" /> @@ -20,12 +15,6 @@ function init(){ selectTab(1); //select the default tab; - - initEditor("Title"); - initEditor("Instructions"); - initEditor("OnlineInstruction"); - initEditor("OfflineInstruction"); - } function doSelectTab(tabId) { @@ -43,43 +32,41 @@ -
    + - + + + + -

    - -

    - -
    - <%@ include file="/common/messages.jsp"%> - - - -
    - - - - - - - -
    - - + + + + + + + <%@ include file="/common/messages.jsp"%> + + + + + + + + + + + + + + -
    - -
    \ No newline at end of file Index: lams_tool_survey/web/pages/authoring/parts/addchoicequestion.jsp =================================================================== diff -u -re48fc0e1f6819e257b87efa36c3baec3c1c488f0 -r230631757ce5657c02733128542f738928cc514e --- lams_tool_survey/web/pages/authoring/parts/addchoicequestion.jsp (.../addchoicequestion.jsp) (revision e48fc0e1f6819e257b87efa36c3baec3c1c488f0) +++ lams_tool_survey/web/pages/authoring/parts/addchoicequestion.jsp (.../addchoicequestion.jsp) (revision 230631757ce5657c02733128542f738928cc514e) @@ -1,91 +1,80 @@ - - - <%@ include file="/common/taglibs.jsp"%> - - - <%@ include file="/common/header.jsp"%> - - - - <%-- used for surveyitem.js --%> - - - - - + <%-- used for surveyitem.js --%> + + - <%@ include file="/common/messages.jsp"%> - - - <%-- This field is not belong STRUTS form --%> - - - - - <%-- This value should be 1 or 2 --%> - - -

    + +
    +
    -

    - -
    -
    +
    - - + <%@ include file="/common/messages.jsp"%> + + + + <%-- This field is not belong STRUTS form --%> + + + + + <%-- This value should be 1 or 2 --%> + -
    - - +
    + + + +
    - +
    -
    - - +
    + + +