Skip to content

Commit 926bc9a

Browse files
committed
HTML5 fixes
Contributes to #3275
1 parent 604b118 commit 926bc9a

25 files changed

+174
-226
lines changed

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

Lines changed: 5 additions & 12 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
Plugging into the workbench
129
</TITLE>
@@ -32,7 +29,7 @@ <h2>
3229
<P >
3330
When you open your workbench on a set of projects, it looks something like this.</P>
3431

35-
<p align="left"><img src="images/workbench.png" alt="Workbench with navigator view, editor, outliner, and task list" border="0" ></p>
32+
<p><img src="images/workbench.png" alt="Workbench with navigator view, editor, outliner, and task list"></p>
3633
<P >
3734
The workbench is just a frame that can present various visual parts. These parts fall into two major categories:
3835
<b> views</b> and <b>editors</b>.</P>
@@ -56,21 +53,17 @@ <h3>
5653
or view something of interest. For example, the project explorer lets the user
5754
navigate the workspace and select resources.</P>
5855

59-
<img src="images/navigator.png" alt="" border="0">
60-
61-
56+
<img src="images/navigator.png" alt="">
6257

6358
<h3>
6459
Editors</h3>
6560
<P >
6661
Editors allow the user to open, edit, and save objects.
6762
The workbench provides a standard editor for text resources.</P>
6863

69-
<img src="images/texteditor.png" alt="" border="0">
64+
<img src="images/texteditor.png" alt="">
7065
<P >
7166
Additional editors, such as Java code editors or HTML editors, can be supplied by plug-ins</P>
7267

73-
74-
7568
</BODY>
7669
</HTML>

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

Lines changed: 58 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,33 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1+
<!DOCTYPE HTML>
22

33
<html lang="en">
44
<head>
55
<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. Portions contributed by Jan-Hendrik Diederich (bug 228956).">
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">
9-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript">
6+
<meta charset="utf-8">
7+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js">
108
</script>
119

1210
<title>Activities</title>
1311

1412
<link rel="stylesheet" type="text/css" href="../book.css">
13+
<style>
14+
.keyword {
15+
color:#7f0055;
16+
font-weight: bold;
17+
}
18+
.string {
19+
color:#2a00ff;
20+
}
21+
.comment {
22+
color:#008000;
23+
}
24+
.value {
25+
color:#990000;
26+
}
27+
</style>
1528
</head>
1629

17-
<body bgcolor="#ffffff">
30+
<body>
1831
<h3>Activities</h3>An <b>activity</b> is a logical grouping of functionality that
1932
is centered around a certain kind of task. For example, developing Java
2033
software is an activity commonly performed by users of the platform, and the
@@ -177,15 +190,15 @@ <h4>Binding Activities to UI Contributions</h4>Activities can be associated
177190

178191
plug-in-identifier + "/" + local-identifier
179192
</pre>For example, the following activity pattern binding states that a UI
180-
contribution from any JDT plug-in id (<tt>org.eclipse.jdt.*</tt>) is associated
193+
contribution from any JDT plug-in id (<code>org.eclipse.jdt.*</code>) is associated
181194
with the Java development activity regardless of its local identifier
182-
(<tt>.*</tt>).
195+
(<code>.*</code>).
183196
<pre>&lt;activityPatternBinding
184197
activityId="org.eclipse.javaDevelopment"
185198
pattern="org\.eclipse\.jdt\..*/.*"&gt;
186199
&lt;/activityPatternBinding&gt;
187200
</pre>The next binding is more specific. It states that the contribution named
188-
<tt>javanature</tt> defined in the JDT core (<tt>org.eclipse.jdt.core</tt>) is
201+
<code>javanature</code> defined in the JDT core (<code>org.eclipse.jdt.core</code>) is
189202
associated with the Java development activity.
190203
<pre>&lt;activityPatternBinding
191204
activityId="org.eclipse.javaDevelopment"
@@ -196,14 +209,14 @@ <h4>Binding Activities to UI Contributions</h4>Activities can be associated
196209

197210
It is also possible to refer to a single UI contribution using its id without having to
198211
use regular expression syntax if the attribute
199-
<tt>isEqualityPattern</tt> is set to <tt>true</tt>.<br>
212+
<code>isEqualityPattern</code> is set to <code>true</code>.<br>
200213
The following XML shows the previous example with the
201-
<tt>isEqualityPattern</tt> set to <tt>true</tt>.<br>
214+
<code>isEqualityPattern</code> set to <code>true</code>.<br>
202215

