Index: lams_monitoring/conf/language/lams/ApplicationResources.properties =================================================================== RCS file: /usr/local/cvsroot/lams_monitoring/conf/language/lams/ApplicationResources.properties,v diff -u -r1.51 -r1.52 --- lams_monitoring/conf/language/lams/ApplicationResources.properties 1 Aug 2013 13:51:04 -0000 1.51 +++ lams_monitoring/conf/language/lams/ApplicationResources.properties 27 Aug 2013 08:36:23 -0000 1.52 @@ -207,6 +207,9 @@ lesson.description =Description: lesson.state =Status: lesson.learners =Learners +lesson.learner.url =Learner URL: +button.select =Select +lesson.copy.prompt =(now press Ctrl+C to copy to clipboard) lesson.class =Class: lesson.manage =Manage Lesson button.view.learners =View/Email Learners Index: lams_monitoring/web/monitor.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_monitoring/web/monitor.jsp,v diff -u -r1.18 -r1.19 --- lams_monitoring/web/monitor.jsp 20 Aug 2013 12:19:28 -0000 1.18 +++ lams_monitoring/web/monitor.jsp 27 Aug 2013 08:36:23 -0000 1.19 @@ -1,11 +1,14 @@ <%@ page contentType="text/html; charset=utf-8" language="java"%> + <%@ taglib uri="tags-lams" prefix="lams"%> <%@ taglib uri="tags-fmt" prefix="fmt"%> <%@ taglib uri="tags-core" prefix="c"%> +<%@ page import="org.lamsfoundation.lams.util.Configuration" import="org.lamsfoundation.lams.util.ConfigurationKeys" %> + @@ -144,6 +147,22 @@ + <%=Configuration.get(ConfigurationKeys.ALLOW_DIRECT_LESSON_LAUNCH)%> + + + + + + + + + + + + Index: lams_monitoring/web/css/monitorLesson.css =================================================================== RCS file: /usr/local/cvsroot/lams_monitoring/web/css/monitorLesson.css,v diff -u -r1.11 -r1.12 --- lams_monitoring/web/css/monitorLesson.css 8 Aug 2013 12:01:50 -0000 1.11 +++ lams_monitoring/web/css/monitorLesson.css 27 Aug 2013 08:36:23 -0000 1.12 @@ -127,6 +127,14 @@ width: 114px; } +#learnerURLField { + width: 450px; +} + +#copyLearnerURL { + display: none; +} + #lessonStartDateCell *, #presenceAvailableCount { display: none; } Index: lams_monitoring/web/includes/javascript/monitorLesson.js =================================================================== RCS file: /usr/local/cvsroot/lams_monitoring/web/includes/javascript/monitorLesson.js,v diff -u -r1.19 -r1.20 --- lams_monitoring/web/includes/javascript/monitorLesson.js 15 Jul 2013 09:51:09 -0000 1.19 +++ lams_monitoring/web/includes/javascript/monitorLesson.js 27 Aug 2013 08:36:23 -0000 1.20 @@ -448,6 +448,14 @@ } } + +function selectLearnerURL(){ + $('#learnerURLField').select().focus().blur(function(){ + $('#copyLearnerURL').hide(); + }); + $('#copyLearnerURL').show(); +} + //********** SEQUENCE TAB FUNCTIONS ********** /**