Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use lowercase HTML tags and attributes. Add quotes around attributes.
Browse files Browse the repository at this point in the history
jbampton committed Jul 6, 2020
1 parent 96b5ab3 commit 2406b0a
Showing 3 changed files with 116 additions and 107 deletions.
137 changes: 69 additions & 68 deletions webapps/examples/jsp/colors/ColorGameBean.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<HTML>
<html>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
@@ -16,101 +16,102 @@
limitations under the License.
-->

<HEAD>
<head>
<title>
colors.ColorGameBean Bean Properties
</title>
<BODY BGCOLOR="white">
<H2>
</head>
<body bgcolor="white">
<h2>
colors.ColorGameBean Bean Properties
</H2>
<HR>
<DL>
<DT>public class <B>ColorGameBean</B><DT>extends Object</DL>
</h2>
<hr>
<dl>
<dt>public class <b>ColorGameBean</b><dt>extends Object</dl>

<P>
<HR>
<p>
<hr>

<P>
<p>

<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0">
<TR BGCOLOR="#EEEEFF">
<TD COLSPAN=3><FONT SIZE="+2">
<B>Properties Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white">
<table border="1" width="100%" cellpadding="3" cellspacing="0">
<tr bgcolor="#eeeeff">
<td colspan=3><font size="+2">
<b>Properties Summary</b></font></td>
</tr>
<tr bgcolor="white">
<td align="right" valign="top" width="1%">
<FONT SIZE="-1">
<font size="-1">
String
</FONT></TD>
<TD><B>ColorGameBean:color2</B>
<BR>
</TD>
</font></td>
<td><b>ColorGameBean:color2</b>
<br>
</td>
<td width="1%">
<FONT SIZE="-1">
<font size="-1">
Single
</FONT></TD>
<TR BGCOLOR="white">
</font></td>
<tr bgcolor="white">
<td align="right" valign="top" width="1%">
<FONT SIZE="-1">
<font size="-1">
String
</FONT></TD>
<TD><B>ColorGameBean:color1</B>
<BR>
</TD>
</font></td>
<td><b>ColorGameBean:color1</b>
<br>
</td>
<td width="1%">
<FONT SIZE="-1">
<font size="-1">
Single
</FONT></TD>
<TR BGCOLOR="white">
</font></td>
<tr bgcolor="white">
<td align="right" valign="top" width="1%">
<FONT SIZE="-1">
<font size="-1">
int
</FONT></TD>
<TD><B>ColorGameBean:attempts</B>
<BR>
</TD>
</font></td>
<td><b>ColorGameBean:attempts</b>
<br>
</td>
<td width="1%">
<FONT SIZE="-1">
<font size="-1">
Single
</FONT></TD>
<TR BGCOLOR="white">
</font></td>
<tr bgcolor="white">
<td align="right" valign="top" width="1%">
<FONT SIZE="-1">
<font size="-1">
boolean
</FONT></TD>
<TD><B>ColorGameBean:hint</B>
<BR>
</TD>
</font></td>
<td><b>ColorGameBean:hint</b>
<br>
</td>
<td width="1%">
<FONT SIZE="-1">
<font size="-1">
Single
</FONT></TD>
<TR BGCOLOR="white">
</font></td>
<tr bgcolor="white">
<td align="right" valign="top" width="1%">
<FONT SIZE="-1">
<font size="-1">
boolean
</FONT></TD>
<TD><B>ColorGameBean:success</B>
<BR>
</TD>
</font></td>
<td><b>ColorGameBean:success</b>
<br>
</td>
<td width="1%">
<FONT SIZE="-1">
<font size="-1">
Single
</FONT></TD>
<TR BGCOLOR="white">
</font></td>
<tr bgcolor="white">
<td align="right" valign="top" width="1%">
<FONT SIZE="-1">
<font size="-1">
boolean
</FONT></TD>
<TD><B>ColorGameBean:hintTaken</B>
<BR>
</TD>
</font></td>
<td><b>ColorGameBean:hintTaken</b>
<br>
</td>
<td width="1%">
<FONT SIZE="-1">
<font size="-1">
Single
</FONT></TD>
</TABLE>
<HR>
</BODY>
</HTML>
</font></td>
</table>
<hr>
</body>
</html>
29 changes: 18 additions & 11 deletions webapps/examples/jsp/error/error.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<html>
<!DOCTYPE html>
<html lang="en">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
@@ -15,22 +16,28 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<head>
<title>Errorpage directive example</title>
<style>
body {background-color: white;}
</style>
</head>

<body bgcolor="white">
<body>

<h1> This example uses <b>errorpage</b> directive </h1>
<br>
<h3> Select my favourite car.</h3>
<form method=get action=err.jsp>
<form method="get" action="err.jsp">
<!-- <br> Make a guess: -->
<SELECT NAME="name" SIZE=5>
<OPTION VALUE="integra"> Acura Integra <BR>
<OPTION VALUE="bmw328i"> BMW 328I <BR>
<OPTION VALUE="z3"> BMW Z3 <BR>
<OPTION VALUE="infiniti"> InfinitiQ3 <BR>
<OPTION VALUE="audi"> Audi A8 <BR>
</SELECT>
<br> <INPUT TYPE=submit name=submit Value="Submit">
<select name="name" size="5">
<option value="integra"> Acura Integra </option>
<option value="bmw328i"> BMW 328I </option>
<option value="z3"> BMW Z3 </option>
<option value="infiniti"> InfinitiQ3 </option>
<option value="audi"> Audi A8 </option>
</select>
<br> <input type="submit" name="submit" value="Submit">
</form>

</body>
57 changes: 29 additions & 28 deletions webapps/examples/jsp/sessions/DummyCart.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<HTML>
<html>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
@@ -16,41 +16,42 @@
limitations under the License.
-->

<HEAD>
<head>
<title>
sessions.DummyCart Bean Properties
</title>
<BODY BGCOLOR="white">
<H2>
</head>
<body bgcolor="white">
<h2>
sessions.DummyCart Bean Properties
</H2>
<HR>
<DL>
<DT>public class <B>DummyCart</B><DT>extends Object</DL>
</h2>
<hr>
<dl>
<dt>public class <b>DummyCart</b><dt>extends Object</dl>

<P>
<HR>
<p>
<hr>

<P>
<p>

<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0">
<TR BGCOLOR="#EEEEFF">
<TD COLSPAN=3><FONT SIZE="+2">
<B>Properties Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white">
<table border="1" width="100%" cellpadding="3" cellspacing="0">
<tr bgcolor="#EEEEFF">
<td colspan=3><font size="+2">
<b>Properties Summary</b></font></td>
</tr>
<tr bgcolor="white">
<td align="right" valign="top" width="1%">
<FONT SIZE="-1">
<font size="-1">
String
</FONT></TD>
<TD><B>DummyCart:items</B>
<BR>
</TD>
</font></td>
<td><b>DummyCart:items</b>
<br>
</td>
<td width="1%">
<FONT SIZE="-1">
<font size="-1">
Multi
</FONT></TD>
</TABLE>
<HR>
</BODY>
</HTML>
</font></td>
</table>
<hr>
</body>
</html>

0 comments on commit 2406b0a

Please sign in to comment.