203-
<tt><br>
216+
<code><br>
204217
&lt;activityPatternBinding<br>&nbsp; activityId="org.eclipse.javaDevelopment"<br>&nbsp; pattern="org.eclipse.jdt.core/javanature"<br>&nbsp; isEqualityPattern="true"&gt;<br>
205218
&lt;/activityPatternBinding&gt;<br>
206-
<br></tt>As you can see, activity pattern bindings can be used to associate
219+
<br></code>As you can see, activity pattern bindings can be used to associate
207220
large groups of contributions with a particular activity, or to associate
208221
very specific contributions with an activity. The following contributions are
209222
affected by activities:
@@ -314,70 +327,69 @@ <h4>Using Expression-based Activities</h4>
314327
To filter a UI element using an expression-based activity, create an activity like the
315328
following:<br>
316329

317-
<tt>&lt;activity <br>&nbsp;id="forbiddenViewActivityId" name="Forbidden View Activity"&gt;<br>&nbsp;&nbsp;&lt;enabledWhen&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;with variable="rightsVariable"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
330+
<code>&lt;activity <br>&nbsp;id="forbiddenViewActivityId" name="Forbidden View Activity"&gt;<br>&nbsp;&nbsp;&lt;enabledWhen&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;with variable="rightsVariable"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
318331
&lt;iterate ifEmpty="false" operator="or"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;
319332
&lt;equals value="grantShowForbidden" /&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&lt;/iterate&gt;<br>&nbsp;&nbsp;&nbsp;
320333
&lt;/with&gt;<br>
321334
&nbsp;&nbsp;&lt;/enabledWhen&gt;<br>
322335
&lt;/activity&gt;
323-
</tt><br><br>
336+
</code><br><br>
324337

325338
Then, bind this activity to a UI element, for example a view:<br>
326-
<tt>&lt;activityPatternBinding <br>&nbsp;activityId="forbiddenViewActivityId" <br><br>&nbsp;<font color="green">&lt;!-- Switches the interpretation of the pattern
327-
as regular expression off --&gt;</font> <br>&nbsp;isEqualityPattern="true" <br>&nbsp;pattern="DemoRCP/demorcp.views.ForbiddenView"&gt; <br>
339+
<code>&lt;activityPatternBinding <br>&nbsp;activityId="forbiddenViewActivityId" <br><br>&nbsp;<span style="color:green">&lt;!-- Switches the interpretation of the pattern
340+
as regular expression off --&gt;</span> <br>&nbsp;isEqualityPattern="true" <br>&nbsp;pattern="DemoRCP/demorcp.views.ForbiddenView"&gt; <br>
328341
&lt;/activityPatternBinding&gt;
329-
</tt>
342+
</code>
330343

331344
<p>The following code snippets show how to control the variable "rightsVariable"
332345
that appears in the activity's "enabledWhen" expression. New variables can be added
333346
through the <b>org.eclipse.ui.services</b> extension point as subclasses of
334347
<b>AbstractSourceProvider</b>.
335348
</p>
336349

337-
<p align="left">
338-
<tt>
350+
<p>
339351
<code>
340-
<font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">java.util.HashMap;<br>...</font><br>
341-
<font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">org.eclipse.ui.AbstractSourceProvider;</font><br>
352+
<span class="keyword">import </span>java.util.HashMap;<br>...<br>
353+
<span class="keyword">import </span>org.eclipse.ui.AbstractSourceProvider;<br>
342354

