Skip to content
This repository was archived by the owner on Dec 15, 2018. It is now read-only.

Commit a496598

Browse files
committed
Fixed contextPath reference in test JSP files
1 parent ef1cab2 commit a496598

File tree

31 files changed

+31
-31
lines changed

31 files changed

+31
-31
lines changed

test/annotations/src/main/webapp/WEB-INF/views/error.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>Error</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css"/>
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css"/>
77
</head>
88
<body>
99
<h1>Error</h1>

test/annotations/src/main/webapp/WEB-INF/views/success.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>Success</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css"/>
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css"/>
77
</head>
88
<body>
99
<h1>Success</h1>

test/book-cdi/src/main/webapp/WEB-INF/views/book.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>Book Information</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css">
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css">
77
</head>
88
<body>
99
<h1>Book Information</h1>

test/book-models/src/main/webapp/WEB-INF/views/book.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>Book Information</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css"/>
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css"/>
77
</head>
88
<body>
99
<h1>Book Information</h1>

test/conversation/src/main/webapp/WEB-INF/views/start.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>Starting Conversation</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css"/>
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css"/>
77
</head>
88
<body>
99
<h1>Starting Conversation</h1>

test/conversation/src/main/webapp/WEB-INF/views/stop.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>Stopping Conversation</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css"/>
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css"/>
77
</head>
88
<body>
99
<h1>Stopping Conversation</h1>

test/conversation/src/main/webapp/WEB-INF/views/tellme.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>In Conversation</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css"/>
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css"/>
77
</head>
88
<body>
99
<h1>In Conversation</h1>

test/csrf-property/src/main/webapp/WEB-INF/views/csrf.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>CSRF Protection Test</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css"/>
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css"/>
77
</head>
88
<body>
99
<h1>CSRF Protection Test</h1>

test/csrf-property/src/main/webapp/WEB-INF/views/error.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>CSRF Protection Error</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css"/>
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css"/>
77
</head>
88
<body>
99
<h1>CSRF Protection Failed</h1>

test/csrf-property/src/main/webapp/WEB-INF/views/ok.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<title>CSRF Protection OK</title>
6-
<link rel="stylesheet" type="text/css" href="${request.contextPath}/ozark.css"/>
6+
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/ozark.css"/>
77
</head>
88
<body>
99
<h1>CSRF Protection OK</h1>

0 commit comments

Comments
 (0)