intial load for xsl documentation
diff --git a/docs/org.eclipse.wst.xsl.doc/.classpath b/docs/org.eclipse.wst.xsl.doc/.classpath
new file mode 100644
index 0000000..ce73933
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/.classpath
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/docs/org.eclipse.wst.xsl.doc/.project b/docs/org.eclipse.wst.xsl.doc/.project
new file mode 100644
index 0000000..164ae3e
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/.project
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.wst.xsl.doc</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <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>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
diff --git a/docs/org.eclipse.wst.xsl.doc/.settings/org.eclipse.jdt.core.prefs b/docs/org.eclipse.wst.xsl.doc/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 0000000..f843f0f
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,7 @@
+#Mon Mar 10 19:41:50 GMT-05:00 2008
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
+org.eclipse.jdt.core.compiler.compliance=1.4
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
+org.eclipse.jdt.core.compiler.source=1.3
diff --git a/docs/org.eclipse.wst.xsl.doc/META-INF/MANIFEST.MF b/docs/org.eclipse.wst.xsl.doc/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..cc39b45
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/META-INF/MANIFEST.MF
@@ -0,0 +1,10 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Doc Plug-in
+Bundle-SymbolicName: org.eclipse.wst.xsl.doc; singleton:=true
+Bundle-Version: 1.0.0
+Bundle-Activator: org.eclipse.wst.xsl.doc.Activator
+Require-Bundle: org.eclipse.ui,
+ org.eclipse.core.runtime
+Bundle-ActivationPolicy: lazy
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/docs/org.eclipse.wst.xsl.doc/build.properties b/docs/org.eclipse.wst.xsl.doc/build.properties
new file mode 100644
index 0000000..fc53675
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/build.properties
@@ -0,0 +1,7 @@
+source.. = src/
+output.. = bin/
+bin.includes = plugin.xml,\
+ META-INF/,\
+ .,\
+ html/,\
+ *.xml
diff --git a/docs/org.eclipse.wst.xsl.doc/docbook/editor/editor.xml b/docs/org.eclipse.wst.xsl.doc/docbook/editor/editor.xml
new file mode 100644
index 0000000..de954e1
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/docbook/editor/editor.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="http://www.docbook.org/xsd/4.5/docbook.xsd">
+ <title>XSL Editing</title>
+ <para>
+ The XSL Tooling plugins extend the ability of the Web Standard Tools XML
+ editor. This extension adds specific support and functionality for working
+ with and debugging XSL files.
+ </para>
+ <section>
+ <title>Content Assist</title>
+ <para>
+ XSL Tooling extends the existing content assistance support of the XML
+ Editor to provide content assistance for several XSL namespace attributes.
+ The content assistance provided covers the available XPath statements as
+ defined in the XPath Tempalates preference page.
+ </para>
+ <para>
+ The elements and attributes that have content assist available are as follows:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <emphasis role="bold">template</emphasis> - The template element has several content assist
+ options available for the <emphasis>match</emphasis>, <emphasis>name</emphasis>, and
+ <emphasis>mode</emphasis> attributes.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis role="bold">variable</emphasis> and <emphasis
+ role="bold">param</emphasis> - The variable and param elements have content assist
+ for xpath, axis, parmaters and variables that have already been predefined when using the optional
+ <emphasis>select</emphasis> attribute.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis role="bold">if</emphasis> and <emphasis role="bold">when</emphasis> - The
+ if and when elements have content assist for the <emphasis>test</emphasis> attribute.
+ This content assistance is available for all paramaters and variables that are in
+ scope, as well as any available xpath or axis statement.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis role="bold">apply-template</emphasis> - The apply template has content
+ assistance for both the <emphasis>mode</emphasis> and <emphasis>select</emphasis>
+ attributes.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+</chapter>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/docbook/launching/launching.xml b/docs/org.eclipse.wst.xsl.doc/docbook/launching/launching.xml
new file mode 100644
index 0000000..995201a
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/docbook/launching/launching.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.docbook.org/xsd/4.5/docbook.xsd">
+ <title></title>
+ <para></para>
+</chapter>
+
diff --git a/docs/org.eclipse.wst.xsl.doc/docbook/preferences/preferences.xml b/docs/org.eclipse.wst.xsl.doc/docbook/preferences/preferences.xml
new file mode 100644
index 0000000..1b7c534
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/docbook/preferences/preferences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.docbook.org/xsd/4.5/docbook.xsd">
+ <title>XSL Tooling Preferences</title>
+ <para></para>
+</chapter>
+
diff --git a/docs/org.eclipse.wst.xsl.doc/html/gettingstarted/maintopic.html b/docs/org.eclipse.wst.xsl.doc/html/gettingstarted/maintopic.html
new file mode 100644
index 0000000..a476078
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/gettingstarted/maintopic.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>Main Topic</title>
+</head>
+
+<body>
+<h1>Main Topic</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/html/gettingstarted/subtopic.html b/docs/org.eclipse.wst.xsl.doc/html/gettingstarted/subtopic.html
new file mode 100644
index 0000000..8a61c50
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/gettingstarted/subtopic.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>Sub Topic</title>
+</head>
+
+<body>
+<h1>Sub Topic</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/html/gettingstarted/subtopic2.html b/docs/org.eclipse.wst.xsl.doc/html/gettingstarted/subtopic2.html
new file mode 100644
index 0000000..86bcbf9
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/gettingstarted/subtopic2.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>Sub Topic 2</title>
+</head>
+
+<body>
+<h1>Sub Topic 2</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/html/reference/maintopic.html b/docs/org.eclipse.wst.xsl.doc/html/reference/maintopic.html
new file mode 100644
index 0000000..a476078
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/reference/maintopic.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>Main Topic</title>
+</head>
+
+<body>
+<h1>Main Topic</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/html/reference/subtopic.html b/docs/org.eclipse.wst.xsl.doc/html/reference/subtopic.html
new file mode 100644
index 0000000..8a61c50
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/reference/subtopic.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>Sub Topic</title>
+</head>
+
+<body>
+<h1>Sub Topic</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/html/reference/subtopic2.html b/docs/org.eclipse.wst.xsl.doc/html/reference/subtopic2.html
new file mode 100644
index 0000000..86bcbf9
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/reference/subtopic2.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>Sub Topic 2</title>
+</head>
+
+<body>
+<h1>Sub Topic 2</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/html/samples/maintopic.html b/docs/org.eclipse.wst.xsl.doc/html/samples/maintopic.html
new file mode 100644
index 0000000..a476078
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/samples/maintopic.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>Main Topic</title>
+</head>
+
+<body>
+<h1>Main Topic</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/html/samples/subtopic.html b/docs/org.eclipse.wst.xsl.doc/html/samples/subtopic.html
new file mode 100644
index 0000000..8a61c50
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/samples/subtopic.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>Sub Topic</title>
+</head>
+
+<body>
+<h1>Sub Topic</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/html/samples/subtopic2.html b/docs/org.eclipse.wst.xsl.doc/html/samples/subtopic2.html
new file mode 100644
index 0000000..86bcbf9
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/samples/subtopic2.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>Sub Topic 2</title>
+</head>
+
+<body>
+<h1>Sub Topic 2</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/html/toc.html b/docs/org.eclipse.wst.xsl.doc/html/toc.html
new file mode 100644
index 0000000..326f0a9
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/html/toc.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>Table of Contents</title>
+</head>
+
+<body>
+<h1>Table of Contents</h1>
+Please enter your text here.
+</body>
+</html>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.doc/plugin.xml b/docs/org.eclipse.wst.xsl.doc/plugin.xml
new file mode 100644
index 0000000..128b9a4
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/plugin.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.2"?>
+<plugin>
+
+ <extension
+ point="org.eclipse.help.toc">
+ <toc
+ file="toc.xml"
+ primary="true">
+ </toc>
+ <toc
+ file="tocgettingstarted.xml">
+ </toc>
+ <toc
+ file="tocreference.xml">
+ </toc>
+ <toc
+ file="tocsamples.xml">
+ </toc>
+ </extension>
+
+</plugin>
diff --git a/docs/org.eclipse.wst.xsl.doc/src/org/eclipse/wst/xsl/doc/Activator.java b/docs/org.eclipse.wst.xsl.doc/src/org/eclipse/wst/xsl/doc/Activator.java
new file mode 100644
index 0000000..56d4d33
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/src/org/eclipse/wst/xsl/doc/Activator.java
@@ -0,0 +1,61 @@
+package org.eclipse.wst.xsl.doc;
+
+import org.eclipse.jface.resource.ImageDescriptor;
+import org.eclipse.ui.plugin.AbstractUIPlugin;
+import org.osgi.framework.BundleContext;
+
+/**
+ * The activator class controls the plug-in life cycle
+ */
+public class Activator extends AbstractUIPlugin {
+
+ // The plug-in ID
+ public static final String PLUGIN_ID = "org.eclipse.wst.xsl.doc";
+
+ // The shared instance
+ private static Activator plugin;
+
+ /**
+ * The constructor
+ */
+ public Activator() {
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
+ */
+ public void start(BundleContext context) throws Exception {
+ super.start(context);
+ plugin = this;
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
+ */
+ public void stop(BundleContext context) throws Exception {
+ plugin = null;
+ super.stop(context);
+ }
+
+ /**
+ * Returns the shared instance
+ *
+ * @return the shared instance
+ */
+ public static Activator getDefault() {
+ return plugin;
+ }
+
+ /**
+ * Returns an image descriptor for the image file at the given
+ * plug-in relative path
+ *
+ * @param path the path
+ * @return the image descriptor
+ */
+ public static ImageDescriptor getImageDescriptor(String path) {
+ return imageDescriptorFromPlugin(PLUGIN_ID, path);
+ }
+}
diff --git a/docs/org.eclipse.wst.xsl.doc/toc.xml b/docs/org.eclipse.wst.xsl.doc/toc.xml
new file mode 100644
index 0000000..13bbc01
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/toc.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="Sample Table of Contents" topic="html/toc.html">
+ <topic label="Getting Started">
+ <anchor id="gettingstarted"/>
+ </topic>
+ <topic label="Reference">
+ <anchor id="reference"/>
+ </topic>
+ <topic label="Samples">
+ <anchor id="samples"/>
+ </topic>
+</toc>
diff --git a/docs/org.eclipse.wst.xsl.doc/tocgettingstarted.xml b/docs/org.eclipse.wst.xsl.doc/tocgettingstarted.xml
new file mode 100644
index 0000000..38f27e0
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/tocgettingstarted.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="Getting Started" link_to="toc.xml#gettingstarted">
+ <topic label="Main Topic" href="html/gettingstarted/maintopic.html">
+ <topic label="Sub Topic" href="html/gettingstarted/subtopic.html" />
+ </topic>
+ <topic label="Main Topic 2">
+ <topic label="Sub Topic 2" href="html/gettingstarted/subtopic2.html" />
+ </topic>
+</toc>
diff --git a/docs/org.eclipse.wst.xsl.doc/tocreference.xml b/docs/org.eclipse.wst.xsl.doc/tocreference.xml
new file mode 100644
index 0000000..660cdec
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/tocreference.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="Reference" link_to="toc.xml#reference">
+ <topic label="Main Topic" href="html/reference/maintopic.html">
+ <topic label="Sub Topic" href="html/reference/subtopic.html" />
+ </topic>
+ <topic label="Main Topic 2">
+ <topic label="Sub Topic 2" href="html/reference/subtopic2.html" />
+ </topic>
+</toc>
diff --git a/docs/org.eclipse.wst.xsl.doc/tocsamples.xml b/docs/org.eclipse.wst.xsl.doc/tocsamples.xml
new file mode 100644
index 0000000..ddfa61e
--- /dev/null
+++ b/docs/org.eclipse.wst.xsl.doc/tocsamples.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="Samples" link_to="toc.xml#samples">
+ <topic label="Main Topic" href="html/samples/maintopic.html">
+ <topic label="Sub Topic" href="html/samples/subtopic.html" />
+ </topic>
+ <topic label="Main Topic 2">
+ <topic label="Sub Topic 2" href="html/samples/subtopic2.html" />
+ </topic>
+</toc>