From a6806d43fb141b482e9dbdb5ce71705d821f3284 Mon Sep 17 00:00:00 2001
From: lmandel <lmandel>
Date: Tue, 22 Nov 2005 06:50:29 +0000
Subject: [PATCH] Updated WST ISV plugin. Corrected Javadoc build. Added plugin
 extension docs.

---
 docs/org.eclipse.wst.doc.isv/book.css         |   1 +
 docs/org.eclipse.wst.doc.isv/build.xml        |  17 +-
 docs/org.eclipse.wst.doc.isv/buildExtDocs.xml |  63 +++++
 .../javadoc.properties                        | 109 ++++++---
 docs/org.eclipse.wst.doc.isv/javadoc.xml      |   5 +-
 docs/org.eclipse.wst.doc.isv/notices.html     |  17 ++
 docs/org.eclipse.wst.doc.isv/plugin.xml       |  10 +
 docs/org.eclipse.wst.doc.isv/toc.xml          |  32 +--
 docs/org.eclipse.wst.doc.isv/toc_WST.xml      | 219 ++++++++++++++++++
 .../topics_Reference.xml                      |  11 +
 10 files changed, 411 insertions(+), 73 deletions(-)
 create mode 100644 docs/org.eclipse.wst.doc.isv/book.css
 create mode 100644 docs/org.eclipse.wst.doc.isv/buildExtDocs.xml
 create mode 100644 docs/org.eclipse.wst.doc.isv/notices.html
 create mode 100644 docs/org.eclipse.wst.doc.isv/toc_WST.xml
 create mode 100644 docs/org.eclipse.wst.doc.isv/topics_Reference.xml

diff --git a/docs/org.eclipse.wst.doc.isv/book.css b/docs/org.eclipse.wst.doc.isv/book.css
new file mode 100644
index 000000000..a4eeddae1
--- /dev/null
+++ b/docs/org.eclipse.wst.doc.isv/book.css
@@ -0,0 +1 @@
+@import "../PRODUCT_PLUGIN/book.css";
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.doc.isv/build.xml b/docs/org.eclipse.wst.doc.isv/build.xml
index a8153b6c5..675edfbb6 100644
--- a/docs/org.eclipse.wst.doc.isv/build.xml
+++ b/docs/org.eclipse.wst.doc.isv/build.xml
@@ -37,21 +37,22 @@
 		<antcall target="gather.bin.parts">
 			<param name="destination.temp.folder" value="${temp.folder}/"/>
 		</antcall>
-		<zip destfile="${plugin.destination}/org.eclipse.wst.doc.isv_0.7.0.jar" basedir="${temp.folder}/org.eclipse.wst.doc.isv_0.7.0" filesonly="false" whenempty="skip" update="false"/>
+		<zip destfile="${plugin.destination}/org.eclipse.wst.doc.isv_1.0.0.jar" basedir="${temp.folder}/org.eclipse.wst.doc.isv_1.0.0" filesonly="false" whenempty="skip" update="false"/>
 		<delete dir="${temp.folder}"/>
 	</target>
 
 	<target name="build.jars" depends="init" description="Build all the jars for the plug-in: org.eclipse.wst.doc.isv.">
 		<ant antfile="javadoc.xml" dir="${basedir}"/>
+		<ant antfile="buildExtDocs.xml" dir="${basedir}"/>
 	</target>
 
 	<target name="build.sources" depends="init">
 	</target>
 
 	<target name="gather.bin.parts" depends="init" if="destination.temp.folder">
-		<mkdir dir="${destination.temp.folder}/org.eclipse.wst.doc.isv_0.7.0"/>
-		<copy todir="${destination.temp.folder}/org.eclipse.wst.doc.isv_0.7.0" failonerror="true">
-			<fileset dir="${basedir}" includes="plugin.xml,plugin.properties,about.html,doc.zip,toc.xml,META-INF/,topics/"/>
+		<mkdir dir="${destination.temp.folder}/org.eclipse.wst.doc.isv_1.0.0"/>
+		<copy todir="${destination.temp.folder}/org.eclipse.wst.doc.isv_1.0.0" failonerror="true">
+			<fileset dir="${basedir}" includes="plugin.xml,plugin.properties,about.html,toc.xml,toc_WST.xml,topics_Reference.xml,META-INF/,html/,reference/,book.css,notices.html"/>
 		</copy>
 	</target>
 
