mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-24 13:02:13 +00:00
SEC-2467: Fix Small errors in itest-web's jsps
This commit is contained in:
parent
1f833b0d6b
commit
a99c6db327
@ -3,15 +3,13 @@
|
|||||||
<body>
|
<body>
|
||||||
<h1>Authentication Tag Test Page</h1>
|
<h1>Authentication Tag Test Page</h1>
|
||||||
|
|
||||||
<p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>This is the authentication name: <sec:authentication property="name"/></li>
|
<li>This is the authentication name: <sec:authentication property="name"/></li>
|
||||||
<li>This is the principal.username: <sec:authentication property="principal.username"/></li>
|
<li>This is the principal.username: <sec:authentication property="principal.username"/></li>
|
||||||
<li>This is the unescaped authentication name: <sec:authentication property="name" htmlEscape="false"/></li>
|
<li>This is the unescaped authentication name: <sec:authentication property="name" htmlEscape="false"/></li>
|
||||||
<li>This is the unescaped principal.username: <sec:authentication property="principal.username" htmlEscape="false"/></li>
|
<li>This is the unescaped principal.username: <sec:authentication property="principal.username" htmlEscape="false"/></li>
|
||||||
|
|
||||||
</ul
|
</ul>
|
||||||
</p>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -7,6 +7,9 @@
|
|||||||
<title>A secure page</title>
|
<title>A secure page</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<jsp:include page="secure1body.jsp?x=1&y=2"/>
|
<jsp:include page="secure1body.jsp">
|
||||||
|
<jsp:param name="x" value="1" />
|
||||||
|
<jsp:param name="y" value="2" />
|
||||||
|
</jsp:include>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
x
Reference in New Issue
Block a user