Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Klicnik2001-05-14 18:44:34 +0000
committerVlad Klicnik2001-05-14 18:44:34 +0000
commit172bc6c37636db342545a9540675833c93a77a51 (patch)
treedad0687a97079a1e89fabde76e19fed8f9e3d4d0 /org.eclipse.help/dtd
downloadeclipse.platform.ua-172bc6c37636db342545a9540675833c93a77a51.tar.gz
eclipse.platform.ua-172bc6c37636db342545a9540675833c93a77a51.tar.xz
eclipse.platform.ua-172bc6c37636db342545a9540675833c93a77a51.zip
*** empty log message ***
Diffstat (limited to 'org.eclipse.help/dtd')
-rw-r--r--org.eclipse.help/dtd/actions.dtd10
-rw-r--r--org.eclipse.help/dtd/contexts.dtd11
-rw-r--r--org.eclipse.help/dtd/infoset.dtd10
-rw-r--r--org.eclipse.help/dtd/topics.dtd8
4 files changed, 39 insertions, 0 deletions
diff --git a/org.eclipse.help/dtd/actions.dtd b/org.eclipse.help/dtd/actions.dtd
new file mode 100644
index 000000000..8596b6fd8
--- /dev/null
+++ b/org.eclipse.help/dtd/actions.dtd
@@ -0,0 +1,10 @@
+
+<!ELEMENT actions (insert)* >
+<!ATTLIST actions infoview CDATA #REQUIRED >
+<!ATTLIST actions standalone (true | false) false #IMPLIED >
+
+<!ELEMENT insert (insert) >
+<!ATTLIST insert from CDATA #REQUIRED >
+<!ATTLIST insert to CDATA #REQUIRED >
+<!ATTLIST insert as (child | first-child | last-child | alpha | prev-sib | next-sib) "child" >
+<!ATTLIST insert label CDATA #IMPLIED >
diff --git a/org.eclipse.help/dtd/contexts.dtd b/org.eclipse.help/dtd/contexts.dtd
new file mode 100644
index 000000000..bab7d9cb4
--- /dev/null
+++ b/org.eclipse.help/dtd/contexts.dtd
@@ -0,0 +1,11 @@
+
+<!ELEMENT contexts (context)* >
+
+<!ELEMENT context (description, topic*) >
+<!ATTLIST context id ID #REQUIRED >
+
+<!ELEMENT description #PCDATA >
+
+<!ELEMENT topic (topic)* >
+<!ATTLIST topic label CDATA #REQUIRED >
+<!ATTLIST topic href CDATA #IMPLIED >
diff --git a/org.eclipse.help/dtd/infoset.dtd b/org.eclipse.help/dtd/infoset.dtd
new file mode 100644
index 000000000..09988f36a
--- /dev/null
+++ b/org.eclipse.help/dtd/infoset.dtd
@@ -0,0 +1,10 @@
+
+<!ELEMENT infoset (view)* >
+<!ATTLIST infoset id ID #REQUIRED >
+<!ATTLIST infoset label CDATA #REQUIRED >
+<!ATTLIST infoset href CDATA #IMPLIED >
+<!ATTLIST infoset standalone (true | false) false #IMPLIED >
+
+<!ELEMENT infoview EMPTY>
+<!ATTLIST infoview id ID #REQUIRED >
+<!ATTLIST infoview label CDATA #IMPLIED >
diff --git a/org.eclipse.help/dtd/topics.dtd b/org.eclipse.help/dtd/topics.dtd
new file mode 100644
index 000000000..da901e3db
--- /dev/null
+++ b/org.eclipse.help/dtd/topics.dtd
@@ -0,0 +1,8 @@
+
+<!ELEMENT topics (topic)* ) >
+<!ATTLIST topics id ID #REQUIRED >
+
+<!ELEMENT topic (topic)* >
+<!ATTLIST topic id ID #IMPLIED >
+<!ATTLIST topic label CDATA #REQUIRED >
+<!ATTLIST topic href CDATA #IMPLIED >

Back to the top