Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/org.eclipse.cdt.doc.user/.project11
-rw-r--r--doc/org.eclipse.cdt.doc.user/contextHelp.xml8
-rw-r--r--doc/org.eclipse.cdt.doc.user/doc.zipbin0 -> 15041 bytes
-rw-r--r--doc/org.eclipse.cdt.doc.user/plugin.properties4
-rw-r--r--doc/org.eclipse.cdt.doc.user/plugin.xml28
-rw-r--r--doc/org.eclipse.cdt.doc.user/toc.xml15
6 files changed, 66 insertions, 0 deletions
diff --git a/doc/org.eclipse.cdt.doc.user/.project b/doc/org.eclipse.cdt.doc.user/.project
new file mode 100644
index 00000000000..d137829266b
--- /dev/null
+++ b/doc/org.eclipse.cdt.doc.user/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.cdt.doc.user</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
diff --git a/doc/org.eclipse.cdt.doc.user/contextHelp.xml b/doc/org.eclipse.cdt.doc.user/contextHelp.xml
new file mode 100644
index 00000000000..c977043dc1f
--- /dev/null
+++ b/doc/org.eclipse.cdt.doc.user/contextHelp.xml
@@ -0,0 +1,8 @@
+<contexts>
+<context id ="default_cs_help">
+ <description>Click below to see help.</description>
+ <topic href="default_cs_help.htm"
+ label="Default Context Sensitive Help"/>
+</context>
+
+</contexts>
diff --git a/doc/org.eclipse.cdt.doc.user/doc.zip b/doc/org.eclipse.cdt.doc.user/doc.zip
new file mode 100644
index 00000000000..f0999231f1e
--- /dev/null
+++ b/doc/org.eclipse.cdt.doc.user/doc.zip
Binary files differ
diff --git a/doc/org.eclipse.cdt.doc.user/plugin.properties b/doc/org.eclipse.cdt.doc.user/plugin.properties
new file mode 100644
index 00000000000..d08bb2dc56d
--- /dev/null
+++ b/doc/org.eclipse.cdt.doc.user/plugin.properties
@@ -0,0 +1,4 @@
+<?xml version="1.0"?>
+<csHelp>
+ <csHelpTopic viewID="default_help" helpTopic="com.rational.xtools.umlvisualizer.doc.default_cs_help"/>
+</csHelp>
diff --git a/doc/org.eclipse.cdt.doc.user/plugin.xml b/doc/org.eclipse.cdt.doc.user/plugin.xml
new file mode 100644
index 00000000000..0e3b35b210b
--- /dev/null
+++ b/doc/org.eclipse.cdt.doc.user/plugin.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ================================================= -->
+<!-- This is the plugin for declaring the help -->
+<!-- contributions of a doc component plugin. -->
+<!-- ================================================= -->
+
+<plugin
+
+ name = "C/C++ Development User Guide"
+ id = "org.eclipse.cdt.doc.user"
+ version = "1.0"
+ provider-name = "Rational Software: IBM Software Group">
+ <!-- Configure the help contribution for this plugin -->
+ <!-- This part should be in a documentation plugin -->
+ <extension point="org.eclipse.help.toc">
+ <toc file="toc.xml" primary="true" />
+ </extension>
+ <extension point="org.eclipse.help.contexts">
+ <contexts file="contextHelp.xml" plugin="org.eclipse.cdt.ui"/>
+ </extension>
+ <extension point="org.eclipse.help.contexts">
+ <contexts file="contextHelp.xml" plugin="org.eclipse.debug.ui"/>
+ </extension>
+ <extension point="org.eclipse.help.contexts">
+ <contexts file="contextHelp.xml" plugin="org.eclipse.cdt.debug.ui"/>
+ </extension>
+</plugin>
diff --git a/doc/org.eclipse.cdt.doc.user/toc.xml b/doc/org.eclipse.cdt.doc.user/toc.xml
new file mode 100644
index 00000000000..f1f21851250
--- /dev/null
+++ b/doc/org.eclipse.cdt.doc.user/toc.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+<!-- Defines topics that will be inserted under the C/C++ Development User Guide menu-->
+
+<toc id="cdt" label="C/C++ Development User Guide" topic="cdt_o_home.htm">
+ <topic label="Tutorial" href="cdt_o_tutorial.htm">
+ <topic label="Automatically building your project" href="cdt_w_autobuild.htm"/>
+ <topic label="Creating your project" href="cdt_w_newproj.htm"/>
+ <topic label="Creating your C++ file" href="cdt_w_newcpp.htm"/>
+ <topic label="Creating your make file" href="cdt_w_newmake.htm"/>
+ <topic label="Building your project" href="cdt_w_build.htm"/>
+ <topic label="Debugging your project" href="cdt_w_debug.htm"/>
+ </topic>
+ <topic label="What's new" href="cdt_o_whatnew.htm"/>
+</toc>

Back to the top