@@ -61,7 +62,7 @@
 	<target name="gather.sources" depends="init" if="destination.temp.folder">
 		<mkdir dir="${destination.temp.folder}/org.eclipse.wst.doc.isv_0.7.0"/>
 		<copy todir="${destination.temp.folder}/org.eclipse.wst.doc.isv_0.7.0" failonerror="false">
-			<fileset dir="${basedir}" includes="plugin.xml,doc.zip,toc.xml,META-INF/,topics/"			/>
+			<fileset dir="${basedir}" includes="build.xml,build.properties,javadoc.properties,javadoc.xml,javadoc.xsl,api-overview/"/>
 		</copy>
 	</target>
 
@@ -69,8 +70,8 @@
 	</target>
 
 	<target name="clean" depends="init" description="Clean the plug-in: org.eclipse.wst.doc.isv of all the zips, jars and logs created.">
-		<delete file="${plugin.destination}/org.eclipse.wst.doc.isv_0.7.0.jar"/>
-		<delete file="${plugin.destination}/org.eclipse.wst.doc.isv_0.7.0.zip"/>
+		<delete file="${plugin.destination}/org.eclipse.wst.doc.isv_1.0.0.jar"/>
+		<delete file="${plugin.destination}/org.eclipse.wst.doc.isv_1.0.0.zip"/>
 		<delete dir="${temp.folder}"/>
 	</target>
 
@@ -95,7 +96,7 @@
 		<delete>
 			<fileset dir="${temp.folder}" includes="**/*.bin.log"			/>
 		</delete>
-		<zip destfile="${plugin.destination}/org.eclipse.wst.doc.isv_0.7.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+		<zip destfile="${plugin.destination}/org.eclipse.wst.doc.isv_1.0.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
 		<delete dir="${temp.folder}"/>
 	</target>
 
diff --git a/docs/org.eclipse.wst.doc.isv/buildExtDocs.xml b/docs/org.eclipse.wst.doc.isv/buildExtDocs.xml
new file mode 100644
index 000000000..3cd098d89
--- /dev/null
+++ b/docs/org.eclipse.wst.doc.isv/buildExtDocs.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="Build Extension Point Documentation" default="buildExtDocs" basedir=".">
+
+	<property name="outputDir" value="${basedir}/reference/extension-points"/>
+
+	<target name="buildExtDocs" depends="buildXMLExtDocs, buildCommonExtDocs, buildRDBExtDocs, buildServerExtDocs, buildWebExtDocs, buildWSExtDocs"/>
+	
+ 	<target name="buildXMLExtDocs">
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.sse.core/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.xml.core/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.sse.ui/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.xml.ui/plugin.xml" destination="${outputDir}" />
+ 	</target>
+ 	
+ 	<target name="buildCommonExtDocs">
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.command.env/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.emf/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.frameworks/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.modulecore/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.project.facet.core/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.uriresolver/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.internet.cache/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.validation/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.command.env.ui/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.frameworks.ui/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.navigator.views/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.navigator.workbench/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.project.facet.ui/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.snippets/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.ui/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.ui.properties/plugin.xml" destination="${outputDir}" />
+ 	</target>
+ 		
+ 	<target name="buildRDBExtDocs">
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.rdb.core/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.rdb.data.core/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.rdb.connection.ui/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.rdb.core.ui/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.rdb.data.ui/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.rdb.outputview/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.rdb.server.extensions/plugin.xml" destination="${outputDir}" />
+ 		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.rdb.server.ui/plugin.xml" destination="${outputDir}" />
+	</target>
+ 	
+	<target name="buildServerExtDocs">
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.internet.monitor.core/plugin.xml" destination="${outputDir}" />
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.server.core/plugin.xml" destination="${outputDir}" />
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.internet.monitor.ui/plugin.xml" destination="${outputDir}" />
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.server.ui/plugin.xml" destination="${outputDir}" />
+	</target>
+	
+	<target name="buildWebExtDocs">
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.common.emfworkbench.integration/plugin.xml" destination="${outputDir}" />
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.html.ui/plugin.xml" destination="${outputDir}" />
+	</target>
+
+	<target name="buildWSExtDocs">
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.ws/plugin.xml" destination="${outputDir}" />
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.wsdl/plugin.xml" destination="${outputDir}" />
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.wsdl.ui/plugin.xml" destination="${outputDir}" />
+		<pde.convertSchemaToHTML manifest="../org.eclipse.wst.wsdl.validation/plugin.xml" destination="${outputDir}" />
+	</target>
+</project>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.doc.isv/javadoc.properties b/docs/org.eclipse.wst.doc.isv/javadoc.properties
index 09d9fe101..f50dd5b85 100644
--- a/docs/org.eclipse.wst.doc.isv/javadoc.properties
+++ b/docs/org.eclipse.wst.doc.isv/javadoc.properties
@@ -1,7 +1,41 @@
 eclipse.home=${osgi.install.area}
 
 plugin.basedir=.
