Skip to content

Commit 030ef90

Browse files
ptzieglerakurtakov
authored andcommitted
Convert "Dialog" pages to HTML5
Contributes to #3275
1 parent 4826dce commit 030ef90

14 files changed

+59
-75
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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">
6+
<META charset="utf-8">
87

9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
8+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
109
<TITLE>
1110
Dialogs and wizards
1211
</TITLE>

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

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

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

8-
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
9-
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
8+
<META charset="utf-8">
109

1110
<link rel="stylesheet" type="text/css" HREF="../book.css">
1211
<TITLE>Filtered item selection dialog</TITLE>

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

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1+
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
44
<meta name="copyright"
55
content="Copyright (c) IBM Corporation and others 2007, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page.">
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"
9-
type="text/css">
10-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
6+
<META charset="utf-8">
7+
<link rel="STYLESHEET" href="../book.css" type="text/css">
8+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
119
<title>Creating a custom filtered item selection dialog</title>
1210
</head>
1311
<body>
@@ -163,7 +161,7 @@ <h2>Creating a Custom Filtered Items Selection Dialog</h2>
163161
<li>
164162
The resulting dialog looks as follows:
165163
<p><img
166-
src="images/filteredResourcesSelectionDialogExample.png" border="0"
164+
src="images/filteredResourcesSelectionDialogExample.png" style="border:0"
167165
alt="Screen shot of a simple search dialog"></p>
168166
</li>
169167
</ol>

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

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1+
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
44
<meta name="copyright"
55
content="Copyright (c) IBM Corporation and others 2007, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page.">
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"
9-
type="text/css">
10-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
6+
<META charset="utf-8">
7+
<link rel="STYLESHEET" href="../book.css" type="text/css">
8+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
119
<title>Advanced use of the filtered item selection dialog</title>
1210
</head>
1311
<body>
@@ -23,7 +21,7 @@ <h2>Advanced Use of the Filtered Items Selection Dialog</h2>
2321
<li><a href="#checkbox">Adding an extra check-box to the dialog</a></li>
2422
</ul>
2523

26-
<h3><a name="history">Adding Selected Items</a> History</h3>
24+
<h3 id="history">Adding Selected Items>History</h3>
2725
The dialog can be configured to save and restore the history of items that have
2826
been selected.
2927
<ol>
@@ -89,11 +87,11 @@ <h3><a name="history">Adding Selected Items</a> History</h3>
8987
<li>Our example dialog now looks like this:
9088
<p><img
9189
src="images/filteredResourcesSelectionDialogExampleAdvance1.png"
92-
border="0" alt="Image of a simple search dialog"></p>
90+
style="border:0" alt="Image of a simple search dialog"></p>
9391
</li>
9492
</ol>
9593

96-
<h3><a name="filter">Adding Custom Filters</a></h3>
94+
<h3 id="filter">Adding Custom Filters</h3>
9795
Next we will expand the filter to hide all strings that start with a lower case character.
9896
<ol>
9997
<li>Create a subclass of <em>FilteredItemsSelectionDialog.ItemsFilter</em>,
@@ -137,11 +135,11 @@ <h3><a name="filter">Adding Custom Filters</a></h3>
137135
}</pre></li>
138136
<li>Now the dialog will only display strings that start with a lower case letter.
139137
<p><img src="images/filteredResourcesSelectionDialogExampleAdvance2.png"
140-
border="0" alt="Image of a simple search dialog"></p>
138+
style="border:0" alt="Image of a simple search dialog"></p>
141139
</li>
142140
</ol>
143141

144-
<h3><a name="checkbox">Adding an Extra Check-box to the Dialog</a></h3>
142+
<h3 id="checkbox">Adding an Extra Check-box to the Dialog</h3>
145143
<p>We will use a check-box and a menu action to indicate whether
146144
to filter strings that start with a lower case character.</p>
147145
<ol>
@@ -199,7 +197,7 @@ <h3><a name="checkbox">Adding an Extra Check-box to the Dialog</a></h3>
199197

200198
<li>Now open the dialog:
201199
<p><img src="images/filteredResourcesSelectionDialogExampleAdvance3.png"
202-
border="0" alt="Image of a simple search dialog"></p>
200+
style="border:0" alt="Image of a simple search dialog"></p>
203201
</li>
204202
</ol>
205203
</body>

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +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">
6+
<META charset="utf-8">
87

98
<link rel="stylesheet" type="text/css" HREF="../book.css">
109
<TITLE>
@@ -45,7 +44,7 @@ <h2>
4544
When the user selects the action, the <b>SectionsDialog</b>
4645
is opened.</P>
4746

48-
<img src="images/readmedialog.png" alt="" border="0" >
47+
<img src="images/readmedialog.png" alt="" style="border:0" >
4948

5049

5150
<P >

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +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">
6+
<META charset="utf-8">
87

98
<link rel="stylesheet" type="text/css" HREF="../book.css">
109
<TITLE>Dialog settings</TITLE>

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +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">
6+
<META charset="utf-8">
87

98
<link rel="stylesheet" type="text/css" HREF="../book.css">
109
<TITLE>

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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">
6+
<META charset="utf-8">
87

9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
8+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
109
<TITLE>
1110
Wizards
1211
</TITLE>
@@ -29,7 +28,7 @@ <H2>
2928
<P >
3029
A wizard is composed of several different underlying parts.&nbsp;</P>
3130

32-
<img alt="" border="0" src="images/wiz_arch.svg" >
31+
<img alt="" style="border:0" src="images/wiz_arch.svg" >
3332

3433

3534
<p>

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
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, 2011. 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">
6+
<META charset="utf-8">
87

9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
10-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
8+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
9+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
1110
<TITLE>
1211
org.eclipse.ui.exportWizards
1312
</TITLE>
@@ -33,7 +32,7 @@ <H3>
3332
assign categories for the wizards themselves.&nbsp; The wizards appear
3433
uncategorized in a wizard dialog. </P>
3534
<P >
36-
<img src="images/exportwizard.png" alt="" border="0"> </P>
35+
<img src="images/exportwizard.png" alt="" style="border:0"> </P>
3736
<P >
3837
The wizard supplied in the class parameter of the markup must implement <a href="../reference/api/org/eclipse/ui/IExportWizard.html"><b>IExportWizard</b></a>.
3938
Its pages are typically extended from

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
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, 2011. 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">
6+
<META charset="utf-8">
87

9-
<LINK REL="STYLESHEET" HREF="../book.css" CHARSET="ISO-8859-1" TYPE="text/css">
10-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
8+
<LINK REL="STYLESHEET" HREF="../book.css" TYPE="text/css">
9+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
1110
<TITLE>Workbench wizard extension points</TITLE>
1211

1312
<link rel="stylesheet" type="text/css" HREF="../book.css">
@@ -32,7 +31,7 @@ <h2>
3231

3332
dialog is shown below.</P>
3433
<P >
35-
<img src="images/importwizard.png" alt="Import wizard dialog with selection list" border="0"></P>
34+
<img src="images/importwizard.png" alt="Import wizard dialog with selection list" style="border:0"></P>
3635
<P >
3736
Your wizard takes control once it is selected in the list and the <b> Next</b> button is pressed. This is when your first page becomes visible.&nbsp;</P>
3837

0 commit comments

Comments
 (0)