Restructured the baseline to remove extra src/main directory structure. Added eclipes project file

git-svn-id: http://webgoat.googlecode.com/svn/branches/webgoat-6.0@485 4033779f-a91e-0410-96ef-6bf7bf53c507
This commit is contained in:
mayhew64@gmail.com
2012-11-19 23:57:51 +00:00
parent fb938e0933
commit 6a96547ef0
1204 changed files with 85 additions and 2 deletions

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE tiles-definitions PUBLIC
"-//Apache Software Foundation//DTD Tiles Configuration 2.1//EN"
"http://tiles.apache.org/dtds/tiles-config_2_1.dtd">
<tiles-definitions>
<!-- template for generic lessons -->
<definition name="generic-lesson" template="/WEB-INF/pages/layouts/genericLesson.jsp">
<put-attribute name="header-content" value="/WEB-INF/pages/sections/header.jsp" />
<put-attribute name="title-content" cascade="true" value="" />
<put-attribute name="menu-content" value="/WEB-INF/pages/sections/menu.jsp" />
<put-attribute name="hints-params-cookies" value="/WEB-INF/pages/sections/hintsParamsAndCookies.jsp" />
<put-attribute name="primary-content" value="" />
<put-attribute name="footer-content" value="/WEB-INF/pages/sections/footer.jsp" />
</definition>
<!-- vulnerability-specific lesson pages -->
<definition name="http-basics" extends="generic-lesson">
<put-attribute name="title-content" cascade="true" value="HTTP Basics"/>
<put-attribute name="primary-content" value="/WEB-INF/pages/lessons/httpBasics.jsp" />
</definition>
</tiles-definitions>