-plugin.sourcefolders=${buildDirectory}/wst-plugin-source
+plugin.sourcefolders=../org.eclipse.wst.common.modulecore/modulecore-src;\
+../org.eclipse.wst.common.frameworks/src;\
+../org.eclipse.wst.common.frameworks.ui/wtp_ui;\
+../org.eclipse.wst.common.emf/wtpemf;\
+../org.eclipse.wst.common.navigator.views/src-navigator;\
+../org.eclipse.wst.common.snippets/src;\
+../org.eclipse.wst.common.uriresolver/src;\
+../org.eclipse.wst.validation/validate_core;\
+../org.eclipse.wst.internet.monitor.core/monitorcore;\
+../org.eclipse.wst.internet.monitor.ui/monitorui;\
+../org.eclipse.wst.server.core/servercore;\
+../org.eclipse.wst.server.ui/serverui;\
+../org.eclipse.wst.css.core/src;\
+../org.eclipse.wst.css.ui/src;\
+../org.eclipse.wst.dtd.core/src;\
+../org.eclipse.wst.dtd.core/contentmodel;\
+../org.eclipse.wst.dtd.core/emfmodel;\
+../org.eclipse.wst.dtd.core/saxparser;\
+../org.eclipse.wst.dtd.ui/src;\
+../org.eclipse.wst.html.core/src;\
+../org.eclipse.wst.html.ui/src;\
+../org.eclipse.wst.javascript.core/src;\
+../org.eclipse.wst.javascript.ui/src;\
+../org.eclipse.wst.javascript.ui/src-commonui;\
+../org.eclipse.wst.sse.core/src;\
+../org.eclipse.wst.sse.core/src-encoding;\
+../org.eclipse.wst.sse.ui/src;\
+../org.eclipse.wst.sse.ui/src-extensions;\
+../org.eclipse.wst.xml.core/src;\
+../org.eclipse.wst.xml.core/src-contentmodel;\
+../org.eclipse.wst.xml.ui/src;\
+../org.eclipse.wst.xml.ui/src-multipage;\
+../org.eclipse.wst.xml.ui/src-wizards;\
+../org.eclipse.wst.wsdl/src-wsdl;\
+../org.eclipse.wst.wsdl/src-soap
 
 api.packages=org.eclipse.wst.common.componentcore,\
 org.eclipse.wst.common.componentcore.resources,\
@@ -10,6 +44,7 @@ org.eclipse.wst.common.frameworks.datamodel,\
 org.eclipse.wst.common.frameworks.datamodel.properties,\
 org.eclipse.wst.common.emf.utilities,\
 org.eclipse.wst.common.navigator.views,\
+org.eclipse.wst.common.uriresolver.internal.provisional,\
 org.eclipse.wst.validation.core,\
 org.eclipse.wst.internet.monitor.core,\
 org.eclipse.wst.internet.monitor.ui,\
@@ -88,9 +123,9 @@ classpath=../org.eclipse.wst.common.emf/bin;\
 ../org.eclipse.wst.xml.core/bin;\
 ../org.eclipse.wst.xml.ui/bin;\
 ../org.eclipse.wst.wsdl/bin;\
