Index: lams_bb_integration/web/modules/create.jsp =================================================================== diff -u -rdcd309de058219ef41f76000936b9136eedb0d70 -r615a2ef7e23ebd72fd36a62324e12a82fe2e1ac1 --- lams_bb_integration/web/modules/create.jsp (.../create.jsp) (revision dcd309de058219ef41f76000936b9136eedb0d70) +++ lams_bb_integration/web/modules/create.jsp (.../create.jsp) (revision 615a2ef7e23ebd72fd36a62324e12a82fe2e1ac1) @@ -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); -%> - -