Index: lams_admin/conf/language/lams/ApplicationResources.properties =================================================================== diff -u -r51fb2a37254f24bb2a805d4ffd54482c779f43fa -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 51fb2a37254f24bb2a805d4ffd54482c779f43fa) +++ lams_admin/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -512,5 +512,6 @@ tool.groups.group.name.error =A group name can not be blank tool.groups.save.error =Error while saving groups config.live.edit =Enable live edit +sysadmin.extGroupsUrl =External groups URL #======= End labels: Exported 515 labels for en AU ===== Index: lams_admin/src/java/org/lamsfoundation/lams/admin/web/action/ThemeManagementAction.java =================================================================== diff -u -rc92ea51a973dc03ece970c057dd9369eda6a8c24 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/src/java/org/lamsfoundation/lams/admin/web/action/ThemeManagementAction.java (.../ThemeManagementAction.java) (revision c92ea51a973dc03ece970c057dd9369eda6a8c24) +++ lams_admin/src/java/org/lamsfoundation/lams/admin/web/action/ThemeManagementAction.java (.../ThemeManagementAction.java) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -151,7 +151,7 @@ theme.setName(form.getName()); theme.setDescription(form.getDescription()); theme.setImageDirectory(form.getImageDirectory()); - theme.setType(Integer.parseInt(form.getType())); + // theme.setType(Integer.parseInt(form.getType())); no longer in form see LDEV-3674 return theme; } Index: lams_admin/web/WEB-INF/tags/Alert.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/Alert.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/Alert.tag (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -0,0 +1,46 @@ +<%@ tag body-content="scriptless"%> +<%@ taglib uri="tags-core" prefix="c"%> + +<%@ attribute name="close" required="false" rtexprvalue="true"%> +<%@ attribute name="id" required="false" rtexprvalue="true"%> +<%@ attribute name="type" required="false" rtexprvalue="true"%> + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ +
+
+ + × + + +
+
+
+
+
Index: lams_admin/web/WEB-INF/tags/AuthoringButton.tag =================================================================== diff -u -r29fac4bd0bdf28bcaaeee7aae4020ccb15b6e520 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/WEB-INF/tags/AuthoringButton.tag (.../AuthoringButton.tag) (revision 29fac4bd0bdf28bcaaeee7aae4020ccb15b6e520) +++ lams_admin/web/WEB-INF/tags/AuthoringButton.tag (.../AuthoringButton.tag) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -122,12 +122,12 @@ window.close(); } -

- - - - +

+ -

