%--
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 - start_lesson_proc.jsp
--%>
<%@ page import="blackboard.platform.plugin.PlugInUtil"%>
<%@ page import="blackboard.platform.plugin.PlugInException"%>
<%@ page import="org.lamsfoundation.ld.integration.Constants"%>
<%@ page import="org.lamsfoundation.ld.integration.util.LamsSecurityUtil"%>
<%@ page errorPage="/error.jsp"%>
<%@ taglib uri="/bbNG" prefix="bbNG"%>
<%
// 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);
%>
<%-- Breadcrumbs --%>
<%-- Page Header --%>
<%-- Form to Collect ID of Selected LAMS Sequence --%>