-${eclipse.home}/plugins/org.eclipse.ant.core_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ant.ui_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.compare_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.ant.core_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.ant.ui_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.compare_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.core.boot_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.core.commands_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.core.expressions_3.1.0.jar;\
@@ -98,7 +133,7 @@ ${eclipse.home}/plugins/org.eclipse.core.filebuffers_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.core.resources_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.core.resources.compatibility_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.core.resources.win32_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.core.runtime_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.core.runtime_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.core.runtime.compatibility_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.core.variables_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.debug.core_3.1.0.jar;\
@@ -106,49 +141,49 @@ ${eclipse.home}/plugins/org.eclipse.debug.ui_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.help_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.help.appserver_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.help.base_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.help.ui_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.help.ui_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.jdt_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.jdt.core_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.jdt.debug.ui_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.jdt.core_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.jdt.debug.ui_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.jdt.launching_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.jdt.ui_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.jface_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.jface.text_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.jdt.ui_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.jface_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.jface.text_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.ltk.core.refactoring_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ltk.ui.refactoring_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.osgi_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.osgi.services_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.osgi.util_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.ltk.ui.refactoring_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.osgi_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.osgi.services_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.osgi.util_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.pde_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.pde.core_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.pde.runtime_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.pde.ui_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.pde.core_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.pde.runtime_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.pde.ui_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.rcp_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.search_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.search_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.swt_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.swt.win32.win32.x86_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.team.core_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.team.cvs.core_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.swt.win32.win32.x86_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.team.core_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.team.cvs.core_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.team.cvs.ssh_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.team.cvs.ui_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.team.ui_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.text_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui.browser_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui.cheatsheets_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.team.cvs.ui_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.team.ui_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.text_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.ui_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.ui.browser_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.ui.cheatsheets_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.ui.console_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui.editors_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui.externaltools_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.ui.editors_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.ui.externaltools_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.ui.forms_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui.ide_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui.intro_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.ui.ide_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.ui.intro_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.ui.presentations.r21_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui.views_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.ui.views_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.ui.win32_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui.workbench_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.ui.workbench.texteditor_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.ui.workbench_3.1.1.jar;\
+${eclipse.home}/plugins/org.eclipse.ui.workbench.texteditor_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.update.configurator_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.update.core_3.1.0.jar;\
+${eclipse.home}/plugins/org.eclipse.update.core_3.1.1.jar;\
 ${eclipse.home}/plugins/org.eclipse.update.core.win32_3.1.0.jar;\
 ${eclipse.home}/plugins/org.eclipse.update.scheduler_3.1.0.jar;\
-${eclipse.home}/plugins/org.eclipse.update.ui_3.1.0.jar;
+${eclipse.home}/plugins/org.eclipse.update.ui_3.1.1.jar;
diff --git a/docs/org.eclipse.wst.doc.isv/javadoc.xml b/docs/org.eclipse.wst.doc.isv/javadoc.xml
index b46c5792d..9817c26c9 100644
--- a/docs/org.eclipse.wst.doc.isv/javadoc.xml
+++ b/docs/org.eclipse.wst.doc.isv/javadoc.xml
@@ -3,7 +3,7 @@
 <project default="main" basedir=".">
 
 	<property file="javadoc.properties" />
-	<property name="outputDir" value="${basedir}/output"/>
+	<property name="outputDir" value="${basedir}"/>
 
 	<target name="main" depends="prephtml, javadoc" description="Builds Plugin Javadoc" />
 
@@ -48,8 +48,5 @@
         	verbose="false"
         	failonerror="false"
 			/> 
-		<zip destfile="${basedir}/doc.zip">
-			<fileset dir="${outputDir}"/>
-		</zip>
     </target> 
 </project>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.doc.isv/notices.html b/docs/org.eclipse.wst.doc.isv/notices.html
new file mode 100644
index 000000000..e0cf4d1e7
--- /dev/null
+++ b/docs/org.eclipse.wst.doc.isv/notices.html
@@ -0,0 +1,17 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<LINK REL="STYLESHEET" HREF="book.css" CHARSET="ISO-8859-1"
+	TYPE="text/css">
+<title>Legal Notices</title>
+</head>
+<body>
+
+<h3><a NAME="Notices"></a>Notices</h3>
+<p>The material in this guide is Copyright (c) IBM Corporation and
+others 2000, 2005.</p>
+<p><a href="about.html">Terms and conditions regarding the use of this
+guide.</a></p>
+</body>
+</html>
diff --git a/docs/org.eclipse.wst.doc.isv/plugin.xml b/docs/org.eclipse.wst.doc.isv/plugin.xml
index 649b0d122..ff0a70266 100644
--- a/docs/org.eclipse.wst.doc.isv/plugin.xml
+++ b/docs/org.eclipse.wst.doc.isv/plugin.xml
@@ -19,4 +19,14 @@
 		<toc file="toc.xml" primary="true">
 		</toc>
 	</extension>