+ + + +
\ No newline at end of file Index: lams_admin/web/WEB-INF/tags/AuthoringRatingCriteria.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/AuthoringRatingCriteria.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/AuthoringRatingCriteria.tag (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -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_admin/web/WEB-INF/tags/Comments.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/Comments.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/Comments.tag (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -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_admin/web/WEB-INF/tags/CommentsAuthor.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/CommentsAuthor.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/CommentsAuthor.tag (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -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_admin/web/WEB-INF/tags/DefineLater.tag =================================================================== diff -u -rfef442a88ab05c91db8a551081c4abc060d4da5e -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/WEB-INF/tags/DefineLater.tag (.../DefineLater.tag) (revision fef442a88ab05c91db8a551081c4abc060d4da5e) +++ lams_admin/web/WEB-INF/tags/DefineLater.tag (.../DefineLater.tag) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -1,6 +1,6 @@ <% - /**************************************************************** + /**************************************************************** * Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) * ============================================================= * License Information: http://lamsfoundation.org/licensing/lams/2.0/ @@ -49,10 +49,18 @@ -

- -

-
- +
+
+
+ +
+
+
+
+ +
+
\ No newline at end of file Index: lams_admin/web/WEB-INF/tags/Rating.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/Rating.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/Rating.tag (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -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_admin/web/WEB-INF/tags/TSTable.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/TSTable.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/TSTable.tag (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -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_admin/web/WEB-INF/tags/TabBody.tag =================================================================== diff -u -r9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/WEB-INF/tags/TabBody.tag (.../TabBody.tag) (revision 9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6) +++ lams_admin/web/WEB-INF/tags/TabBody.tag (.../TabBody.tag) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -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_admin/web/WEB-INF/tags/TabBodyArea.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/TabBodyArea.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/TabBodyArea.tag (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -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_admin/web/WEB-INF/tags/TabBodys.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/TabBodys.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/TabBodys.tag (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -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_admin/web/WEB-INF/tags/headItems.tag =================================================================== diff -u -r613f0d0d76eb497ed58d7e6836eda34a245425a9 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/WEB-INF/tags/headItems.tag (.../headItems.tag) (revision 613f0d0d76eb497ed58d7e6836eda34a245425a9) +++ lams_admin/web/WEB-INF/tags/headItems.tag (.../headItems.tag) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -41,7 +41,9 @@
- + - + + + Index: lams_admin/web/WEB-INF/tiles-defs.xml =================================================================== diff -u -r9c83d6e84da12d1d753d9a0588ecd4a1b49de1f7 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/WEB-INF/tiles-defs.xml (.../tiles-defs.xml) (revision 9c83d6e84da12d1d753d9a0588ecd4a1b49de1f7) +++ lams_admin/web/WEB-INF/tiles-defs.xml (.../tiles-defs.xml) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -25,6 +25,7 @@ + @@ -34,6 +35,7 @@ + @@ -58,7 +60,7 @@ - + @@ -69,11 +71,13 @@ + + @@ -84,16 +88,19 @@ + + + @@ -104,16 +111,18 @@ + + - + @@ -163,11 +172,13 @@ + + @@ -192,6 +203,7 @@ + @@ -202,11 +214,13 @@ + + Index: lams_admin/web/WEB-INF/tlds/lams/lams.tld =================================================================== diff -u -r5e63656a12c02f7476564e278b43ff4ce86ac930 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/WEB-INF/tlds/lams/lams.tld (.../lams.tld) (revision 5e63656a12c02f7476564e278b43ff4ce86ac930) +++ lams_admin/web/WEB-INF/tlds/lams/lams.tld (.../lams.tld) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -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 @@ -432,6 +448,30 @@ /WEB-INF/tags/DefineLater.tag + Alert + /WEB-INF/tags/Alert.tag + + + 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 @@ -473,5 +513,13 @@ head /WEB-INF/tags/Head.tag + + Comments + /WEB-INF/tags/Comments.tag + + + CommentsAuthor + /WEB-INF/tags/CommentsAuthor.tag + Index: lams_admin/web/css/admin.css =================================================================== diff -u --- lams_admin/web/css/admin.css (revision 0) +++ lams_admin/web/css/admin.css (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -0,0 +1,3 @@ +p.warning { + color:#a94442 +} \ No newline at end of file Index: lams_admin/web/import/importGroups.jsp =================================================================== diff -u -rf5f2bfea7d848c47c35db86335b0e0156447b7ca -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/import/importGroups.jsp (.../importGroups.jsp) (revision f5f2bfea7d848c47c35db86335b0e0156447b7ca) +++ lams_admin/web/import/importGroups.jsp (.../importGroups.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -11,19 +11,17 @@ } -

- -

+

-

+

<% @@ -33,10 +31,10 @@ List rowResult = (List)results.get(i); if (rowResult != null && rowResult.size() >= 4) { if (rowResult.get(3).equals(OrganisationType.COURSE_TYPE.toString())) { - out.print(""); + out.print(""); out.print(""); } else if (rowResult.get(3).equals(OrganisationType.CLASS_TYPE.toString())) { - out.print(""); + out.print(""); out.print(""); } } else { // it's an error message @@ -50,7 +48,6 @@ } %>
"+rowResult.get(0)+""+rowResult.get(0)+""+rowResult.get(1)+""+rowResult.get(0)+""+rowResult.get(0)+""+rowResult.get(1)+"
-

 


@@ -77,13 +74,13 @@ - +
-

-   - -

+
+ +   +
Index: lams_admin/web/import/importexcel.jsp =================================================================== diff -u -rf5f2bfea7d848c47c35db86335b0e0156447b7ca -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/import/importexcel.jsp (.../importexcel.jsp) (revision f5f2bfea7d848c47c35db86335b0e0156447b7ca) +++ lams_admin/web/import/importexcel.jsp (.../importexcel.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -7,9 +7,7 @@ } -

- -

+

@@ -35,12 +33,12 @@ - +
-

-   - -

+
+ +   +
- + \ No newline at end of file Index: lams_admin/web/import/importresult.jsp =================================================================== diff -u -r9846cdc7141f0754a67aad3ad18d82cfd67f3152 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/import/importresult.jsp (.../importresult.jsp) (revision 9846cdc7141f0754a67aad3ad18d82cfd67f3152) +++ lams_admin/web/import/importresult.jsp (.../importresult.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -1,7 +1,6 @@ <%@ include file="/taglibs.jsp"%> -

-

+

@@ -14,10 +13,3 @@

- -

 

- -

- -

\ No newline at end of file Index: lams_admin/web/import/status.jsp =================================================================== diff -u -r2ef18e4c87e2e7929950dbeb990c6715ef16c0c2 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/import/status.jsp (.../status.jsp) (revision 2ef18e4c87e2e7929950dbeb990c6715ef16c0c2) +++ lams_admin/web/import/status.jsp (.../status.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -24,7 +24,7 @@

- +

:

Index: lams_admin/web/organisation/parts/breadcrumbs.jsp =================================================================== diff -u -r109a71a895d44a4bb8294b9b4c127e741cb2f772 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/organisation/parts/breadcrumbs.jsp (.../breadcrumbs.jsp) (revision 109a71a895d44a4bb8294b9b4c127e741cb2f772) +++ lams_admin/web/organisation/parts/breadcrumbs.jsp (.../breadcrumbs.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -1,15 +1,14 @@ <%@ include file="/taglibs.jsp"%> <%@ page import="org.lamsfoundation.lams.usermanagement.OrganisationType" %> -

- : +

: <%= OrganisationType.CLASS_TYPE %> - "> + " class="btn btn-default"> : - "> + " class="btn btn-default"> -

\ No newline at end of file +

\ No newline at end of file Index: lams_admin/web/organisation/parts/selectLearners.jsp =================================================================== diff -u -r7f0a0929afc52171ff0eeda53824300a5b680c02 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/organisation/parts/selectLearners.jsp (.../selectLearners.jsp) (revision 7f0a0929afc52171ff0eeda53824300a5b680c02) +++ lams_admin/web/organisation/parts/selectLearners.jsp (.../selectLearners.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -1,39 +1,44 @@ <%@ include file="/taglibs.jsp"%> - @@ -44,51 +49,55 @@

- - +
+ + + + + + + + + + - - - - + + + + - - - - - - - - - - - - -
+ " checked="checked" onclick='updateAllLearners();'/> + + + +    + + +
- " checked="checked" /> - - - - - - -
- -
-
- - - - - - -
-
+ + + + + +
+ + + + + + +
+ + + + + +
\ No newline at end of file Index: lams_admin/web/organisation/parts/selectStaff.jsp =================================================================== diff -u -r7f0a0929afc52171ff0eeda53824300a5b680c02 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/organisation/parts/selectStaff.jsp (.../selectStaff.jsp) (revision 7f0a0929afc52171ff0eeda53824300a5b680c02) +++ lams_admin/web/organisation/parts/selectStaff.jsp (.../selectStaff.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -1,36 +1,43 @@ <%@ include file="/taglibs.jsp"%> + + + @@ -42,50 +49,55 @@

- - +
+ + + + + + + + + + - - - - + + + + - - - - - - - - - - - -
+ " checked="checked" onclick='updateAllStaff();'/> + + + +    + + +
- " checked="checked" /> - - - - - - -
- -
-
- - - - - - -
-
+ + + + + +
+ + + + + + +
+ + + + + +
\ No newline at end of file Index: lams_admin/web/signupmanagement/add.jsp =================================================================== diff -u -rbb70a5e5c0c3abb5f9331aa2deffe926ecf30659 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/signupmanagement/add.jsp (.../add.jsp) (revision bb70a5e5c0c3abb5f9331aa2deffe926ecf30659) +++ lams_admin/web/signupmanagement/add.jsp (.../add.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -1,21 +1,19 @@ <%@ include file="/taglibs.jsp"%> -

- : - -

+
+ + +
-

- - +
- - - + + + + - + @@ -64,18 +63,17 @@ + + + - - - - - -
: - + @@ -34,13 +32,14 @@
:
:
:
: signup/
- - -
+ +
+ + +
\ No newline at end of file Index: lams_admin/web/signupmanagement/list.jsp =================================================================== diff -u -rafcc8e2197603d94c2c476def4b6dd601951b84b -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/signupmanagement/list.jsp (.../list.jsp) (revision afcc8e2197603d94c2c476def4b6dd601951b84b) +++ lams_admin/web/signupmanagement/list.jsp (.../list.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -1,17 +1,15 @@ <%@ page import="org.lamsfoundation.lams.signup.model.SignupOrganisation" %> <%@ include file="/taglibs.jsp"%> -

+

- - -

- -

+ + +
- +
@@ -54,6 +52,4 @@
-

- -

\ No newline at end of file + Fisheye: Tag add7948dbdf9451fb5bb7839e22d2f22ca8b54f1 refers to a dead (removed) revision in file `lams_admin/web/templatehelp.jsp'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_admin/web/themeManagement.jsp =================================================================== diff -u -r3dbf966d900adefc34cdad501d3c392118451cd9 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/themeManagement.jsp (.../themeManagement.jsp) (revision 3dbf966d900adefc34cdad501d3c392118451cd9) +++ lams_admin/web/themeManagement.jsp (.../themeManagement.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -2,7 +2,7 @@ -

- -

+

-

- - +
@@ -110,24 +100,24 @@
@@ -92,7 +83,6 @@ - - + - " - onclick="editTheme('${theme.name}', '${theme.description}', '${theme.imageDirectory}', '${theme.themeId}', '${theme.currentDefaultTheme}', '${theme.type}')" - > - + " - onclick="removeTheme('${theme.themeId}', '${theme.name}', '${theme.type}')" - > + onclick="removeTheme('${theme.themeId}', '${theme.name}')" + > - "> + "> @@ -137,15 +127,18 @@
-

- -

-
- +
+
+
+
+ +
+ - + +
* : @@ -180,14 +173,17 @@
-
- +
- +
- +
+
+ +
+
Index: lams_admin/web/timezoneManagement.jsp =================================================================== diff -u -rc0ae190cb1f4081bcf86fa46b07d1cbbd43ce250 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/timezoneManagement.jsp (.../timezoneManagement.jsp) (revision c0ae190cb1f4081bcf86fa46b07d1cbbd43ce250) +++ lams_admin/web/timezoneManagement.jsp (.../timezoneManagement.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -4,24 +4,25 @@ -

- -

- +

+ + ${serverTimezone} + + -
- -

-
-
+ + +

+
+
- +
@@ -55,8 +56,8 @@
-

- - +

+ +

\ No newline at end of file Index: lams_admin/web/timezoneServerManagement.jsp =================================================================== diff -u -r2ef18e4c87e2e7929950dbeb990c6715ef16c0c2 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/timezoneServerManagement.jsp (.../timezoneServerManagement.jsp) (revision 2ef18e4c87e2e7929950dbeb990c6715ef16c0c2) +++ lams_admin/web/timezoneServerManagement.jsp (.../timezoneServerManagement.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -7,7 +7,7 @@ - + - -

- +

+ - : "> + : " class="btn btn-default"> - : "> - : "> + : " class="btn btn-default"> + : " class="btn btn-default"> -

+

-

- - - +
+
+ + + + + + + + +
+ " onclick=javascript:document.location='userorg.do?orgId=' /> + + " onclick=javascript:document.location='user.do?method=edit&orgId=' /> + +
+
+ - + + + + + + + + + + + + + + + + + + + + + + + + +
:
:
:
:
:
+ +
-

- - - - - - - - - - - - - - - - - - - - - -
::
::
:
-
- - - - - - - - - - - -
:
:
-
- -
- -

- " onclick=javascript:document.location='userorg.do?orgId=' /> -

- -
- - " onclick=javascript:document.location='user.do?method=edit&orgId=' /> + + + + + + + + + + + + + + +
:
:
+ +
-

- -

- - - - - - - - - - - - - - - - - - + + + + + + + + + + +
- - - - - - - - - role.  - - - - -   - - + + + + + + + + + + + + + + + + + + - - - -
+ + + + + + + + + role.  + + + +   - - - - -
-
- + + +   + + + + +
+
+
+ + + + + + +
+
-
-
- - - - - - -
-
Index: lams_admin/web/userorg.jsp =================================================================== diff -u -r36a78fea0bae9c4073ef18576e3dabd15380da4e -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/userorg.jsp (.../userorg.jsp) (revision 36a78fea0bae9c4073ef18576e3dabd15380da4e) +++ lams_admin/web/userorg.jsp (.../userorg.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -13,10 +13,6 @@ height:250px; overflow-y:auto; } - .floatRight { - float:right; - margin-top:5px; - } @@ -135,30 +131,32 @@ } -

- +

+ - : "> + : " class="btn btn-default"> - : userorgmanage.do?org="> + : userorgmanage.do?org=" class="btn btn-default"> - : "> + : " class="btn btn-default"> -

+

-

+

-

+ + +

-
+

@@ -169,11 +167,11 @@

 

-

+

-
+

: or @@ -186,12 +184,10 @@

 

-
+
- - + +
- -

 

Index: lams_admin/web/userorgrole.jsp =================================================================== diff -u -r48ed00ae83293d10aae53149bd06ee25598c9432 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/userorgrole.jsp (.../userorgrole.jsp) (revision 48ed00ae83293d10aae53149bd06ee25598c9432) +++ lams_admin/web/userorgrole.jsp (.../userorgrole.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -8,17 +8,16 @@ } -

- +

- : "> + : " class="btn btn-default"> - : userorgmanage.do?org="> + : userorgmanage.do?org=" class="btn btn-default"> - : "> + : " class="btn btn-default">

@@ -29,14 +28,14 @@ - +
@@ -52,15 +51,13 @@ - - - -
" onclick="toggleCheckboxes(, this);" - onkeyup="toggleCheckboxes(, this);" /> + onkeyup="toggleCheckboxes(, this);" />  role.
class="align-right"> - - -

+ +
+ + +
Index: lams_admin/web/userrole.jsp =================================================================== diff -u -r7ab9e2377fd1ff4c3c5554bd1f6dffe3384f6f9a -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/userrole.jsp (.../userrole.jsp) (revision 7ab9e2377fd1ff4c3c5554bd1f6dffe3384f6f9a) +++ lams_admin/web/userrole.jsp (.../userrole.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -3,51 +3,52 @@ -

- +

+ - : "> - : "> + : " class="btn btn-default"> + : " class="btn btn-default"> - : "> + : " class="btn btn-default"> - : "> + : " class="btn btn-default"> -

+

-

-

- - - - - - - - - - - - - - - - -
:
:
: - - - role.
-
-
- - - -
+ +
+
+
:
+
+
+ +
+
:
+
+
+ +
+
:
+
+ + + role.
+
+
+
+
+ +
+ + + +
+
Index: lams_admin/web/usersearchlist.jsp =================================================================== diff -u -r51e6dce474861837e1e86838bcbc1b1efba971e3 -radd7948dbdf9451fb5bb7839e22d2f22ca8b54f1 --- lams_admin/web/usersearchlist.jsp (.../usersearchlist.jsp) (revision 51e6dce474861837e1e86838bcbc1b1efba971e3) +++ lams_admin/web/usersearchlist.jsp (.../usersearchlist.jsp) (revision add7948dbdf9451fb5bb7839e22d2f22ca8b54f1) @@ -4,7 +4,7 @@ - +