Index: lams_admin/web/WEB-INF/tags/AdvancedAccordian.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/AdvancedAccordian.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/AdvancedAccordian.tag (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -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_admin/web/WEB-INF/tags/Arrow.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/Arrow.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/Arrow.tag (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -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_admin/web/WEB-INF/tags/CKEditor.tag =================================================================== diff -u -rdc884b8e6274ebbc664d1ee940e565803445bb26 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/WEB-INF/tags/CKEditor.tag (.../CKEditor.tag) (revision dc884b8e6274ebbc664d1ee940e565803445bb26) +++ lams_admin/web/WEB-INF/tags/CKEditor.tag (.../CKEditor.tag) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -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_admin/web/WEB-INF/tags/Page.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/Page.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/Page.tag (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -0,0 +1,49 @@ +<%@ tag body-content="scriptless"%> +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> + +<%@ attribute name="type" required="true" rtexprvalue="true"%> +<%@ attribute name="style" required="false" rtexprvalue="true"%> +<%@ attribute name="title" required="false" rtexprvalue="true"%> +<%@ attribute name="titleHelpURL" required="false" rtexprvalue="true"%> +<%@ attribute name="headingContent" required="false" rtexprvalue="true"%> + + + +
+
+
+ + + + + + +
+ +
+
+ + + ${titleHelpURL} + +
+ + + +
+
+
+ +
+
+
+
+ +
+ +
+
+ + + + Index: lams_admin/web/WEB-INF/tags/RestrictedUsageAccordian.tag =================================================================== diff -u --- lams_admin/web/WEB-INF/tags/RestrictedUsageAccordian.tag (revision 0) +++ lams_admin/web/WEB-INF/tags/RestrictedUsageAccordian.tag (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -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_admin/web/WEB-INF/tags/Tab.tag =================================================================== diff -u -rac6c077d83ef253fa3f07a515edc49077317029a -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/WEB-INF/tags/Tab.tag (.../Tab.tag) (revision ac6c077d83ef253fa3f07a515edc49077317029a) +++ lams_admin/web/WEB-INF/tags/Tab.tag (.../Tab.tag) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -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_admin/web/WEB-INF/tags/Tabs.tag =================================================================== diff -u -r9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/WEB-INF/tags/Tabs.tag (.../Tabs.tag) (revision 9481bb9c6f8c0e4d6fbed6b230a41c77feda64c6) +++ lams_admin/web/WEB-INF/tags/Tabs.tag (.../Tabs.tag) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -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_admin/web/cleanup.jsp =================================================================== diff -u -r4398957e0d74208a8f4a605910d1cce71b4ed531 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/cleanup.jsp (.../cleanup.jsp) (revision 4398957e0d74208a8f4a605910d1cce71b4ed531) +++ lams_admin/web/cleanup.jsp (.../cleanup.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -2,26 +2,25 @@ <%@ page import="org.lamsfoundation.lams.util.FileUtil" %> <%@ page import="org.lamsfoundation.lams.util.TempDirectoryFilter" %> -

    -

    +

    -

    + + +
    +
    +

    -

    -
    - -

      -
    • -
        -
      • <%= TempDirectoryFilter.zip_prefix %>* : KB -
      • <%= TempDirectoryFilter.tmp_prefix %>* : KB -
      + + + +
        +
      • <%= TempDirectoryFilter.zip_prefix %>* : KB +
      • <%= TempDirectoryFilter.tmp_prefix %>* : KB
      -

      @@ -30,10 +29,13 @@

      -

      :
      -

      - - - -
      \ No newline at end of file +

      : +

      + +
      + + +
      + + Index: lams_admin/web/config/editconfig.jsp =================================================================== diff -u -r15f56ca278fe37b325c0faf582c1245545a4100f -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/config/editconfig.jsp (.../editconfig.jsp) (revision 15f56ca278fe37b325c0faf582c1245545a4100f) +++ lams_admin/web/config/editconfig.jsp (.../editconfig.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -2,37 +2,28 @@ <%@ page import="org.lamsfoundation.lams.config.ConfigurationItem"%> <%@ include file="/taglibs.jsp"%> -

      - -

      - -

      - -

      +

      -
      - -

      + + -

      -
      -
      + + -

      - - - - - - - +

      + -

      - \ No newline at end of file + + + + + + +
      +
      Index: lams_admin/web/config/items.jsp =================================================================== diff -u -r7d24c6689041f052f79e57c4044cdbea901cda04 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/config/items.jsp (.../items.jsp) (revision 7d24c6689041f052f79e57c4044cdbea901cda04) +++ lams_admin/web/config/items.jsp (.../items.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -2,11 +2,14 @@ <%@ include file="/taglibs.jsp"%> -

      - +
      +
      +
      +
      +
      - @@ -15,17 +18,18 @@ <%= ConfigurationItem.BOOLEAN_FORMAT %> - + true false   - +
      +   *
      +
    Index: lams_admin/web/disabledusers.jsp =================================================================== diff -u -r7ab9e2377fd1ff4c3c5554bd1f6dffe3384f6f9a -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/disabledusers.jsp (.../disabledusers.jsp) (revision 7ab9e2377fd1ff4c3c5554bd1f6dffe3384f6f9a) +++ lams_admin/web/disabledusers.jsp (.../disabledusers.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -1,9 +1,8 @@ <%@ include file="/taglibs.jsp"%> -

    -

    +

    - +
    @@ -30,7 +29,7 @@ Index: lams_admin/web/groupStatistics.jsp =================================================================== diff -u -r6b759dda2b1837d0da0b214bbfabbfa6deddc3bb -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/groupStatistics.jsp (.../groupStatistics.jsp) (revision 6b759dda2b1837d0da0b214bbfabbfa6deddc3bb) +++ lams_admin/web/groupStatistics.jsp (.../groupStatistics.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -1,11 +1,11 @@ <%@ include file="/taglibs.jsp"%> -

    ${groupStatisticsDTO.name}

    +

    ${groupStatisticsDTO.name}

    -
    - +
    +
    - + @@ -26,15 +26,15 @@
    ${groupStatisticsDTO.totalUsers}${groupStatisticsDTO.totalUsers}
    -
    -

    ${subGroupStatisticsDTO.name}

    +

    ${subGroupStatisticsDTO.name}

    - +
    - + Index: lams_admin/web/ldap.jsp =================================================================== diff -u -rce3e782fd6844641f7298e09104f8d7554f073ff -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/ldap.jsp (.../ldap.jsp) (revision ce3e782fd6844641f7298e09104f8d7554f073ff) +++ lams_admin/web/ldap.jsp (.../ldap.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -11,80 +11,80 @@ } -

    - -

    +

    - - - - -

    - - - -

    -
    -
    +
    +
    +
    +
    -

    -

    - -

    -

    - -

    +
    + + + + +
    + + + +
    +
    +
    +
    +
    - -

    -
    +
    +
    +
    +
    -

    - " - onclick='startSync();' - /> -

    - -

     

    - - -

    - -
    - - -

    -
      - -
    • - +
      +

      +

      + + +

      +
      + + +

      + +
      + + +

        - -
      • -
        + +
      • + +
          + +
        • +
          +
        +
      • +
        + +
      • +
        + +
      • +
        + +
      • +
        + +
      • +
      -
    • - -
    • -
      - -
    • -
      - -
    • -
      - -
    • -
      -
    -
    - + + " onclick='startSync();'/> + +
    + Index: lams_admin/web/loginmaintain.jsp =================================================================== diff -u -r5170c21ad54f59efa06760fa86efcace8de2792a -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/loginmaintain.jsp (.../loginmaintain.jsp) (revision 5170c21ad54f59efa06760fa86efcace8de2792a) +++ lams_admin/web/loginmaintain.jsp (.../loginmaintain.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -1,14 +1,12 @@ <%@ include file="/taglibs.jsp"%> -

    -

    -

    +

    -
    +

    -

    +


    @@ -17,12 +15,12 @@ - + -
    -

    - - -

    + +
    + + +
    Index: lams_admin/web/organisation/cloneResult.jsp =================================================================== diff -u -r7a038b413299c10aa5b3dd168e35811597f44173 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/organisation/cloneResult.jsp (.../cloneResult.jsp) (revision 7a038b413299c10aa5b3dd168e35811597f44173) +++ lams_admin/web/organisation/cloneResult.jsp (.../cloneResult.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -2,22 +2,19 @@ -

    +

    -

    + -

    +

    -

    - " - onclick="document.location='orgmanage.do?org=';" - > -

    \ No newline at end of file +" + onclick="document.location='orgmanage.do?org=';" > Index: lams_admin/web/organisation/cloneStart.jsp =================================================================== diff -u -r35a0e719d061c08b52e705135bb2f2126079ed21 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/organisation/cloneStart.jsp (.../cloneStart.jsp) (revision 35a0e719d061c08b52e705135bb2f2126079ed21) +++ lams_admin/web/organisation/cloneStart.jsp (.../cloneStart.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -1,152 +1,166 @@ <%@ include file="/taglibs.jsp"%> + - + + + - - - - - + + + + + + +<%-- + --%> -

    +

    -

    + -

    +
    -

    -
    -

    - : - -

    -

    - : - -

    -

    - " onclick="javascript:loadGroupAttributes(chosenGroup());"> -

    +
    +
    + + + +
    +
    +
    + : + +
    +
    + : + +
    +
    + " onclick="javascript:loadGroupAttributes(chosenGroup());"> +
    +
    +
    " style="display:none;"> + +
    + +
    " style="display:none;"> + +
    + +
    "> @@ -155,41 +169,45 @@
    ${subGroupStatisticsDTO.totalUsers}${subGroupStatisticsDTO.totalUsers}
    +
    - + - + - + - - -
    : * *
    :
    :
    : - + @@ -51,7 +51,7 @@
    : - + @@ -71,12 +71,13 @@
     
    - - - -
    + +
    + + + +
    + + \ No newline at end of file Index: lams_admin/web/organisation/createOrEdit.jsp =================================================================== diff -u -r5e63656a12c02f7476564e278b43ff4ce86ac930 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/organisation/createOrEdit.jsp (.../createOrEdit.jsp) (revision 5e63656a12c02f7476564e278b43ff4ce86ac930) +++ lams_admin/web/organisation/createOrEdit.jsp (.../createOrEdit.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -20,21 +20,20 @@ -

    - - + +

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

    +

    -

    +

    - +    @@ -44,26 +43,27 @@ -

    +
    - + +
    - - + + - - + + - - + + - + - + +
    : * *
    :
    :
    : - + @@ -73,107 +73,82 @@
    : - +
    - - - +
    - - - - - +
    +
    - - - - - +
    +
    - - - - - +
    +
    - - - - - +
    +
    - - - - - +
    +
    - - - - - +
    +
    - - +
    - - +
    +
    - -   - - - +
    - . - - - -   - +  . +
    - - - - - - - +
    + + +
    + Index: lams_admin/web/organisation/list.jsp =================================================================== diff -u -r4ef740155321a3d46583770e5ea58e56719597b2 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/organisation/list.jsp (.../list.jsp) (revision 4ef740155321a3d46583770e5ea58e56719597b2) +++ lams_admin/web/organisation/list.jsp (.../list.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -2,27 +2,19 @@ <%@ page import="org.lamsfoundation.lams.usermanagement.Role" %> - + @@ -33,9 +25,10 @@ $(document).ready(function(){ - $("#tablesorter").tablesorter({ - theme: 'blue', - widgets: ["zebra", "filter"], + $(".tablesorter").tablesorter({ + theme: 'bootstrap', + headerTemplate : '{content} {icon}', + widgets: ["uitheme","zebra", "filter"], headers: { 0: { filter: false }, 2: { filter: false }, 3: { filter: false } }, widgetOptions : { // include column filters @@ -47,10 +40,15 @@ sortList: [[1]] }); - $("#tablesorter").each(function() { + $(".tablesorter").each(function() { $(this).tablesorterPager({ savePages: false, - ajaxUrl : "?dispatch=getOrgs&type=${OrgManageForm.type}&page={page}&size={size}&{sortList:column}&parentOrgId=${OrgManageForm.parentId}&{filterList:fcol}", + container: $(this).find(".ts-pager"), + output: '{startRow} to {endRow} ({totalRows})', + cssPageDisplay: '.pagedisplay', + cssPageSize: '.pagesize', + cssDisabled: 'disabled', + ajaxUrl : "?dispatch=getOrgs&type=${OrgManageForm.type}&page={page}&size={size}&{sortList:column}&parentOrgId=${OrgManageForm.parentId}&{filterList:fcol}", ajaxProcessing: function (data, table) { if (data && data.hasOwnProperty('rows')) { var rows = [], @@ -92,240 +90,209 @@ customAjaxUrl: function(table, url) { // get current selection & add it to the url return url += '&stateId=' + $("#org-state-id").val(); - }, - container: $(this).next("#pager"), - output: '{startRow} to {endRow} ({totalRows})',// possible variables: {page}, {totalPages}, {filteredPages}, {startRow}, {endRow}, {filteredRows} and {totalRows} - // css class names of pager arrows - cssNext: '.tablesorter-next', // next page arrow - cssPrev: '.tablesorter-prev', // previous page arrow - cssFirst: '.tablesorter-first', // go to first page arrow - cssLast: '.tablesorter-last', // go to last page arrow - cssGoto: '.gotoPage', // select dropdown to allow choosing a page - cssPageDisplay: '.pagedisplay', // location of where the "output" is displayed - cssPageSize: '.pagesize', // page size selector - select dropdown that sets the "size" option - // class added to arrows when at the extremes (i.e. prev/first arrows are "disabled" when on the first page) - cssDisabled: 'disabled' // Note there is no period "." in front of this class name + } }) }); $( "#org-state-id" ).change(function() { - $('#tablesorter').trigger('pagerUpdate'); + $('.tablesorter').trigger('pagerUpdate'); }); }) -

    - "> -

    -

    -
    -
    - " onclick=javascript:document.location='user.do?method=edit' /> - " onclick=javascript:document.location='usersearch.do' /> +
    + " onclick=javascript:document.location='user.do?method=edit' /> + " onclick=javascript:document.location='usersearch.do' /> - " onclick=javascript:document.location='usermanage.do?org=' /> + " onclick=javascript:document.location='usermanage.do?org=' /> -
    -

    -
    - " onclick=javascript:document.location='' /> + " onclick=javascript:document.location='' />
    +

    + " /> - - +   + - +   : -

    - - : "> -

    -

    +

    + +
    +
    + + + +
    + +  " onclick=javascript:document.location='organisation.do?method=edit&orgId=' /> + + " onclick=javascript:document.location='usermanage.do?org=' /> + <% if (request.isUserInRole(Role.SYSADMIN)) { %> + " onclick="javascript:document.location='clone.do?groupId=';"> + <% } %> +
    +
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ::
    ::
    ::
    ::
    - -
    - -

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

    - -
    - " onclick=javascript:document.location='usermanage.do?org=' /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    :
    :
    :
    :
    :
    :
    :
    :
    -

    - <% if (request.isUserInRole(Role.SYSADMIN)) { %> -
    - " onclick="javascript:document.location='clone.do?groupId=';"> -
    -

     

    - <% } %> - -
    + +
    - " onclick=javascript:document.location='' /> + " onclick=javascript:document.location='' />
    + " /> - - +   + - +   : -

    - - : "> - : "> -

    -

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

    - - " onclick=javascript:document.location='organisation.do?method=edit&orgId=' /> - + + : " class="btn btn-default">

    -
    - " onclick=javascript:document.location='usermanage.do?org=' /> -
    -

    - - <% if (request.isUserInRole(Role.SYSADMIN)) { %> -
    - " onclick="javascript:document.location='clone.do?groupId=';"> +
    +
    + + + +
    + +  " onclick=javascript:document.location='organisation.do?method=edit&orgId=' /> + + " onclick=javascript:document.location='usermanage.do?org=' /> + <% if (request.isUserInRole(Role.SYSADMIN)) { %> + " onclick="javascript:document.location='clone.do?groupId=';"> + <% } %> +
    -

     

    - <% } %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    :
    :
    :
    :
    :
    :
    :
    :
    - +
    - - - - - - - - - - - - -
    - Id - - - - - - -
    - - -
    -
    - - - - - - -
    +
    + + + Id + + + + + + + + + + +
    Index: lams_admin/web/register.jsp =================================================================== diff -u -r1d2ff22c947ab0d5646bb02b8189ca668020bdbc -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/register.jsp (.../register.jsp) (revision 1d2ff22c947ab0d5646bb02b8189ca668020bdbc) +++ lams_admin/web/register.jsp (.../register.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -31,33 +31,28 @@ -

    - -

    -

    -
    - +

    + -

    + -

    +
    - - -

    - -

    -
    -
    + + + + +
    - +
    +
    +
    +
    +
    - - - - @@ -93,7 +88,7 @@ @@ -102,7 +97,7 @@ +
    + @@ -69,22 +64,22 @@ - +
    - +
    - +
    - +
    - + Afghanistan Aland Islands Albania @@ -342,13 +337,16 @@
    +
    + +
    +
    +
    +
    + - - - - +
    - -
    + @@ -387,13 +385,16 @@ ${registerDTO.serverLanguageDate}
    +
    + +
    +
    +
    +
    + - - - -
    - -
    + @@ -466,10 +467,10 @@
    -

    - "/> - - " onClick="javascript:window.location.href='/admin/sysadminstart.do'"/> -

    +
    + " onClick="javascript:window.location.href='/admin/sysadminstart.do'"/> + + "/> +
    Index: lams_admin/web/remove.jsp =================================================================== diff -u -r7ab9e2377fd1ff4c3c5554bd1f6dffe3384f6f9a -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/remove.jsp (.../remove.jsp) (revision 7ab9e2377fd1ff4c3c5554bd1f6dffe3384f6f9a) +++ lams_admin/web/remove.jsp (.../remove.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -12,38 +12,52 @@ -

    -

     

    -

    -    -    -
    - -

    - - - - - -
    -'" /> -'" /> -
    +
    +
    + + + +
    +
    +

    +    +    +
    + +

    + + + + + +
    + '" /> + '" /> +
    +
    +
    -

    -

     

    -

      

    - - - - - -
    -'" /> -'" /> -
    +
    +
    + + + +
    +
    +

      

    + + + + + +
    + '" /> + '" /> +
    +
    +
    Index: lams_admin/web/serverlist.jsp =================================================================== diff -u -rc489cfcc88cdf13c07c2b9f78ff7c7cf5a2b3531 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/serverlist.jsp (.../serverlist.jsp) (revision c489cfcc88cdf13c07c2b9f78ff7c7cf5a2b3531) +++ lams_admin/web/serverlist.jsp (.../serverlist.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -1,10 +1,8 @@ <%@ include file="/taglibs.jsp"%> -

    -

    +

    -

    - +
    @@ -50,4 +48,7 @@
    -

    ${fn:length(servers)}

    +

    ${fn:length(servers)} 

    + + + Index: lams_admin/web/servermaintain.jsp =================================================================== diff -u -rd0a703641dee45b84a2cd9a011376a8f0d72c9fb -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/servermaintain.jsp (.../servermaintain.jsp) (revision d0a703641dee45b84a2cd9a011376a8f0d72c9fb) +++ lams_admin/web/servermaintain.jsp (.../servermaintain.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -1,55 +1,44 @@ <%@ include file="/taglibs.jsp"%> - - -

    - : - -

    - -

    +

    -
    + - +
    - - + + - - + + - - + + - - + + - - + + - + - + style="display:none;"> - - + + - + - - + + - - + + - - + + - - + + - - + +
    : * *
    : * *
    : * *
    :
    : * *
    :
    : @@ -58,47 +47,50 @@
    :
    : - +  
    : * *
    :
    : * *
    :
    :
    -
    - - - +
    + + +
    + + + + + Index: lams_admin/web/statistics.jsp =================================================================== diff -u -r35a0e719d061c08b52e705135bb2f2126079ed21 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/statistics.jsp (.../statistics.jsp) (revision 35a0e719d061c08b52e705135bb2f2126079ed21) +++ lams_admin/web/statistics.jsp (.../statistics.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -20,84 +20,89 @@ } -

    - -

    +

    -

    - -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - ${statisticsDTO.users} -
    - - - ${statisticsDTO.sequences} -
    - - - ${statisticsDTO.lessons} -
    - - - ${statisticsDTO.activities} -
    - - - ${statisticsDTO.completedActivities} -
    - - - ${statisticsDTO.groups} -
    - - - ${statisticsDTO.subGroups} -
    - -
    -

    -
    - -
    -
    - +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + ${statisticsDTO.users} +
    + + + ${statisticsDTO.sequences} +
    + + + ${statisticsDTO.lessons} +
    + + + ${statisticsDTO.activities} +
    + + + ${statisticsDTO.completedActivities} +
    + + + ${statisticsDTO.groups} +
    + + + ${statisticsDTO.subGroups} +
    +
    +
    +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    Index: lams_admin/web/sysadmin.jsp =================================================================== diff -u -r44f9636e4923ab01e51ff46d67b190caf4c93012 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/sysadmin.jsp (.../sysadmin.jsp) (revision 44f9636e4923ab01e51ff46d67b190caf4c93012) +++ lams_admin/web/sysadmin.jsp (.../sysadmin.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -1,14 +1,12 @@ <%@ include file="/taglibs.jsp"%> -

    -
    - - -

    +

    + + "> - - -

    -
    + + + + +
    - Index: lams_admin/web/template.jsp =================================================================== diff -u -r2ef18e4c87e2e7929950dbeb990c6715ef16c0c2 -rf7cb84defcd7ff6e4f3232f2ef1856f1311215d9 --- lams_admin/web/template.jsp (.../template.jsp) (revision 2ef18e4c87e2e7929950dbeb990c6715ef16c0c2) +++ lams_admin/web/template.jsp (.../template.jsp) (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -4,18 +4,37 @@ - <fmt:message key="${title}"/> - - + + ${title} + + + + -
    -
    - -
    -
    + + + ${title}: + + + + + + + + + + + + + + + + + +
    Index: lams_admin/web/templatehelp.jsp =================================================================== diff -u --- lams_admin/web/templatehelp.jsp (revision 0) +++ lams_admin/web/templatehelp.jsp (revision f7cb84defcd7ff6e4f3232f2ef1856f1311215d9) @@ -0,0 +1,22 @@ +<%@ include file="/taglibs.jsp"%> + + + + + + + ${title} + + + + + + + + + + + + + +