+
+<!--
+ =============================================================================  
+ Define Subsection Table of Contents
+ ============================================================================= 
+--> 
+	<extension point="org.eclipse.help.toc">
+		<toc file="topics_Reference.xml"/>
+		<toc file="toc_WST.xml"/>
+	</extension>
 </plugin>
diff --git a/docs/org.eclipse.wst.doc.isv/toc.xml b/docs/org.eclipse.wst.doc.isv/toc.xml
index 1f3a3b9ec..983f96450 100644
--- a/docs/org.eclipse.wst.doc.isv/toc.xml
+++ b/docs/org.eclipse.wst.doc.isv/toc.xml
@@ -5,30 +5,14 @@
 <!-- ============================================================================= -->
 
 <toc label="Web Standard Tools Developer Guide">
-	<topic label="Extending Web standard tools" href="topics/extendinginfo.html"/>
-	<topic label="Extending the Web tools">
-	<link toc="../org.eclipse.wst.webtools.doc.isv/web_toc.xml"/>
-	<!-- link toc="../org.eclipse.wst.webtools.javadoc/toc.xml/" -->
+<topic label="First Step: Checking Out"
+		href="html/check_out_tutorial.html" />
+	<topic label="Eclipse API Scanner" href="html/eclipse_scanner.html" />
+	<topic label="WST" href="html/plugin_descriptions_WST/wst.html">
+		<link toc="toc_WST.xml" />
 	</topic>
-	<topic label="Extending the xml tools">	
-	<link toc="../org.eclipse.wst.xml.doc.isv/xml_toc.xml"/>
-	<!-- link toc="org.eclipse.webtools.javadoc/toc.xml/" -->	
+	<topic label="Reference">
+		<link toc="topics_Reference.xml" />
 	</topic>
-	<topic label="Extending the editors">
-	<link toc="../org.eclipse.wst.sse.doc.isv/sse_toc.xml"/>
-	<!-- link toc="../org.eclipse.wst.sse.javadoc/toc.xml/" -->
-	</topic>
-	<topic label="Extending the tools for Web services">
-	<link toc="../org.eclipse.wst.webservice.doc.isv/webservice_toc.xml"/>
-	<!-- link toc="org.eclipse.wst.webservice.javadoc/toc.xml/" -->
-	</topic>
-	<topic label="Extending the server tools">
-	<link toc="../org.eclipse.wst.server.doc.isv/server_toc.xml"/>	
-	<!-- link toc="../org.eclipse.wst.server.javadoc/toc.xml/" -->
-	</topic>
-	<topic label="Extending the data tools">
-	<link toc="../org.eclipse.wst.rdb.doc.isv/isv_toc.xml"/>
-	<!-- link toc="../org.eclipse.wst.rdb.javadoc/toc.xml/" -->
-	</topic>
-	<topic label="API Reference" href="reference/api/overview-summary.html"/>
+	<topic label="Legal" href="notices.html" />
 </toc>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.doc.isv/toc_WST.xml b/docs/org.eclipse.wst.doc.isv/toc_WST.xml
