Index: lams_bb_integration/web/modules/create.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_bb_integration/web/modules/create.jsp,v
diff -u -r1.24 -r1.25
--- lams_bb_integration/web/modules/create.jsp 16 Feb 2017 04:31:47 -0000 1.24
+++ lams_bb_integration/web/modules/create.jsp 20 Feb 2017 17:22:36 -0000 1.25
@@ -1,17 +1,14 @@
-
+<%@ page contentType="text/html; charset=utf-8" language="java"%>
+<%@ page isELIgnored="false" %>
+
+
<%--
- Original Version: 2007 LAMS Foundation
- Updated for Blackboard 9.1 SP6 (including new bbNG tag library) 2011
- Richard Stals (www.stals.com.au)
- Edith Cowan University, Western Australia
---%>
-<%--
Step 1 For Creating a New LAMS Lesson
Allows the user to (optionally) author a new LAMS lesson
Then the user must select a LAMS lesson before proceeding to Step 2.
Step 1 - create.jsp
- Step 2 - /StartLessonServlet (StartLessonServlet.java)
+ Step 2 - /LessonManager?method=start
--%>
<%@ page import="blackboard.platform.plugin.PlugInUtil"%>
<%@ page import="blackboard.platform.plugin.PlugInException"%>
@@ -28,29 +25,14 @@
-<%
- // Authorise current user for Course Control Panel (automatic redirect)
- try{
- if (!PlugInUtil.authorizeForCourseControlPanel(request, response))
- return;
- } catch(PlugInException e) {
- throw new RuntimeException(e);
- }
-
- String lamsServerUrl = LamsSecurityUtil.getServerAddress();
-
- // get all user accessible folders and LD descriptions as JSON
- String learningDesigns = LamsSecurityUtil.getLearningDesigns(ctx, ctx.getCourse().getCourseId(), null);
-%>
-
-