Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpnehrer2005-02-04 22:08:37 +0000
committerpnehrer2005-02-04 22:08:37 +0000
commita1f071d67bc7c3d52e1c6a5b12d6323f2e965bc7 (patch)
treeda4bda278ca0cae7db3bbb8e2789329aee0a24c7
parentd4bb64890b2492682e6352e3a3a1984bfcfc3e23 (diff)
downloadorg.eclipse.ecf-a1f071d67bc7c3d52e1c6a5b12d6323f2e965bc7.tar.gz
org.eclipse.ecf-a1f071d67bc7c3d52e1c6a5b12d6323f2e965bc7.tar.xz
org.eclipse.ecf-a1f071d67bc7c3d52e1c6a5b12d6323f2e965bc7.zip
Initial check-in.
-rw-r--r--doc/bundles/org.eclipse.ecf.doc/.project22
-rw-r--r--doc/bundles/org.eclipse.ecf.doc/build.properties3
-rw-r--r--doc/bundles/org.eclipse.ecf.doc/html/index.html13
-rw-r--r--doc/bundles/org.eclipse.ecf.doc/plugin.xml33
-rw-r--r--doc/bundles/org.eclipse.ecf.doc/toc.xml17
-rw-r--r--doc/bundles/org.eclipse.ecf.doc/tocconcepts.xml5
-rw-r--r--doc/bundles/org.eclipse.ecf.doc/tocgettingstarted.xml5
-rw-r--r--doc/bundles/org.eclipse.ecf.doc/tocreference.xml5
-rw-r--r--doc/bundles/org.eclipse.ecf.doc/tocsamples.xml5
9 files changed, 108 insertions, 0 deletions
diff --git a/doc/bundles/org.eclipse.ecf.doc/.project b/doc/bundles/org.eclipse.ecf.doc/.project
new file mode 100644
index 000000000..ea84e6059
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.doc/.project
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.ecf.doc</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ </natures>
+</projectDescription>
diff --git a/doc/bundles/org.eclipse.ecf.doc/build.properties b/doc/bundles/org.eclipse.ecf.doc/build.properties
new file mode 100644
index 000000000..e84f9f03c
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.doc/build.properties
@@ -0,0 +1,3 @@
+bin.includes = plugin.xml,\
+ html/,\
+ *.xml
diff --git a/doc/bundles/org.eclipse.ecf.doc/html/index.html b/doc/bundles/org.eclipse.ecf.doc/html/index.html
new file mode 100644
index 000000000..7a230ef50
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.doc/html/index.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <title>Eclipse Communication Framework</title>
+</head>
+
+<body>
+<h1>Eclipse Communication Framework</h1>
+<p>TBD</p>
+</body>
+</html> \ No newline at end of file
diff --git a/doc/bundles/org.eclipse.ecf.doc/plugin.xml b/doc/bundles/org.eclipse.ecf.doc/plugin.xml
new file mode 100644
index 000000000..d683d740b
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.doc/plugin.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<plugin
+ id="org.eclipse.ecf.doc"
+ name="ECF Documentation Plug-in"
+ version="1.0.0"
+ provider-name="Eclipse.org">
+
+ <requires>
+ <import plugin="org.eclipse.help"/>
+ </requires>
+
+ <extension
+ point="org.eclipse.help.toc">
+ <toc
+ file="toc.xml"
+ primary="true">
+ </toc>
+ <toc
+ file="tocconcepts.xml">
+ </toc>
+ <toc
+ file="tocgettingstarted.xml">
+ </toc>
+ <toc
+ file="tocreference.xml">
+ </toc>
+ <toc
+ file="tocsamples.xml">
+ </toc>
+ </extension>
+
+</plugin>
diff --git a/doc/bundles/org.eclipse.ecf.doc/toc.xml b/doc/bundles/org.eclipse.ecf.doc/toc.xml
new file mode 100644
index 000000000..0256ae9fe
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.doc/toc.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="Eclipse Communication Framework" topic="html/index.html">
+ <topic label="Getting Started">
+ <anchor id="gettingstarted"/>
+ </topic>
+ <topic label="Concepts">
+ <anchor id="concepts"/>
+ </topic>
+ <topic label="Reference">
+ <anchor id="reference"/>
+ </topic>
+ <topic label="Samples">
+ <anchor id="samples"/>
+ </topic>
+</toc>
diff --git a/doc/bundles/org.eclipse.ecf.doc/tocconcepts.xml b/doc/bundles/org.eclipse.ecf.doc/tocconcepts.xml
new file mode 100644
index 000000000..38e5611aa
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.doc/tocconcepts.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="Concepts" link_to="toc.xml#concepts">
+</toc>
diff --git a/doc/bundles/org.eclipse.ecf.doc/tocgettingstarted.xml b/doc/bundles/org.eclipse.ecf.doc/tocgettingstarted.xml
new file mode 100644
index 000000000..36ed6e5df
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.doc/tocgettingstarted.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="Getting Started" link_to="toc.xml#gettingstarted">
+</toc>
diff --git a/doc/bundles/org.eclipse.ecf.doc/tocreference.xml b/doc/bundles/org.eclipse.ecf.doc/tocreference.xml
new file mode 100644
index 000000000..7babd0319
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.doc/tocreference.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="Reference" link_to="toc.xml#reference">
+</toc>
diff --git a/doc/bundles/org.eclipse.ecf.doc/tocsamples.xml b/doc/bundles/org.eclipse.ecf.doc/tocsamples.xml
new file mode 100644
index 000000000..e90c67c86
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.doc/tocsamples.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="Samples" link_to="toc.xml#samples">
+</toc>

Back to the top