Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis D'Entremont2006-04-03 21:48:12 +0000
committerCurtis D'Entremont2006-04-03 21:48:12 +0000
commita437c3bdf9a8544aca3009a980212c600798c9a9 (patch)
tree5825b4b1d06fe92442de102885c7501eca5a456e /org.eclipse.ua.tests
parent2863065ab68a961683a380230a7407f15fecc2fe (diff)
downloadeclipse.platform.ua-a437c3bdf9a8544aca3009a980212c600798c9a9.tar.gz
eclipse.platform.ua-a437c3bdf9a8544aca3009a980212c600798c9a9.tar.xz
eclipse.platform.ua-a437c3bdf9a8544aca3009a980212c600798c9a9.zip
134628 [Help] Document how to add dynamic contentv20060403a
Diffstat (limited to 'org.eclipse.ua.tests')
-rw-r--r--org.eclipse.ua.tests/data/help/producer/dynamic.xhtml1
-rw-r--r--org.eclipse.ua.tests/data/help/producer/include.xhtml21
2 files changed, 22 insertions, 0 deletions
diff --git a/org.eclipse.ua.tests/data/help/producer/dynamic.xhtml b/org.eclipse.ua.tests/data/help/producer/dynamic.xhtml
index 17c02c356..977e8dc6c 100644
--- a/org.eclipse.ua.tests/data/help/producer/dynamic.xhtml
+++ b/org.eclipse.ua.tests/data/help/producer/dynamic.xhtml
@@ -40,6 +40,7 @@ This paragraph, which has filter attribute "plugin!=my.invalid.plugin.id.012345"
should never be filtered out.
</p>
+<include path="org.eclipse.ua.tests/data/help/producer/include.xhtml/my.paragraph.id"/>
</body>
</html>
diff --git a/org.eclipse.ua.tests/data/help/producer/include.xhtml b/org.eclipse.ua.tests/data/help/producer/include.xhtml
new file mode 100644
index 000000000..de3814734
--- /dev/null
+++ b/org.eclipse.ua.tests/data/help/producer/include.xhtml
@@ -0,0 +1,21 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<!--
+ This file is used to test whether or not the dynamic producer will be used
+ when loading an xhtml document from outside a doc.zip. The paragraph at the
+ bottom should always be filtered out by the producer.
+-->
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<title>dynamic.xhtml</title>
+</head>
+<body>
+
+<p id="my.paragraph.id">
+ This paragraph comes from <code>include.xhtml</code>.
+</p>
+
+</body>
+</html>

Back to the top