new file mode 100644
index 000000000..ff68fb061
--- /dev/null
+++ b/docs/org.eclipse.wst.doc.isv/toc_WST.xml
@@ -0,0 +1,219 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<toc label="WST" href="html/plugin_descriptions_wst/wst.html">
+	<topic label="Assembly Tools"
+		href="html/plugin_descriptions_WST/assembly.html">
+		<topic label="org.eclipse.wst"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.html" />
+	</topic>
+	<topic label="Command/Common Tools"
+		href="html/plugin_descriptions_WST/common_command.html">
+		<topic label="org.eclipse.wst.command.env"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.command.env.html" />
+		<topic label="org.eclipse.wst.command.env.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.command.env.core.html" />
+		<topic label="org.eclipse.wst.command.env.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.command.env.ui.html" />
+		<topic label="org.eclipse.wst.common.dependencychecker"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.dependencychecker.html" />
+		<topic label="org.eclipse.wst.common.emf"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.emf.html" />
+		<topic label="org.eclipse.wst.common.emfworkbench.integration"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.emfworkbench.integration.html" />
+		<topic label="org.eclipse.wst.common.frameworks"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.frameworks.html" />
+		<topic label="org.eclipse.wst.common.frameworks.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.frameworks.ui.html" />
+		<topic label="org.eclipse.wst.common.migration"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.migration.html" />
+		<topic label="org.eclipse.wst.common.migration.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.migration.ui.html" />
+		<topic label="org.eclipse.wst.common.modulecore"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.modulecore.html" />
+		<topic label="org.eclipse.wst.common.navigator"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.navigator.html" />
+		<topic label="org.eclipse.wst.common.navigator.views"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.navigator.views.html" />
+		<topic label="org.eclipse.wst.common.navigator.workbench"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.navigator.workbench.html" />
+		<topic label="org.eclipse.wst.common.snippets"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.snippets.html" />
+		<topic label="org.eclipse.wst.common.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.ui.html" />
+		<topic label="org.eclipse.wst.common.ui.properties"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.ui.properties.html" />
+		<topic label="org.eclipse.wst.common.uriresolver"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.common.uriresolver.html" />
+	</topic>
+	<topic label="Cascading Style Sheets (CSS) Tools"
+		href="html/plugin_descriptions_WST/css.html">
+		<topic label="org.eclipse.wst.css.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.css.core.html" />
+		<topic label="org.eclipse.wst.css.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.css.ui.html" />
+	</topic>
+	<topic label="Document Type Definition (DTD) Tools"
+		href="html/plugin_descriptions_WST/dtd.html">
+		<topic label="org.eclipse.wst.dtd.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.dtd.core.html" />
+		<topic label="org.eclipse.wst.dtd.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.dtd.ui.html" />
+	</topic>
+	<topic label="HTML Tools"
+		href="html/plugin_descriptions_WST/html.html">
+		<topic label="org.eclipse.wst.html.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.html.core.html" />
+		<topic label="org.eclipse.wst.html.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.html.ui.html" />
+	</topic>
+	<topic label="Internet Tools"
+		href="html/plugin_descriptions_WST/internet.html">
+		<topic label="org.eclipse.wst.internet.cache"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.internet.cache.html" />
+		<topic label="org.eclipse.wst.internet.monitor.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.internet.monitor.core.html" />
+		<topic label="org.eclipse.wst.internet.monitor.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.internet.monitor.ui.html" />
+		<topic label="org.eclipse.wst.internet.proxy"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.internet.proxy.html" />
+	</topic>
+	<topic label="Javascript Tools"
+		href="html/plugin_descriptions_WST/js.html">
+		<topic label="org.eclipse.wst.javascript.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.javascript.core.html" />
+		<topic label="org.eclipse.wst.javascript.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.javascript.ui.html" />
+	</topic>
+	<topic label="Relational Database (RDB) Tools"
+		href="html/plugin_descriptions_WST/rdb.html">
+		<topic label="org.eclipse.wst.rdb.connection.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.connection.ui.html" />
+		<topic label="org.eclipse.wst.rdb.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.core.html" />
+		<topic label="org.eclipse.wst.rdb.core.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.core.ui.html" />
+		<topic label="org.eclipse.wst.rdb.data.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.data.core.html" />
+		<topic label="org.eclipse.wst.rdb.data.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.data.ui.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.db2.cloudscape"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.db2.cloudscape.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.db2.iseries"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.db2.iseries.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.db2.luw"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.db2.luw.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.db2.series"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.db2.series.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.derby"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.derby.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.informix"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.informix.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.mysql"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.mysql.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.oracle"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.oracle.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.sqlserver"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.sqlserver.html" />
+		<topic label="org.eclipse.wst.rdb.dbdefinition.sybase"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.dbdefinition.sybase.html" />
+		<topic label="org.eclipse.wst.rdb.derby"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.derby.html" />
+		<topic label="org.eclipse.wst.rdb.derby.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.derby.ui.html" />
+		<topic label="org.eclipse.wst.rdb.fe.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.fe.ui.html" />
+		<topic label="org.eclipse.wst.rdb.fe.ui.actions"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.fe.ui.actions.html" />
+		<topic label="org.eclipse.wst.rdb.models.dbdefinition"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.models.dbdefinition.html" />
+		<topic label="org.eclipse.wst.rdb.models.sql"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.models.sql.html" />
+		<topic label="org.eclipse.wst.rdb.models.sql.edit"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.models.sql.edit.html" />
+		<topic label="org.eclipse.wst.rdb.mysql"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.mysql.html" />
+		<topic label="org.eclipse.wst.rdb.outputview"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.outputview.html" />
+		<topic label="org.eclipse.wst.rdb.server.extensions"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.server.extensions.html" />
+		<topic label="org.eclipse.wst.rdb.server.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.server.ui.html" />
+		<topic label="org.eclipse.wst.rdb.sqleditor"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.sqleditor.html" />
+		<topic label="org.eclipse.wst.rdb.sqlscrapbook"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.rdb.sqlscrapbook.html" />
+	</topic>
+	<topic label="Server Tools"
+		href="html/plugin_descriptions_wst/server.html">
+		<topic label="org.eclipse.wst.server.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.server.core.html" />
+		<topic label="org.eclipse.wst.server.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.server.ui.html" />
+		<topic label="org.eclipse.wst.server.util"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.server.util.html" />
+	</topic>
+	<topic label="Structured Source Editor (SSE) Tools"
+		href="html/plugin_descriptions_WST/sse.html">
+		<topic label="org.eclipse.wst.sse.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.sse.core.html" />
+		<topic label="org.eclipse.wst.sse.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.sse.ui.html" />
+	</topic>
+	<topic label="Validation Tools"
+		href="html/plugin_descriptions_WST/validation.html">
+		<topic label="org.eclipse.wst.validation"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.validation.html" />
+		<topic label="org.eclipse.wst.validation.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.validation.ui.html" />
+	</topic>
+	<topic label="Web Tools"
+		href="html/plugin_descriptions_WST/web.html">
+		<topic label="org.eclipse.wst.web"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.web.html" />
+		<topic label="org.eclipse.wst.web.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.web.ui.html" />
+	</topic>
+	<topic label="Web Services (WS), WSDL and WS-I Tools"
+		href="html/plugin_descriptions_WST/ws.html">
+		<topic label="org.eclipse.wst.ws"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.ws.html" />
+		<topic label="org.eclipse.wst.ws.explorer"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.ws.explorer.html" />
+		<topic label="org.eclipse.wst.ws.parser"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.ws.parser.html" />
+		<topic label="org.eclipse.wst.ws.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.ws.ui.html" />
+		<topic label="org.eclipse.wst.wsdl"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.wsdl.html" />
+		<topic label="org.eclipse.wst.wsdl.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.wsdl.ui.html" />
+		<topic label="org.eclipse.wst.wsdl.validation"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.wsdl.validation.html" />
+		<topic label="org.eclipse.wst.wsi"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.wsi.html" />
+		<topic label="org.eclipse.wst.wsi.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.wsi.ui.html" />
+	</topic>
+	<topic label="XML Tools &amp; XML Schema Definition (XSD) Tools"
+		href="html/plugin_descriptions_WST/xml.html">
+		<topic label="org.eclipse.wst.xml.catalog"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.xml.catalog.html" />
+		<topic label="org.eclipse.wst.xml.catalog.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.xml.catalog.ui.html" />
+		<topic label="org.eclipse.wst.xml.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.xml.core.html" />
+		<topic label="org.eclipse.wst.xml.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.xml.ui.html" />
+		<topic label="org.eclipse.wst.xml.uriresolver"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.xml.uriresolver.html" />
+		<topic label="org.eclipse.wst.xml.uriresolver.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.xml.uriresolver.ui.html" />
+		<topic label="org.eclipse.wst.xsd.contentmodel"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.xsd.contentmodel.html" />
+		<topic label="org.eclipse.wst.xsd.core"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.xsd.core.html" />
+		<topic label="org.eclipse.wst.xsd.ui"
+			href="html/plugin_descriptions_WST/org.eclipse.wst.xsd.ui.html" />
+	</topic>
+</toc>
\ No newline at end of file
diff --git a/docs/org.eclipse.wst.doc.isv/topics_Reference.xml b/docs/org.eclipse.wst.doc.isv/topics_Reference.xml
new file mode 100644
index 000000000..52a532f8d
--- /dev/null
+++ b/docs/org.eclipse.wst.doc.isv/topics_Reference.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+<!-- ============================================================================= -->
+<!-- Define topics for the references                                              -->
+<!-- ============================================================================= -->
+<toc label="Reference">
+	<topic label="API Reference" href="reference/api/overview-summary.html">
+	</topic>
+	<topic label="Extension Points Reference" href="reference/extension-points/index.html">
+	</topic>
+</toc>
\ No newline at end of file
-- 
GitLab