Index: lams_central/src/java/org/lamsfoundation/lams/web/DisplayGroupAction.java
===================================================================
RCS file: /usr/local/cvsroot/lams_central/src/java/org/lamsfoundation/lams/web/DisplayGroupAction.java,v
diff -u -r1.40 -r1.41
--- lams_central/src/java/org/lamsfoundation/lams/web/DisplayGroupAction.java 6 Aug 2013 12:01:14 -0000 1.40
+++ lams_central/src/java/org/lamsfoundation/lams/web/DisplayGroupAction.java 8 Aug 2013 12:01:47 -0000 1.41
@@ -246,7 +246,7 @@
+ Configuration.get(ConfigurationKeys.SERVER_URL)
+ "/gradebook/gradebookMonitoring.do?dispatch=courseMonitor&organisationID="
+ org.getOrganisationId() + "'," + "850,400,0,0);";
- moreLinks.add(new IndexLinkBean("index.coursegradebook.subgroup", link, "mycourses-mark-img",
+ moreLinks.add(new IndexLinkBean("index.coursegradebook.subgroup", link, "my-grades-button",
null, null));
} catch (UnsupportedEncodingException e) {
DisplayGroupAction.log.error(
Index: lams_central/src/java/org/lamsfoundation/lams/web/LessonOrderServlet.java
===================================================================
RCS file: /usr/local/cvsroot/lams_central/src/java/org/lamsfoundation/lams/web/LessonOrderServlet.java,v
diff -u -r1.5 -r1.6
--- lams_central/src/java/org/lamsfoundation/lams/web/LessonOrderServlet.java 13 Nov 2007 23:41:49 -0000 1.5
+++ lams_central/src/java/org/lamsfoundation/lams/web/LessonOrderServlet.java 8 Aug 2013 12:01:47 -0000 1.6
@@ -61,7 +61,9 @@
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
-
+ // even though response is empty, it is needed so Firefox does not show parsing error
+ response.setContentType("text/html;charset=utf-8");
+
Integer orgId = WebUtil.readIntParam(request, "orgId", false);
String ids = request.getParameter("ids");
Index: lams_central/web/groupContentsLesson.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/Attic/groupContentsLesson.jsp,v
diff -u -r1.1 -r1.2
--- lams_central/web/groupContentsLesson.jsp 6 Aug 2013 12:01:14 -0000 1.1
+++ lams_central/web/groupContentsLesson.jsp 8 Aug 2013 12:01:47 -0000 1.2
@@ -37,7 +37,7 @@
>
-
+
Fisheye: Tag 1.10 refers to a dead (removed) revision in file `lams_central/web/monitorLesson.jsp'.
Fisheye: No comparison available. Pass `N' to diff?
Index: lams_central/web/css/addLesson.css
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/css/addLesson.css,v
diff -u -r1.2 -r1.3
--- lams_central/web/css/addLesson.css 7 Aug 2013 09:46:50 -0000 1.2
+++ lams_central/web/css/addLesson.css 8 Aug 2013 12:01:47 -0000 1.3
@@ -1,6 +1,7 @@
div#tabs {
- width: 786px;
+ width: 789px;
height: 574px;
+ border: none;
}
div.tabContent {
Index: lams_central/web/includes/javascript/groupDisplay.js
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/groupDisplay.js,v
diff -u -r1.28 -r1.29
--- lams_central/web/includes/javascript/groupDisplay.js 6 Aug 2013 12:01:14 -0000 1.28
+++ lams_central/web/includes/javascript/groupDisplay.js 8 Aug 2013 12:01:47 -0000 1.29
@@ -273,27 +273,33 @@
$(".split-ui-button", container).each(function(){
var buttonContainer = $(this);
var buttons = buttonContainer.children();
- buttons.first().button();
- if (buttons.length > 1) {
- buttons.last().button({
- text : false,
- icons : {
- primary : "ui-icon-triangle-1-s"
- }
- });
- }
- buttons.last().click(function() {
- var menu = $(this).parent().next().show().position({
- my : "left top",
- at : "left bottom",
- of : $(this)
- });
- $(document).one("click", function() {
- menu.hide();
- });
- return false;
- }).parent().buttonset().next().hide().menu();
+ buttons.first().button()
+ .next().button({
+ text : false,
+ icons : {
+ primary : "ui-icon-triangle-1-s"
+ }
+ });
+
+ buttonContainer.buttonset().next().hide().menu();
+
+ buttons.each(function(){
+ var button = $(this);
+ if (!button.attr('onclick')) {
+ button.click(function() {
+ var menu = $(this).parent().next().show().position({
+ my : "right top",
+ at : "right bottom",
+ of : $(this).parent()
+ });
+ $(document).one("click", function() {
+ menu.hide();
+ });
+ return false;
+ });
+ }
+ });
});
}
Index: lams_monitoring/web/css/monitorLesson.css
===================================================================
RCS file: /usr/local/cvsroot/lams_monitoring/web/css/monitorLesson.css,v
diff -u -r1.10 -r1.11
--- lams_monitoring/web/css/monitorLesson.css 5 Aug 2013 12:27:01 -0000 1.10
+++ lams_monitoring/web/css/monitorLesson.css 8 Aug 2013 12:01:50 -0000 1.11
@@ -3,6 +3,7 @@
width: 99%;
height: 574px;
overflow: hidden;
+ border: none;
}
.ui-tabs .ui-tabs-panel {