Skip to content

Commit 62e7933

Browse files
committed
Html 5 fixes
Contributes to #3275 Some layouts changed to not be hardcoded in pixels but rather in % and also rearranged tables to reduce scrolling.
1 parent 63e6be2 commit 62e7933

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+280
-369
lines changed

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/arch.htm

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
7+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
108
<TITLE>
119
Platform architecture
1210
</TITLE>
@@ -36,7 +34,7 @@ <h1>Platform Architecture </h1>
3634
how new tools can be added to the platform by building plug-ins that extend the
3735
system.</p>
3836

39-
<p><img border="0" src="images/sdk-arch.svg" alt="line drawing of the architecture of the sdk"></p>
37+
<p><img src="images/sdk-arch.svg" alt="line drawing of the architecture of the sdk"></p>
4038

4139
</BODY>
4240
</HTML>

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/arch_struct.htm

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
7+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
108
<TITLE>Platform SDK roadmap</TITLE>
119

1210
<link rel="stylesheet" type="text/css" HREF="../book.css">

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/compare.htm

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
7+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
108
<TITLE>Compare support</TITLE>
119

1210
<link rel="stylesheet" type="text/css" HREF="../book.css">

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/compare_beyond.htm

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
7+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
108
<TITLE>Advanced compare techniques</TITLE>
119

1210
<link rel="stylesheet" type="text/css" HREF="../book.css">
@@ -102,7 +100,7 @@ <h3>Compare Functionality Outside of Compare Editors</h3>
102100
supports <b>dynamic viewer switching</b>, that is the viewer installed in the pane is dynamically
103101
determined by the pane's input object.</p>
104102

105-
<h3><a Name="single">comparing a Single File in an Editor</a></h3>
103+
<h3><a id="single">comparing a Single File in an Editor</a></h3>
106104

107105
<p>The <a href="../reference/api/org/eclipse/compare/CompareEditorInput.html"><b>CompareEditorInput</b></a> supports
108106
the comparison of an arbitrary file/folder structure which can be displayed in an editor, dialog or view.
@@ -118,7 +116,7 @@ <h3><a Name="single">comparing a Single File in an Editor</a></h3>
118116
<li>initializes asynchronously.</li>
119117
</ul>
120118

121-
<h3><a Name="patch">working With Patches</a></h3>
119+
<h3><a id="patch">working With Patches</a></h3>
122120

123121
<p>The <a href="../reference/api/org/eclipse/compare/patch/ApplyPatchOperation.html"><b>ApplyPatchOperation</b></a> provides
124122
the ability to launch the Apply Patch wizard programmatically. The pages shown by the wizard are determined using the inputs to the operation.

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/compare_contentviewer.htm

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
7+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
108
<TITLE>Implementing a Content Viewer</TITLE>
119

1210
<link rel="stylesheet" type="text/css" HREF="../book.css">

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/compare_streammerger.htm

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
7+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
108
<TITLE>Merging multiple files</TITLE>
119

1210
<link rel="stylesheet" type="text/css" HREF="../book.css">

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/compare_structureviewer.htm

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
107
<TITLE>Implementing a structure viewer</TITLE>
118

129
<link rel="stylesheet" type="text/css" HREF="../book.css">
@@ -158,7 +155,7 @@ <h4>Difference Viewers</h4>
158155
It is a good example for how to make structured files available to the hierarchical
159156
compare functionality of the compare plug-in.</p>
160157

161-
<a name="Text"></a>
158+
<a id="Text"></a>
162159
<p>
163160
For text based inputs, clients should subclass the <a href="../reference/api/org/eclipse/compare/structuremergeviewer/StructureCreator.html"><b>StructureCreator</b></a>
164161
class. This will enable the use of a shared document between multiple editors open on the same file.

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
7+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
108
<TITLE>Console Shell</TITLE>
119

1210
<link rel="stylesheet" type="text/css" HREF="../book.css">
@@ -472,7 +470,7 @@ <h3>Closing Console Sessions</h3>
472470
<p>When using the Equinox console standalone on the command line, the <b>exit</b> command can be
473471
used to terminate Equinox and return to the system command prompt.</p>
474472

475-
</p>For both Telnet and SSH sessions, the session can be closed without terminating Equinox with
473+
<p>For both Telnet and SSH sessions, the session can be closed without terminating Equinox with
476474
the <b>disconnect</b> command.</p>
477475

478476
<h2>Implementing Custom Console Commands</h2>

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/firstplugin.htm

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
7+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
108
<TITLE>Simple plug-in example</TITLE>
119

1210
<link rel="stylesheet" type="text/css" HREF="../book.css">

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/firstplugin_btb.htm

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en">
1+
<!DOCTYPE HTML><html lang="en">
22
<HEAD>
33

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

6-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
7-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8-
9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
6+
<meta charset="utf-8">
107
<TITLE>
118
Beyond the basics
129
</TITLE>

0 commit comments

Comments
 (0)