Added Web Developer's Library
authortasneems@symbian.org
Fri, 19 Feb 2010 12:03:27 -0800
changeset 181 989784a53d63
parent 180 b79f2fbd4541
child 182 68a2eac79db2
Added Web Developer's Library
org.symbian.tools.wrttools.doc.WebDeveloper/.classpath
org.symbian.tools.wrttools.doc.WebDeveloper/.project
org.symbian.tools.wrttools.doc.WebDeveloper/.settings/org.eclipse.jdt.core.prefs
org.symbian.tools.wrttools.doc.WebDeveloper/META-INF/MANIFEST.MF
org.symbian.tools.wrttools.doc.WebDeveloper/build.properties
org.symbian.tools.wrttools.doc.WebDeveloper/lib/Web_Developers_Library_1.4.jar
org.symbian.tools.wrttools.doc.WebDeveloper/src/org/symbian/wrttools/doc/webdeveloper/Activator.java
org.symbian.wrttools.doc.WRTKit/.project
org.symbian.wrttools.doc.WRTKit/META-INF/MANIFEST.MF
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org.symbian.tools.wrttools.doc.WebDeveloper/.classpath	Fri Feb 19 12:03:27 2010 -0800
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry exported="true" kind="lib" path="lib/Web_Developers_Library_1.4.jar"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org.symbian.tools.wrttools.doc.WebDeveloper/.project	Fri Feb 19 12:03:27 2010 -0800
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.symbian.tools.wrttools.doc.WebDeveloper</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>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org.symbian.tools.wrttools.doc.WebDeveloper/.settings/org.eclipse.jdt.core.prefs	Fri Feb 19 12:03:27 2010 -0800
@@ -0,0 +1,8 @@
+#Fri Feb 19 11:36:03 PST 2010
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org.symbian.tools.wrttools.doc.WebDeveloper/META-INF/MANIFEST.MF	Fri Feb 19 12:03:27 2010 -0800
@@ -0,0 +1,10 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: WebDeveloper
+Bundle-SymbolicName: org.symbian.tools.wrttools.doc.WebDeveloper
+Bundle-Version: 1.0.0.qualifier
+Bundle-Activator: org.symbian.wrttools.doc.webdeveloper.Activator
+Require-Bundle: org.eclipse.ui,
+ org.eclipse.core.runtime
+Bundle-ActivationPolicy: lazy
+Bundle-RequiredExecutionEnvironment: JavaSE-1.6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org.symbian.tools.wrttools.doc.WebDeveloper/build.properties	Fri Feb 19 12:03:27 2010 -0800
@@ -0,0 +1,4 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+               .
Binary file org.symbian.tools.wrttools.doc.WebDeveloper/lib/Web_Developers_Library_1.4.jar has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org.symbian.tools.wrttools.doc.WebDeveloper/src/org/symbian/wrttools/doc/webdeveloper/Activator.java	Fri Feb 19 12:03:27 2010 -0800
@@ -0,0 +1,50 @@
+package org.symbian.wrttools.doc.webdeveloper;
+
+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.symbian.tools.wrttools.doc.WebDeveloper";
+
+	// 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;
+	}
+
+}
--- a/org.symbian.wrttools.doc.WRTKit/.project	Fri Feb 19 11:46:18 2010 -0800
+++ b/org.symbian.wrttools.doc.WRTKit/.project	Fri Feb 19 12:03:27 2010 -0800
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <projectDescription>
-	<name>org.symbian.wrttools.doc.WRTKit</name>
+	<name>org.symbian.tools.wrttools.doc.WRTKit</name>
 	<comment></comment>
 	<projects>
 	</projects>
--- a/org.symbian.wrttools.doc.WRTKit/META-INF/MANIFEST.MF	Fri Feb 19 11:46:18 2010 -0800
+++ b/org.symbian.wrttools.doc.WRTKit/META-INF/MANIFEST.MF	Fri Feb 19 12:03:27 2010 -0800
@@ -1,7 +1,7 @@
 Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: WRTKit
-Bundle-SymbolicName: org.symbian.wrttools.doc.WRTKit
+Bundle-SymbolicName: org.symbian.tools.wrttools.doc.WRTKit
 Bundle-Version: 1.0.0.qualifier
 Bundle-Activator: org.symbian.wrttools.lib.wrtkit.Activator
 Require-Bundle: org.eclipse.ui,