How to create a Legacy Lesson - instruction edit #177
Commit to fix the following issues. 1. Update the user guide to point to the wiki. 2. Add the slack channel 3. Change the feedback email to point to the group mailing list.
This commit is contained in:
parent
2d39ab90d2
commit
a20532921a
@ -70,11 +70,16 @@ public abstract class LessonAdapter extends AbstractLesson {
|
|||||||
ec
|
ec
|
||||||
.addElement(new StringElement(
|
.addElement(new StringElement(
|
||||||
"Lesson are simple to create and very little coding is required. "
|
"Lesson are simple to create and very little coding is required. "
|
||||||
+ "In fact, most lessons can be created by following the easy to use instructions in the "
|
+ "In fact, most lessons can be created by following the easy to use instructions by going to the WebGoat wiki page "
|
||||||
+ "<A HREF=http://www.owasp.org/index.php/WebGoat_User_and_Install_Guide_Table_of_Contents>WebGoat User Guide.</A> "
|
+ "<A HREF=https://github.com/WebGoat/WebGoat/wiki>WebGoat Wiki Page</A> "
|
||||||
+ "If you would prefer, send your lesson ideas to "
|
+ "If you would prefer, send your lesson ideas to "
|
||||||
+ getWebgoatContext().getFeedbackAddressHTML()));
|
+ getWebgoatContext().getFeedbackAddressHTML())
|
||||||
|
+ " Note: you will need to register at "
|
||||||
|
+ "the following link to use the feedback tool: "
|
||||||
|
+ "<A HREF=https://lists.owasp.org/mailman/listinfo/owasp-webgoat>List Registration</A> "
|
||||||
|
+ "Finally, OWASP has a slack channel. You can register at the following link: "
|
||||||
|
+ "<A HREF=https://owasp.slack.com/>OWASP Slack Channel</A>");
|
||||||
|
|
||||||
try (InputStream is = Thread.currentThread().getContextClassLoader()
|
try (InputStream is = Thread.currentThread().getContextClassLoader()
|
||||||
.getResourceAsStream("New Lesson Instructions.txt")) {
|
.getResourceAsStream("New Lesson Instructions.txt")) {
|
||||||
if (is != null) {
|
if (is != null) {
|
||||||
|
@ -92,9 +92,9 @@ public class WebgoatContext {
|
|||||||
|
|
||||||
private boolean codingExercises = false;
|
private boolean codingExercises = false;
|
||||||
|
|
||||||
private String feedbackAddress = "webgoat@owasp.org";
|
private String feedbackAddress = "owasp-webgoat@list.owasp.org";
|
||||||
|
|
||||||
private String feedbackAddressHTML = "<A HREF=mailto:webgoat@owasp.org>webgoat@owasp.org</A>";
|
private String feedbackAddressHTML = "<A HREF=mailto:owasp-webgoat@list.owasp.org>owasp-webgoat@list.owasp.org</A>";
|
||||||
|
|
||||||
private boolean isDebug = false;
|
private boolean isDebug = false;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user