Skip to content

Commit c0c2495

Browse files
committed
Fix htmlvalidator warnings
1 parent 3e4a504 commit c0c2495

File tree

5 files changed

+38
-33
lines changed

5 files changed

+38
-33
lines changed

org.eclipse.pde.doc.user/reference/extension-points/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
44
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2014. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
5-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
66
<title>PDE Extension Points</title>
77
<link rel="stylesheet" type="text/css" HREF="../../book.css">
88
</head>

org.eclipse.pde.doc.user/reference/misc/api-usage-rules.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML>
2+
<html lang="en">
23
<HEAD>
34

45
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
56

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
<link REL="STYLESHEET" HREF="../../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
7+
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
8+
<link REL="STYLESHEET" HREF="../../book.css" TYPE="text/css">
99
<title>Eclipse Platform API - Rules of Engagement</title>
1010

1111

@@ -50,36 +50,36 @@ <h2>
5050

5151
</ul><ul>
5252
<li>
53-
<tt>org.eclipse.foo.*</tt> - for example, <tt>org.eclipse.swt.widgets</tt>,
54-
<tt>org.eclipse.ui</tt>,
55-
or <tt>org.eclipse.core.runtime</tt></li>
53+
<code>org.eclipse.foo.*</code> - for example, <code>org.eclipse.swt.widgets</code>,
54+
<code>org.eclipse.ui</code>,
55+
or <code>org.eclipse.core.runtime</code></li>
5656

5757
<li>
58-
<tt>org.eclipse.foo.internal.*</tt> - not API; internal implementation
58+
<code>org.eclipse.foo.internal.*</code> - not API; internal implementation
5959
packages</li>
6060

6161
<li>
62-
<tt>org.eclipse.foo.examples.*</tt> - not API; these are examples</li>
62+
<code>org.eclipse.foo.examples.*</code> - not API; these are examples</li>
6363

6464
<li>
65-
<tt>org.eclipse.foo.tests.*</tt> - not API; these are test suites</li>
65+
<code>org.eclipse.foo.tests.*</code> - not API; these are test suites</li>
6666
</ul>
6767
<ul>
6868
<li>
69-
<b>API class or interface</b> - a <tt>public</tt> class or interface in
70-
an API package, or a <tt>public</tt> or <tt>protected</tt> class or interface
69+
<b>API class or interface</b> - a <code>public</code> class or interface in
70+
an API package, or a <code>public</code> or <code>protected</code> class or interface
7171
member declared in, or inherited by, some other API class or interface.
7272
The names of API classes and interfaces may legitimately appear in client
7373
code.</li>
7474

7575
<li>
76-
<b>API method or constructor</b> - a <tt>public</tt> or <tt>protected</tt>
76+
<b>API method or constructor</b> - a <code>public</code> or <code>protected</code>
7777
method or constructor either declared in, or inherited by, an API class
7878
or interface. The names of API methods may legitimately appear in client
7979
code.</li>
8080

8181
<li>
82-
<b>API field</b> - a <tt>public</tt> or <tt>protected</tt> field either
82+
<b>API field</b> - a <code>public</code> or <code>protected</code> field either
8383
declared in, or inherited by, an API class or interface. The names of API
8484
fields may legitimately appear in client code.</li>
8585
</ul>
@@ -168,7 +168,7 @@ <h2>
168168

169169
<li>
170170
<b>Debugging methods.</b> Do not call an API method labelled "for debugging
171-
purposes only". For example, most <tt>toString()</tt> methods are in this
171+
purposes only". For example, most <code>toString()</code> methods are in this
172172
category.</li>
173173

174174
<li>
@@ -184,7 +184,7 @@ <h2>
184184
instances may be created. The contract may also cover things like residual
185185
initialization responsibilities (for example, configuring a certain property
186186
before the instance is fully active) and associated lifecycle responsibilities
187-
(for example, calling <tt>dispose()</tt> to free up OS resources hung on
187+
(for example, calling <code>dispose()</code> to free up OS resources hung on
188188
to by the instance). Classes that are designed to be instantiated by clients
189189
are explicitly flagged in the Javadoc class comment (with words like "Clients
190190
may instantiate.").

org.eclipse.pde.doc.user/reference/misc/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
44
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2009. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
5-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
66
<meta name="Author" content="IBM">
77
<link rel="STYLESHEET" href="../../book.css" type="text/css">
88
<title>PDE - Other Reference Information</title>

org.eclipse.pde.doc.user/reference/misc/overview-pde.html

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
44
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2013. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
5-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
66
<meta name="Author" content="IBM">
77
<title>PDE Overview</title>
88
<link rel="STYLESHEET" href="../../book.css" type="text/css">
9+
<style>
10+
table, th, td {
11+
border: 1px solid black;
12+
border-collapse: collapse;
13+
}
14+
</style>
915
</head>
1016
<body>
1117
<h1>Map of PDE Plug-ins</h1>
@@ -16,27 +22,27 @@ <h1>Map of PDE Plug-ins</h1>
1622
(the most commonly referenced API packages are highlighted). This table is useful
1723
for determining which plug-ins a given plug-in should include as prerequisites.
1824
</p>
19-
<table border="1" width="80%" align="center">
25+
<table style="margin: 0px auto; width: 80%;">
2026
<tbody>
2127
<tr>
2228
<td><b>API Package</b></td>
2329
<td><b>Plug-in id</b></td>
2430
</tr>
2531
<tr>
26-
<td><tt>org.eclipse.pde.api.tools.annotations[.*]</tt></td>
27-
<td><tt>org.eclipse.pde.api.tools.annotations</tt></td>
32+
<td><code>org.eclipse.pde.api.tools.annotations[.*]</code></td>
33+
<td><code>org.eclipse.pde.api.tools.annotations</code></td>
2834
</tr>
2935
<tr>
30-
<td><tt>org.eclipse.pde.core[.*]</tt></td>
31-
<td><tt>org.eclipse.pde.core</tt></td>
36+
<td><code>org.eclipse.pde.core[.*]</code></td>
37+
<td><code>org.eclipse.pde.core</code></td>
3238
</tr>
3339
<tr>
34-
<td><tt>org.eclipse.pde.launching[.*]</tt></td>
35-
<td><tt>org.eclipse.pde.launching</tt></td>
40+
<td><code>org.eclipse.pde.launching[.*]</code></td>
41+
<td><code>org.eclipse.pde.launching</code></td>
3642
</tr>
3743
<tr>
38-
<td><tt>org.eclipse.pde.ui[.*]</tt></td>
39-
<td><tt>org.eclipse.pde.ui</tt></td>
44+
<td><code>org.eclipse.pde.ui[.*]</code></td>
45+
<td><code>org.eclipse.pde.ui</code></td>
4046
</tr>
4147
</tbody>
4248
</table>

org.eclipse.pde.doc.user/whatsNew/pde_whatsnew.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1+
<!DOCTYPE html>
22
<html xmlns="http://www.w3.org/1999/xhtml">
33
<head>
44
<meta name="copyright" content="Copyright (c) Eclipse contributors and others 2025. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page."/>
5-
<meta http-equiv="Content-Language" content="en-us"/>
65
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
76
<link rel="STYLESHEET" href="../book.css" type="text/css"/>
87
<style type="text/css">

0 commit comments

Comments
 (0)