check in hint service which provides a list of hints for the current lesson
This commit is contained in:
@ -170,7 +170,7 @@ public class Course {
|
||||
public AbstractLesson getFirstLesson() {
|
||||
List<String> roles = new ArrayList<String>();
|
||||
roles.add(AbstractLesson.USER_ROLE);
|
||||
// Category 0 is the admin function. We want the first real category
|
||||
// Category 0 is the admin function. We want the first real category
|
||||
// to be returned. This is noramally the General category and the Http Basics lesson
|
||||
return ((AbstractLesson) getLessons((Category) getCategories().get(0), roles).get(0));
|
||||
}
|
||||
@ -269,6 +269,15 @@ public class Course {
|
||||
return getLessons(category, roles);
|
||||
}
|
||||
|
||||
public AbstractLesson getLesson(int lessonId) {
|
||||
for (AbstractLesson l : lessons) {
|
||||
if (l.getScreenId() == lessonId) {
|
||||
return l;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Load all of the filenames into a temporary cache
|
||||
*
|
||||
@ -357,7 +366,7 @@ public class Course {
|
||||
|
||||
if (absoluteFile.startsWith("/lesson_plans") && absoluteFile.endsWith(".html")
|
||||
&& className.endsWith(fileName)) {
|
||||
// System.out.println("DEBUG: setting lesson plan file " + absoluteFile + " for
|
||||
// System.out.println("DEBUG: setting lesson plan file " + absoluteFile + " for
|
||||
// lesson " +
|
||||
// lesson.getClass().getName());
|
||||
// System.out.println("fileName: " + fileName + " == className: " + className );
|
||||
@ -367,7 +376,7 @@ public class Course {
|
||||
}
|
||||
if (absoluteFile.startsWith("/lesson_solutions") && absoluteFile.endsWith(".html")
|
||||
&& className.endsWith(fileName)) {
|
||||
// System.out.println("DEBUG: setting lesson solution file " + absoluteFile + "
|
||||
// System.out.println("DEBUG: setting lesson solution file " + absoluteFile + "
|
||||
// for lesson " +
|
||||
// lesson.getClass().getName());
|
||||
// System.out.println("fileName: " + fileName + " == className: " + className );
|
||||
|
@ -767,7 +767,7 @@ public class WebSession {
|
||||
WebGoatI18N.setCurrentLanguage(this.currentLanguage);
|
||||
}
|
||||
|
||||
// System.out.println("Current Screen 1: " + currentScreen );
|
||||
// System.out.println("Current Screen 1: " + currentScreen );
|
||||
// System.out.println("Previous Screen 1: " + previousScreen );
|
||||
// FIXME: requires ?Logout=true
|
||||
// FIXME: doesn't work right -- no reauthentication
|
||||
@ -779,7 +779,7 @@ public class WebSession {
|
||||
previousScreen = ERROR;
|
||||
}
|
||||
|
||||
// There are several scenarios where we want the first lesson to be loaded
|
||||
// There are several scenarios where we want the first lesson to be loaded
|
||||
// 1) Previous screen is Welcome - Start of the course
|
||||
// 2) After a logout and after the session has been reinitialized
|
||||
if ((this.getPreviousScreen() == WebSession.WELCOME) || (getRequest().getSession(false) != null
|
||||
@ -789,13 +789,13 @@ public class WebSession {
|
||||
hintNum = -1;
|
||||
}
|
||||
|
||||
// System.out.println("Current Screen 2: " + currentScreen );
|
||||
// System.out.println("Current Screen 2: " + currentScreen );
|
||||
// System.out.println("Previous Screen 2: " + previousScreen );
|
||||
// update the screen variables
|
||||
previousScreen = currentScreen;
|
||||
|
||||
try {
|
||||
// If the request is new there should be no parameters.
|
||||
// If the request is new there should be no parameters.
|
||||
// This can occur from a session timeout or a the starting of a new course.
|
||||
if (!request.getSession().isNew()) {
|
||||
currentScreen = myParser.getIntParameter(SCREEN, currentScreen);
|
||||
@ -880,7 +880,7 @@ public class WebSession {
|
||||
isColor = myParser.getBooleanParameter(COLOR, isColor);
|
||||
isDebug = myParser.getBooleanParameter(DEBUG, isDebug);
|
||||
|
||||
// System.out.println( "showParams:" + showParams );
|
||||
// System.out.println( "showParams:" + showParams );
|
||||
// System.out.println( "showSource:" + showSource );
|
||||
// System.out.println( "showSolution:" + showSolution );
|
||||
// System.out.println( "showCookies:" + showCookies );
|
||||
|
Reference in New Issue
Block a user