Index: lams_central/web/lti/addLesson.jsp
===================================================================
diff -u -r5943e05705f7614c7c1c29d13ce50deacdc46cc0 -r0e9eca8da006863730e793b75a47803bc6142c67
--- lams_central/web/lti/addLesson.jsp (.../addLesson.jsp) (revision 5943e05705f7614c7c1c29d13ce50deacdc46cc0)
+++ lams_central/web/lti/addLesson.jsp (.../addLesson.jsp) (revision 0e9eca8da006863730e793b75a47803bc6142c67)
@@ -73,9 +73,8 @@
tree.setDynamicLoad(function(node, callback){
// load subfolder contents
$.ajax({
- url : LAMS_URL + 'home.do',
+ url : LAMS_URL + 'home/getFolderContents.do',
data : {
- 'method' : 'getFolderContents',
'folderID' : node.data.folderID
},
cache : false,
@@ -128,9 +127,8 @@
// initialize, create and enter the preview lesson
$.ajax({
- url : LAMS_URL + 'monitoring/monitoring.do',
+ url : LAMS_URL + 'monitoring/monitoring/initializeLesson.do',
data : {
- 'method' : 'initializeLesson',
'learningDesignID' : ldId,
'copyType' : 3,
'lessonName' : ""
@@ -144,16 +142,15 @@
}
$.ajax({
- url : LAMS_URL + 'monitoring/monitoring.do',
+ url : LAMS_URL + 'monitoring/monitoring/startPreviewLesson.do',
data : {
- 'method' : 'startPreviewLesson',
'lessonID' : lessonID
},
cache : false,
dataType : 'text',
success : function() {
// open preview pop up window
- window.open(LAMS_URL + 'home.do?method=learner&mode=preview&lessonID='+lessonID,'Preview',
+ window.open(LAMS_URL + 'home/learner.do?mode=preview&lessonID='+lessonID,'Preview',
'width=920,height=700,resizable,scrollbars=yes,status=yes');
}
});
@@ -198,7 +195,7 @@
<%-- Form to Collect ID of Selected LAMS Sequence --%>
-