343-
<font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">org.eclipse.ui.PlatformUI;</font><br>
344-
<font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">org.eclipse.ui.handlers.IHandlerService;</font><br>
345-
<font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">org.eclipse.ui.services.IEvaluationService;</font><br>
355+
<span class="keyword">import </span>org.eclipse.ui.PlatformUI;<br>
356+
<span class="keyword">import </span>org.eclipse.ui.handlers.IHandlerService;<br>
357+
<span class="keyword">import </span>org.eclipse.ui.services.IEvaluationService;<br>
346358
<br>
347-
<font color="#7f0055"><b>public&nbsp;class&nbsp;</b></font><font color="#000000">RightsSourceProvider&nbsp;</font><font color="#7f0055"><b>extends&nbsp;</b></font><font color="#000000">AbstractSourceProvider&nbsp;</font><font color="#000000">{</font><br>
359+
<span class="keyword">public class </span>RightsSourceProvider&nbsp;<span class="keyword">extends </span>AbstractSourceProvider&nbsp;{<br>
348360

349361
<br>
350-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;final&nbsp;static&nbsp;</b></font><font color="#000000">String&nbsp;RIGHT_FORBIDDEN&nbsp;=&nbsp;<font color="#2a00ff">"grantShowForbidden"</font><font color="#000000">;</font></font><br>
362+
&nbsp;&nbsp;<span class="keyword">public final static </span>String&nbsp;RIGHT_FORBIDDEN&nbsp;=&nbsp;<span class="string">"grantShowForbidden"</span>;<br>
351363
<br>
352-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;final&nbsp;static&nbsp;</b></font><font color="#000000">String&nbsp;RIGHTS_VARIABLE&nbsp;=&nbsp;</font><font color="#2a00ff">"rightsVariable"</font><font color="#000000">;</font><br>
364+
&nbsp;&nbsp;<span class="keyword">public final static </span>String&nbsp;RIGHTS_VARIABLE&nbsp;=&nbsp;<span class="string">"rightsVariable"</span>;<br>
353365

354-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#7f0055"><b>private&nbsp;final&nbsp;static&nbsp;</b></font><font color="#000000">String</font><font color="#000000">[]&nbsp;</font><font color="#000000">PROVIDED_SOURCE_NAMES&nbsp;=&nbsp;</font><font color="#7f0055"><b>new&nbsp;</b></font><font color="#000000">String</font><font color="#000000">[]&nbsp;{&nbsp;</font><font color="#000000">RIGHTS_VARIABLE&nbsp;</font><font color="#000000">}</font><font color="#000000">;</font><br>
366+
&nbsp;&nbsp;<span class="keyword">private final static </span>String[]&nbsp;PROVIDED_SOURCE_NAMES&nbsp;=&nbsp;<span class="keyword">new </span>String[]&nbsp;{&nbsp;RIGHTS_VARIABLE&nbsp;};<br>
355367
<br>
356-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#7f0055"><b>private&nbsp;final&nbsp;static&nbsp;</b></font><font color="#000000">Map&lt;String,&nbsp;List&lt;String&gt;&gt;&nbsp;stateMap&nbsp;=&nbsp;</font><font color="#7f0055"><b>new&nbsp;</b></font><font color="#000000">HashMap&lt;String,&nbsp;List&lt;String&gt;&gt;</font><font color="#000000">()</font><font color="#000000">;</font><br>
368+
&nbsp;&nbsp;<span class="keyword">private final static </span>Map&lt;String,&nbsp;List&lt;String&gt;&gt;&nbsp;stateMap&nbsp;=&nbsp;<span class="keyword">new </span>HashMap&lt;String,&nbsp;List&lt;String&gt;&gt;();<br>
357369

358370
<br>
359-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;</b></font><font color="#000000">Map&nbsp;getCurrentState</font><font color="#000000">()&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;<FONT
360-
color="#008000">/*&nbsp;"YourRightsHandler" is here just an example for&nbsp;a
371+
&nbsp;&nbsp;<span class="keyword">public </span>Map&nbsp;getCurrentState()&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;<span
372+
class="comment">/*&nbsp;"YourRightsHandler" is here just an example for&nbsp;a
361373
static class<BR>&nbsp;&nbsp;&nbsp;&nbsp; * which returns the list of
362-
rights&nbsp;as&nbsp;a list of strings. */</FONT></font><br>
374+
rights&nbsp;as&nbsp;a list of strings. */</span><br>
363375

364-
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">stateMap.put</font><font color="#000000">(</font><font color="#000000">RIGHTS_VARIABLE,&nbsp;<EM>YourRightsHandler</EM>.getUserRights</font><font color="#000000">())</font><font color="#000000">;</font><br>
365-
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>return&nbsp;</b></font><font color="#000000">stateMap;</font><br>
366-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#000000">}</font><br><br>
367-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;</b></font><font color="#000000">String</font><font color="#000000">[]&nbsp;</font><font color="#000000">getProvidedSourceNames</font><font color="#000000">()&nbsp;{</font><br>
376+
&nbsp;&nbsp;&nbsp;&nbsp;stateMap.put(RIGHTS_VARIABLE,&nbsp;<EM>YourRightsHandler</EM>.getUserRights());<br>
377+
&nbsp;&nbsp;&nbsp;&nbsp;<span class="keyword">return </span>stateMap;<br>
378+
&nbsp;&nbsp;}<br><br>
379+
&nbsp;&nbsp;<span class="keyword">public </span>String<[]&nbsp;getProvidedSourceNames()&nbsp;{<br>
368380

369-
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>return&nbsp;</b></font><font color="#000000">PROVIDED_SOURCE_NAMES;</font><br>
370-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#000000">}</font><br><BR>&nbsp;&nbsp;<FONT
371-
color="#008000">/*&nbsp;This triggers an update of the rights variable state, and
381+
&nbsp;&nbsp;&nbsp;&nbsp;<span class="keyword">return </span>PROVIDED_SOURCE_NAMES;<br>
382+
&nbsp;&nbsp;}<br><BR>&nbsp;&nbsp;<span
383+
class="comment">/*&nbsp;This triggers an update of the rights variable state, and
372384
will update also all&nbsp;<BR>&nbsp;&nbsp; * listeners to the evaluation
373385
service. So that every menu point, which is also <BR>&nbsp;&nbsp; * expression
374-
controlled, gets updated too. */</FONT><br>
375-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;</b></font><font color="#7f0055"><b>void&nbsp;</b></font><font color="#000000">updateRights</font><font color="#000000">()&nbsp;{</font><br>
386+
controlled, gets updated too. */</span><br>
387+
&nbsp;&nbsp;<span class="keyword">public void </span>updateRights()&nbsp;{<br>
376388

377-
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">fireSourceChanged</font><font color="#000000">(</font><font color="#990000">0</font><font color="#000000">,&nbsp;getCurrentState</font><font color="#000000">())</font><font color="#000000">;</font><br>
378-
<font color="#ffffff">&nbsp;&nbsp;</font><font color="#000000">}</font><br><BR>&nbsp; // ...<br>
379-
<font color="#000000">}</font></code>
380-
</tt></p>
389+
&nbsp;&nbsp;&nbsp;&nbsp;fireSourceChanged(<span class="value">0</span>,&nbsp;getCurrentState());<br>
390+
&nbsp;&nbsp;}<br><BR>&nbsp; // ...<br>
391+
}</code>
392+
</p>
381393

382394
</body>
383395

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/workbench_advext_contexts.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>Contexts</TITLE>
118

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

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

Lines changed: 4 additions & 7 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, 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">
107
<TITLE>Decorators</TITLE>
118

129
<link rel="stylesheet" type="text/css" HREF="../book.css">
@@ -26,7 +23,7 @@ <H3>
2623
binary and source projects.</p>
2724

2825

29-
<p><img src="images/workbenchdecorators.png" alt="Package Explorer view with PDE decorators" border="0"></p>
26+
<p><img src="images/workbenchdecorators.png" alt="Package Explorer view with PDE decorators"></p>
3027

3128

3229
<p>The <b>com.example.helloworld&nbsp; </b>project is the only source project
@@ -136,7 +133,7 @@ <H3>
136133
is on.&nbsp; This technique is used by the CVS client.</p>
137134

138135

139-
<p><img src="images/cvsdecorators.png" alt="CVS decorators preference page" border="0"></p>
136+
<p><img src="images/cvsdecorators.png" alt="CVS decorators preference page"></p>
140137

141138

142139
<p>&nbsp;</p>

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/workbench_advext_elementFactories.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>Element factories</TITLE>
118

129
<link rel="stylesheet" type="text/css" HREF="../book.css">
@@ -22,7 +19,7 @@ <H3>Element factories</H3>
2219
that is used throughout the platform to add plug-in specific behavior to common platform model objects.</P>
2320

2421
<H4>
25-
<a name="workbench_advext_adaptables">
22+
<a id="workbench_advext_adaptables">
2623
IAdaptables and workbench adapters</a></H4>
2724
<P >
2825
When browsing the various workbench classes, you will notice that many of the workbench interfaces extend the

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +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, 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">
8-
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>
6+
<meta charset="utf-8">
7+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
118
<TITLE>org.eclipse.ui.perspectiveExtensions</TITLE>
129

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

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/workbench_advext_perspectives.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>org.eclipse.ui.perspectives</TITLE>
118

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

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

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
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>Contributing resource filters</TITLE>
118

129
<link rel="stylesheet" type="text/css" HREF="../book.css">
1310
</HEAD>
1411
<BODY>
1512

16-
17-
1813
<H3>
1914
Contributing resource filters</H3>
2015
<P >
@@ -39,7 +34,7 @@ <H3>
3934
pull-down menu.</P>
4035

4136

42-
<P ><img src="images/filtersmenu.png" alt="Resource filters menu" border="0" ></P>
37+
<P ><img src="images/filtersmenu.png" alt="Resource filters menu" ></P>
4338

4439

4540
<P >In addition to declaring the <b>filter pattern</b>,
@@ -49,10 +44,7 @@ <H3>
4944
control which filter patterns are active.</P>
5045

5146

52-
<P ><img src="images/filtersselection.png" alt="Filter selection dialog" border="0" ></P>
53-
54-
55-
47+
<P ><img src="images/filtersselection.png" alt="Filter selection dialog" ></P>
5648

5749
</BODY>
5850
</HTML>

0 commit comments

Comments
 (0)