Index: lams_central/src/java/org/lamsfoundation/lams/web/tag/HelpTag.java =================================================================== diff -u -r7ef5e822f74a830aa1bdddbdf05f67c84b27d3d8 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_central/src/java/org/lamsfoundation/lams/web/tag/HelpTag.java (.../HelpTag.java) (revision 7ef5e822f74a830aa1bdddbdf05f67c84b27d3d8) +++ lams_central/src/java/org/lamsfoundation/lams/web/tag/HelpTag.java (.../HelpTag.java) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -37,9 +37,9 @@ import org.lamsfoundation.lams.authoring.web.AuthoringConstants; import org.lamsfoundation.lams.tool.IToolVO; import org.lamsfoundation.lams.tool.service.ILamsToolService; -import org.lamsfoundation.lams.util.Configuration; -import org.lamsfoundation.lams.util.ConfigurationKeys; +import org.lamsfoundation.lams.util.CentralConstants; import org.lamsfoundation.lams.util.HelpUtil; +import org.lamsfoundation.lams.util.MessageService; import org.lamsfoundation.lams.web.filter.LocaleFilter; import org.springframework.web.context.WebApplicationContext; import org.springframework.web.context.support.WebApplicationContextUtils; @@ -70,24 +70,27 @@ public int doStartTag() throws JspException { try { - int imgHeight = 25; - boolean div = true; + boolean div = false; + String helpWord = ""; JspWriter writer = pageContext.getOut(); if (StringUtils.equals(style, "no-tabs")) { writer.println("
"); - } else if (StringUtils.equals(style, "small")) { - imgHeight = 18; - div = false; - } else { - writer.println("
"); + div = true; } + + if (! StringUtils.equals(style, "small")) { + MessageService msgService = (MessageService) getContext().getBean( + CentralConstants.CENTRAL_MESSAGE_SERVICE_BEAN_NAME); + helpWord = msgService.getMessage("label.help"); + } + try { HttpSession session = ((HttpServletRequest) this.pageContext.getRequest()).getSession(); Locale locale = (Locale) session.getAttribute(LocaleFilter.PREFERRED_LOCALE_KEY); String languageCode = locale != null ? locale.getLanguage() : ""; - + if ((toolSignature != null) && (module != null)) { // retrieve help URL for tool @@ -101,15 +104,17 @@ return Tag.SKIP_BODY; } - writer.println(""); + writer.println("" + + " " + helpWord + + ""); } else if (page != null) { String fullURL = HelpUtil.constructPageURL(page, languageCode); - writer.println(""); + writer.println("" + + " " + helpWord + + ""); } else { HelpTag.log.error("HelpTag unable to write out due to unspecified values."); @@ -161,7 +166,7 @@ .getServletContext()); return ctx; } - + /** * @return * Index: lams_central/web/css/defaultHTML_learner.css =================================================================== diff -u -r7ef5e822f74a830aa1bdddbdf05f67c84b27d3d8 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_central/web/css/defaultHTML_learner.css (.../defaultHTML_learner.css) (revision 7ef5e822f74a830aa1bdddbdf05f67c84b27d3d8) +++ lams_central/web/css/defaultHTML_learner.css (.../defaultHTML_learner.css) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -93,6 +93,10 @@ border-radius: 0px; box-shadow: 0 1px 1px rgba(8, 8, 8, 0.88); } +.panel-monitor-page { + border-radius: 0px; + box-shadow: 0 1px 1px rgba(8, 8, 8, 0.88); +} .panel-learner-page-title, .panel-admin-page-title { -moz-border-bottom-colors: none; @@ -185,4 +189,62 @@ td.arrows{ width:35px; text-align: center; -} \ No newline at end of file +} +/* Tabs are a cross between pills (colouring) and tab outlines. */ +.nav-tabs > li.active > a{ + color:#fff !important; + background-color:#337ab7 !important; +} +.nav-tabs > li > a{ + border:1px solid #ddd +} +/* Icons to show panel is collapsed */ +.collapsable-icon-right a:after { + font-family: FontAwesome; + content:"\f078"; + float: right; + color: grey; + margin-right: 5px; +} +.collapsable-icon-right a.collapsed:after { + content:"\f054"; +} +.collapsable-icon-left a:after { + font-family: FontAwesome; + content:"\f078"; + float: left; + color: grey; + margin-right: 5px; +} +.collapsable-icon-left a.collapsed:after { + content:"\f054"; +} + +div.navbar-heading { + padding:0; +} + +nav.navbar-heading { + border: 0; + margin: 0; + color: inherit; +} + +.navbar-heading .divider { + height: 50px; + margin-left: 5px; + margin-right: 5px; + border-left: 1px solid #dddddd; +} + +.navbar-heading .in .divider { + height: 1px; + margin-left: 5px; + margin-right: 5px; + margin-bottom: 5px; + border-top: 1px solid #dddddd; +} + +.navbar-heading .in .navbar-text { + padding-left: 15px; +} Index: lams_tool_daco/web/WEB-INF/tags/AdvancedAccordian.tag =================================================================== diff -u --- lams_tool_daco/web/WEB-INF/tags/AdvancedAccordian.tag (revision 0) +++ lams_tool_daco/web/WEB-INF/tags/AdvancedAccordian.tag (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -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_daco/web/WEB-INF/tags/HybridTab.tag =================================================================== diff -u --- lams_tool_daco/web/WEB-INF/tags/HybridTab.tag (revision 0) +++ lams_tool_daco/web/WEB-INF/tags/HybridTab.tag (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -0,0 +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: 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_daco/web/WEB-INF/tags/HybridTabAction.tag =================================================================== diff -u --- lams_tool_daco/web/WEB-INF/tags/HybridTabAction.tag (revision 0) +++ lams_tool_daco/web/WEB-INF/tags/HybridTabAction.tag (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -0,0 +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: 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_daco/web/WEB-INF/tags/HybridTabBody.tag =================================================================== diff -u --- lams_tool_daco/web/WEB-INF/tags/HybridTabBody.tag (revision 0) +++ lams_tool_daco/web/WEB-INF/tags/HybridTabBody.tag (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -0,0 +1,40 @@ +<%/**************************************************************** + * 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 + * **************************************************************** + */ + +/** + * HybridTabBody.tag + * Author: Fiona Malikoff + * Description: Creates the body container for a tab element + * Wiki: + */ + +%> +<%@ tag body-content="scriptless"%> +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-bean" prefix="bean"%> + +
    + +
    + +
    \ No newline at end of file Index: lams_tool_daco/web/WEB-INF/tags/HybridTabHeader.tag =================================================================== diff -u --- lams_tool_daco/web/WEB-INF/tags/HybridTabHeader.tag (revision 0) +++ lams_tool_daco/web/WEB-INF/tags/HybridTabHeader.tag (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -0,0 +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 + * **************************************************************** + */ + +/** + * HybridTabHeader.tag + * Author: Fiona Malikoff + * Description: Create a hybrid panel header that contains a nav bar that acts like tabs. + */ + + %> +<%@ tag body-content="scriptless"%> +<%@ 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"%> + +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-lams" prefix="lams"%> + + + + + + + + + + + + +
    + + \ No newline at end of file Index: lams_tool_daco/web/WEB-INF/tags/Page.tag =================================================================== diff -u -r303ad8a12ec300c1a2a56a9a7ebbf7629dc8c19f -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/WEB-INF/tags/Page.tag (.../Page.tag) (revision 303ad8a12ec300c1a2a56a9a7ebbf7629dc8c19f) +++ lams_tool_daco/web/WEB-INF/tags/Page.tag (.../Page.tag) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -12,6 +12,12 @@
    + + + + + +
    @@ -30,7 +36,14 @@
    +
    +
    +
    + + + + Index: lams_tool_daco/web/WEB-INF/tags/Tab.tag =================================================================== diff -u -rfdaea6cb56bd4856ee1c9061927927c617d1b3fd -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/WEB-INF/tags/Tab.tag (.../Tab.tag) (revision fdaea6cb56bd4856ee1c9061927927c617d1b3fd) +++ lams_tool_daco/web/WEB-INF/tags/Tab.tag (.../Tab.tag) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -34,7 +34,7 @@ <%@ 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"%> +<%@ attribute name="methodCall" required="false" rtexprvalue="true"%> <%@ taglib uri="tags-core" prefix="c"%> <%@ taglib uri="tags-fmt" prefix="fmt"%> @@ -86,4 +86,4 @@ class="disabled" -
  • ${tabTitle}
  • +
  • ${tabTitle}
  • Index: lams_tool_daco/web/WEB-INF/tags/Tabs.tag =================================================================== diff -u -redecb0e80071dd9703ae3ac2a153c48c9defc0c3 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/WEB-INF/tags/Tabs.tag (.../Tabs.tag) (revision edecb0e80071dd9703ae3ac2a153c48c9defc0c3) +++ lams_tool_daco/web/WEB-INF/tags/Tabs.tag (.../Tabs.tag) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -52,4 +52,23 @@ \ No newline at end of file + + +<%-- + 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;"> + +--%> + + + + + + + + + + + Index: lams_tool_daco/web/WEB-INF/tlds/lams/lams.tld =================================================================== diff -u -rbd0aaad21ddeedcda73061dbc3a36ac694df2ae9 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/WEB-INF/tlds/lams/lams.tld (.../lams.tld) (revision bd0aaad21ddeedcda73061dbc3a36ac694df2ae9) +++ lams_tool_daco/web/WEB-INF/tlds/lams/lams.tld (.../lams.tld) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -446,8 +446,24 @@ TSTable /WEB-INF/tags/TSTable.tag + + + HybridTab + /WEB-INF/tags/HybridTab.tag + + + HybridTabHeader + /WEB-INF/tags/HybridTabHeader.tag + HybridTabBody + /WEB-INF/tags/HybridTabBody.tag + + + AdvancedAccordian + /WEB-INF/tags/AdvancedAccordian.tag + + ImgButtonWrapper /WEB-INF/tags/ImgButtonWrapper.tag Index: lams_tool_daco/web/common/jqueryheader.jsp =================================================================== diff -u -r613f0d0d76eb497ed58d7e6836eda34a245425a9 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/common/jqueryheader.jsp (.../jqueryheader.jsp) (revision 613f0d0d76eb497ed58d7e6836eda34a245425a9) +++ lams_tool_daco/web/common/jqueryheader.jsp (.../jqueryheader.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -5,18 +5,21 @@ - - +<%-- + --%> + - + + + \ No newline at end of file Index: lams_tool_daco/web/common/tabbedheader.jsp =================================================================== diff -u -rbd0aaad21ddeedcda73061dbc3a36ac694df2ae9 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/common/tabbedheader.jsp (.../tabbedheader.jsp) (revision bd0aaad21ddeedcda73061dbc3a36ac694df2ae9) +++ lams_tool_daco/web/common/tabbedheader.jsp (.../tabbedheader.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -5,13 +5,16 @@ - + +<%-- + --%> - + + Index: lams_tool_daco/web/includes/javascript/dacoMonitoring.js =================================================================== diff -u -r102a93686f5779e8caf5a693f388edda2e01f05d -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/includes/javascript/dacoMonitoring.js (.../dacoMonitoring.js) (revision 102a93686f5779e8caf5a693f388edda2e01f05d) +++ lams_tool_daco/web/includes/javascript/dacoMonitoring.js (.../dacoMonitoring.js) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -20,4 +20,18 @@ var url = gStatisticsUrl+"&reqID="+(new Date()).getTime(); $("#statisticArea").load(url); } - \ No newline at end of file + + function refreshPage() { + var tabID = getCurrentTabID(); + if ( ! tabID ) { + tabID = currentTab; + } + var param = {"reqID":((new Date()).getTime())}; + $( "#body" ).load( + gRefreshUrl, + param, + function() { + doSelectTab(tabID); + currentTab = tabID; + }); + } Index: lams_tool_daco/web/pages/authoring/authoring.jsp =================================================================== diff -u -rbd0aaad21ddeedcda73061dbc3a36ac694df2ae9 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/pages/authoring/authoring.jsp (.../authoring.jsp) (revision bd0aaad21ddeedcda73061dbc3a36ac694df2ae9) +++ lams_tool_daco/web/pages/authoring/authoring.jsp (.../authoring.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -36,60 +36,57 @@ -
    -

    - -

    - - -
    - - - <%@ include file="/common/messages.jsp"%> + + - - - - - - - + + + + +
    + - + - + + + <%@ include file="/common/messages.jsp"%> + + +<%-- + --%> + + + + + + <%-- Default value cancelButtonLabelKey="label.common.cancel" saveButtonLabelKey="label.authoring.save.button" cancelConfirmMsgKey="message.authoring.cancel.save" accessMode="author" --%> - - + -
    - -
    + \ No newline at end of file Index: lams_tool_daco/web/pages/learning/learning.jsp =================================================================== diff -u -redecb0e80071dd9703ae3ac2a153c48c9defc0c3 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/pages/learning/learning.jsp (.../learning.jsp) (revision edecb0e80071dd9703ae3ac2a153c48c9defc0c3) +++ lams_tool_daco/web/pages/learning/learning.jsp (.../learning.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -48,16 +48,16 @@ - + <%-- To switch between the vertical/horizontal view --%> - " + " onclick="javascript:changeView('${sessionMapID}',${displayedRecordNumber})" id="ellipsis"> - " + " onclick="javascript:changeView('${sessionMapID}',${displayedRecordNumber})" id="ellipsis"> Index: lams_tool_daco/web/pages/learning/listRecords.jsp =================================================================== diff -u -r303ad8a12ec300c1a2a56a9a7ebbf7629dc8c19f -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/pages/learning/listRecords.jsp (.../listRecords.jsp) (revision 303ad8a12ec300c1a2a56a9a7ebbf7629dc8c19f) +++ lams_tool_daco/web/pages/learning/listRecords.jsp (.../listRecords.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -90,9 +90,9 @@  ${recordStatus.index+1} <%-- If the record can be edited, display these links. --%> - " + " onclick="javascript:editRecord('${sessionMapID}',${recordStatus.index+1})"> - " + " onclick="javascript:removeRecord('${sessionMapID}',${recordStatus.index+1})">
    Index: lams_tool_daco/web/pages/learning/listRecordsHorizontalPart.jsp =================================================================== diff -u -r303ad8a12ec300c1a2a56a9a7ebbf7629dc8c19f -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/pages/learning/listRecordsHorizontalPart.jsp (.../listRecordsHorizontalPart.jsp) (revision 303ad8a12ec300c1a2a56a9a7ebbf7629dc8c19f) +++ lams_tool_daco/web/pages/learning/listRecordsHorizontalPart.jsp (.../listRecordsHorizontalPart.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -64,9 +64,9 @@
    <%-- If the record can be edited, display these links. --%> - " + " onclick="javascript:editRecord('${sessionMapID}',${recordStatus.index+1})"> - " + " onclick="javascript:removeRecord('${sessionMapID}',${recordStatus.index+1})">
    Index: lams_tool_daco/web/pages/monitoring/editactivity.jsp =================================================================== diff -u -r5f04c097777c026e7c64234c5f2f7ca65c6be8c6 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/pages/monitoring/editactivity.jsp (.../editactivity.jsp) (revision 5f04c097777c026e7c64234c5f2f7ca65c6be8c6) +++ lams_tool_daco/web/pages/monitoring/editactivity.jsp (.../editactivity.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -2,13 +2,15 @@ +
    + -

    + -

    +
    - +
    @@ -42,3 +44,5 @@
    + +
    \ No newline at end of file Index: lams_tool_daco/web/pages/monitoring/monitoring.jsp =================================================================== diff -u -re48fc0e1f6819e257b87efa36c3baec3c1c488f0 -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/pages/monitoring/monitoring.jsp (.../monitoring.jsp) (revision e48fc0e1f6819e257b87efa36c3baec3c1c488f0) +++ lams_tool_daco/web/pages/monitoring/monitoring.jsp (.../monitoring.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -4,40 +4,85 @@ <%@ include file="/common/taglibs.jsp"%> <%@ page import="org.lamsfoundation.lams.tool.daco.DacoConstants"%> + + + <%@ include file="/common/jqueryheader.jsp" %> <fmt:message key="title.monitoring" /> - + -
    -

    - -

    - -
    - + + + + + + + + + +<%--
    + + + +
    + + --%> + + + + + + + + + + +<%-- + + + + --%> + - -
    -
    +
    Index: lams_tool_daco/web/pages/monitoring/statisticsarea.jsp =================================================================== diff -u -r102a93686f5779e8caf5a693f388edda2e01f05d -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/pages/monitoring/statisticsarea.jsp (.../statisticsarea.jsp) (revision 102a93686f5779e8caf5a693f388edda2e01f05d) +++ lams_tool_daco/web/pages/monitoring/statisticsarea.jsp (.../statisticsarea.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -1,13 +1,16 @@ <%@ include file="/common/taglibs.jsp"%> +
    - + + + - +
    @@ -37,5 +40,5 @@
    +
    - Index: lams_tool_daco/web/pages/monitoring/summary.jsp =================================================================== diff -u -r102a93686f5779e8caf5a693f388edda2e01f05d -rbe37ea9b52fd18c106254805e3cc45a6581bdd87 --- lams_tool_daco/web/pages/monitoring/summary.jsp (.../summary.jsp) (revision 102a93686f5779e8caf5a693f388edda2e01f05d) +++ lams_tool_daco/web/pages/monitoring/summary.jsp (.../summary.jsp) (revision be37ea9b52fd18c106254805e3cc45a6581bdd87) @@ -1,26 +1,23 @@ -<%@ include file="/common/taglibs.jsp"%> + <%@ include file="/common/taglibs.jsp"%> - - - + -

    + +
    +
    + + + + + + + + + +
    + +

    -

    -
    +

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

    - : -

    - - - -
    + +
    +
    + + + : + + + + +
    +
    + -
    - - - + + + + + + + - - - - - - - - - - - - - -
    - -
    -
    - - - - - - -
    -
    + + + + -
    -
    + +
    +
    + ${status.last ? '' : '
     
    '} +
    + +
    +
    +
    -

    - - - - - - - - - - - - - -

    -

    - - - - - -

    -
    - - + + +