1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
3<!--
4   The filter examples page. This tests filtering in intro XHTML. When viewed, this page
5   displays facts about your environment. For example, your os is linux, your ws is gtk, etc.
6   All the other content should be filtered out.
7-->
8
9<html xmlns="http://www.w3.org/1999/xhtml">
10<head>
11<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12<title>filter.xhtml</title>
13</head>
14
15<body>
16<h2>filter.xhtml</h2>
17<p>
18This page contains filtered content.
19</p>
20<ul>
21<!-- should never appear -->
22<li filter="os=invalid">This line should never appear.</li>
23<li filter="ws=invalid">This line should never appear.</li>
24<li filter="arch=invalid">Your ARCH is <strong>invalid</strong>.</li>
25<li>
26<filter name="os" value="win32"/>
27<filter name="ws" value="invalid"/>
28Your OS is <strong>win32</strong> AND your WS is <strong>invalid</strong>.
29</li>
30
31<li filter="plugin=org.eclipse.help">The plugin <code>org.eclipse.help</code> is installed.</li>
32
33<!-- should never appear -->
34<li filter="plugin=invalid">The plugin <code>invalid</code> is installed.</li>
35
36<li filter="product=org.eclipse.sdk.ide">The product <code>org.eclipse.sdk.ide</code> is running.</li>
37
38<!-- should never appear -->
39<li filter="product=invalid">The product <code>invalid</code> is running.</li>
40
41<li filter="category=org.eclipse.categories.developmentCategory">The category <code>org.eclipse.categories.developmentCategory</code> is enabled.</li>
42
43<!-- should never appear -->
44<li filter="category=invalid">The category <code>invalid</code> is enabled.</li>
45
46<li filter="activity=org.eclipse.javaDevelopment">The activity <code>org.eclipse.javaDevelopment</code> is enabled.</li>
47
48<!-- should never appear -->
49<li filter="activity=invalid">The activity <code>invalid</code> is enabled.</li>
50</ul>
51</body>
52</html>
53