You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2007/12/27 18:45:01 UTC

svn commit: r607099 [18/25] - in /directory/studio/branches/studio-eclipse-3.3: dependencies/eclipse/3.3.1/ dependencies/eclipse/3.3.1/features/ dependencies/eclipse/3.3.1/features/org.eclipse.rcp_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/ dependen...

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.ui_3.3.1.M20070910-0800b/schema/workingSets.exsd
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.ui_3.3.1.M20070910-0800b/schema/workingSets.exsd?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.ui_3.3.1.M20070910-0800b/schema/workingSets.exsd (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.ui_3.3.1.M20070910-0800b/schema/workingSets.exsd Thu Dec 27 09:44:07 2007
@@ -0,0 +1,182 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Schema file written by PDE -->
+<schema targetNamespace="org.eclipse.ui">
+<annotation>
+      <appInfo>
+         <meta.schema plugin="org.eclipse.ui" id="workingSets" name="Working Sets"/>
+      </appInfo>
+      <documentation>
+         This extension point is used to define a working set wizard page. Working sets contain a number of elements of type IAdaptable and can be used to group elements for presentation to the user or for operations on a set of elements. A working set wizard page is used to create and edit working sets that contain elements of a specific type.
+&lt;p&gt;
+To select a working set the user is presented with a list of working sets that exist in the workbench. From that list a working set can be selected and edited using one of the wizard pages defined using this extension point. An existing working set is always edited with the wizard page that was used to create it or with the default resource based working set page if the original page is not available.
+&lt;p&gt;
+A new working set can be defined by the user from the same working set selection dialog. When a new working set is defined, the plugin provided wizard page is preceded by a page listing all available working set types. This list is made up of the name attribute values of each working set extension. 
+&lt;p&gt;
+Views provide a user interface to open the working set selection dialog and must store the selected working set.
+&lt;p&gt;
+The resource navigator uses a working set to filter elements from the navigator view. Only parents and children of working set elements are shown in the view, in addition to the working set elements themselves.
+      </documentation>
+   </annotation>
+
+   <element name="extension">
+      <complexType>
+         <sequence>
+            <element ref="workingSet" minOccurs="0" maxOccurs="unbounded"/>
+         </sequence>
+         <attribute name="point" type="string" use="required">
+            <annotation>
+               <documentation>
+                  a fully qualified identifier of the target extension point
+               </documentation>
+            </annotation>
+         </attribute>
+         <attribute name="id" type="string">
+            <annotation>
+               <documentation>
+                  an optional identifier of the extension instance
+               </documentation>
+            </annotation>
+         </attribute>
+         <attribute name="name" type="string">
+            <annotation>
+               <documentation>
+                  an optional name of the extension instance
+               </documentation>
+               <appInfo>
+                  <meta.attribute translatable="true"/>
+               </appInfo>
+            </annotation>
+         </attribute>
+      </complexType>
+   </element>
+
+   <element name="workingSet">
+      <complexType>
+         <sequence minOccurs="0" maxOccurs="unbounded">
+         </sequence>
+         <attribute name="id" type="string" use="required">
+            <annotation>
+               <documentation>
+                  a unique name that can be used to identify this working set dialog.
+               </documentation>
+            </annotation>
+         </attribute>
+         <attribute name="name" type="string" use="required">
+            <annotation>
+               <documentation>
+                  the name of the element type that will be displayed and edited by the working set page. This should be a descriptive name like &quot;Resource&quot; or &quot;Java Element&quot;.
+               </documentation>
+               <appInfo>
+                  <meta.attribute translatable="true"/>
+               </appInfo>
+            </annotation>
+         </attribute>
+         <attribute name="icon" type="string">
+            <annotation>
+               <documentation>
+                  the relative path of an image that will be displayed in the working set type list on the first page of the working set creation wizard as well as in the working set selection dialog.
+               </documentation>
+               <appInfo>
+                  <meta.attribute kind="resource"/>
+               </appInfo>
+            </annotation>
+         </attribute>
+         <attribute name="pageClass" type="string">
+            <annotation>
+               <documentation>
+                  the fully qualified name of a Java class implementing &lt;samp&gt;org.eclipse.ui.dialogs.IWorkingSetPage&lt;/samp&gt;.
+               </documentation>
+               <appInfo>
+                  <meta.attribute kind="java" basedOn="org.eclipse.jface.wizard.WizardPage:org.eclipse.ui.dialogs.IWorkingSetPage"/>
+               </appInfo>
+            </annotation>
+         </attribute>
+         <attribute name="updaterClass" type="string">
+            <annotation>
+               <documentation>
+                  the fully qualified name of a Java class implementing &lt;samp&gt;org.eclipse.ui.IWorkingSetUpdater&lt;/samp&gt;.  Use of this attribute will not cause eager plug-in activation.  This class will only be instantiated when the declaring bundle is otherwise activated.
+               </documentation>
+               <appInfo>
+                  <meta.attribute kind="java" basedOn="org.eclipse.ui.IWorkingSetUpdater"/>
+               </appInfo>
+            </annotation>
+         </attribute>
+         <attribute name="elementAdapterClass" type="string">
+            <annotation>
+               <documentation>
+                  the fully qualified name of a Java class implementing &lt;samp&gt;org.eclipse.ui.IWorkingSetElementAdapter&lt;/samp&gt;.  Use of this attribute will not cause eager plug-in activation.  This class will only be instantiated when the declaring bundle is otherwise activated.
+               </documentation>
+               <appInfo>
+                  <meta.attribute kind="java" basedOn="org.eclipse.ui.IWorkingSetElementAdapter"/>
+               </appInfo>
+            </annotation>
+         </attribute>
+      </complexType>
+   </element>
+
+   <annotation>
+      <appInfo>
+         <meta.section type="since"/>
+      </appInfo>
+      <documentation>
+         Release 2.0
+      </documentation>
+   </annotation>
+
+   <annotation>
+      <appInfo>
+         <meta.section type="examples"/>
+      </appInfo>
+      <documentation>
+         Following is an example of how the resource working set dialog extension is defined to display and edit generic IResource elements: 
+&lt;p&gt;
+&lt;pre&gt;
+    &lt;extension point=&quot;org.eclipse.ui.workingSets&quot;&gt;
+        &lt;workingSet
+            id=&quot;org.eclipse.ui.resourceWorkingSetPage&quot;
+            name=&quot;Resource&quot;
+            icon=&quot;icons/resworkset.gif&quot;
+            pageClass=&quot;org.eclipse.ui.internal.dialogs.ResourceWorkingSetPage&quot;&gt;
+            &lt;applicableType
+               adaptable=&quot;true&quot;
+               class=&quot;org.eclipse.core.resources.IResource&quot;&gt;
+            &lt;/applicableType&gt;
+        &lt;/workingSet&gt;
+    &lt;/extension&gt;
+&lt;/pre&gt;
+&lt;/p&gt;
+      </documentation>
+   </annotation>
+
+   <annotation>
+      <appInfo>
+         <meta.section type="apiInfo"/>
+      </appInfo>
+      <documentation>
+         The value of the pageClass attribute must represent a class that implements the &lt;samp&gt;org.eclipse.ui.dialogs.IWorkingSetPage&lt;/samp&gt; interface.
+      </documentation>
+   </annotation>
+
+   <annotation>
+      <appInfo>
+         <meta.section type="implementation"/>
+      </appInfo>
+      <documentation>
+         The workbench provides a working set wizard page for creating and editing resource based working sets.
+      </documentation>
+   </annotation>
+
+   <annotation>
+      <appInfo>
+         <meta.section type="copyright"/>
+      </appInfo>
+      <documentation>
+         Copyright (c) 2002, 2006 IBM Corporation and others.&lt;br&gt;
+All rights reserved. This program and the accompanying materials are made
+available under the terms of the Eclipse Public License v1.0 which accompanies
+this distribution, and is available at &lt;a 
+href=&quot;http://www.eclipse.org/legal/epl-v10.html&quot;&gt;http://www.eclipse.org/legal/epl-v10.html&lt;/a&gt;
+      </documentation>
+   </annotation>
+
+</schema>

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.ui_3.3.1.M20070910-0800b/src.zip
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.ui_3.3.1.M20070910-0800b/src.zip?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.ui_3.3.1.M20070910-0800b/src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.update.configurator_3.2.101.R33x_v20070810/about.html
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.update.configurator_3.2.101.R33x_v20070810/about.html?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.update.configurator_3.2.101.R33x_v20070810/about.html (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.update.configurator_3.2.101.R33x_v20070810/about.html Thu Dec 27 09:44:07 2007
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+ 
+<p>June 2, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise 
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor's license that was 
+provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.update.configurator_3.2.101.R33x_v20070810/src.zip
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.update.configurator_3.2.101.R33x_v20070810/src.zip?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp.source_3.3.2.R33x_r20071022-8y8eE9CEV3FspP8HJrY1M2dS/src/org.eclipse.update.configurator_3.2.101.R33x_v20070810/src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp_3.2.0.v20070612.jar
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp_3.2.0.v20070612.jar?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.rcp_3.2.0.v20070612.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/ECLIPSE.RSA
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/ECLIPSE.RSA?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/ECLIPSE.RSA
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/ECLIPSE.SF
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/ECLIPSE.SF?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/ECLIPSE.SF (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/ECLIPSE.SF Thu Dec 27 09:44:07 2007
@@ -0,0 +1,74 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest-Main-Attributes: OZQAl9kMYHW8c2F3+DrusqENIos=
+Created-By: 1.5.0 (IBM Corporation)
+SHA1-Digest-Manifest: g7oVHZeKA4nc8Mruy0bomQJ0NOo=
+
+Name: introData.xml
+SHA1-Digest: rbdEVtdFXLVuOdrjxm51bMKNzFk=
+
+Name: book.css
+SHA1-Digest: UxW21iFAeWJ2UzS0KO6JsEbZLew=
+
+Name: plugin_customization.ini
+SHA1-Digest: oqNNYktg+2FIJvf6TR/OsCYejOU=
+
+Name: eclipse.gif
+SHA1-Digest: X7FmvlMbRwWnvCo7f8phbRbEfcI=
+
+Name: plugin.xml
+SHA1-Digest: 7oaI8vn6Q2Qaa8ELbZuRGd+HvUE=
+
+Name: eclipse32.gif
+SHA1-Digest: IIlfN0/GJ3y76qt9qtlxEEXNrqs=
+
+Name: plugin_customization.properties
+SHA1-Digest: MYhhskXzu8wvw+k2Sm1yK4ItV2I=
+
+Name: helpData.xml
+SHA1-Digest: TZXnzPn4n3gBwQF0ydaxhmY1w3g=
+
+Name: about.properties
+SHA1-Digest: lug05WI/sdIVVU+CA+8XmmnfuFk=
+
+Name: plugin.properties
+SHA1-Digest: qCZrRgoWOCT6SbQMmfctjcFBj1w=
+
+Name: about.html
+SHA1-Digest: M+fykt9heyWoEv1LNiIEeBhi/2Q=
+
+Name: eclipse_lg.gif
+SHA1-Digest: MEjVOm9LCRnKo1GIrJoeO9622cc=
+
+Name: macosx_narrow_book.css
+SHA1-Digest: 8J/M6n+c7VFylsVAZdhTlZ+vXz0=
+
+Name: eclipse48.png
+SHA1-Digest: 5H+0miY4gFwfzCcbuTduBcCbEpY=
+
+Name: about.mappings
+SHA1-Digest: QW/BQGGCqqzuliqNVsKmlcZaBpo=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: about.ini
+SHA1-Digest: 9b65YKHtvMqWJ4a3Aa2fOqTJmnU=
+
+Name: eclipse.png
+SHA1-Digest: +LhrRAo2/ZU907ekuAodgDhrOIU=
+
+Name: narrow_book.css
+SHA1-Digest: ff2uNgtd9IHnaGYytKgtahVr+dc=
+
+Name: eclipse48.gif
+SHA1-Digest: ewmj23/WjvM7Ceh+QsnzbbwXyX8=
+
+Name: eclipse32.png
+SHA1-Digest: Yg2IAx+o7H2tbLyk4cwOAV+K+R4=
+
+Name: disabled_book.css
+SHA1-Digest: bLpqfhUiGbAbtfx3E0c42hwVP9s=
+
+Name: intro-eclipse.png
+SHA1-Digest: i3tW5YzU8J6JIL8mXfOPGKurYUs=
+

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/MANIFEST.MF?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/MANIFEST.MF (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/MANIFEST.MF Thu Dec 27 09:44:07 2007
@@ -0,0 +1,85 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Version: 3.3.2.R33x_v20071022
+Eclipse-AutoStart: true
+Created-By: 1.4.2 (IBM Corporation)
+Require-Bundle: org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",org.ecli
+ pse.help.ui;bundle-version="[3.2.0,4.0.0)",org.eclipse.help.base;bund
+ le-version="[3.1.0,4.0.0)",org.eclipse.ui.cheatsheets;bundle-version=
+ "[3.2.0,4.0.0)",org.eclipse.ui.ide.application;bundle-version="[1.0.0
+ ,2.0.0)"
+Bundle-SymbolicName: org.eclipse.sdk; singleton:=true
+Bundle-Name: %pluginName
+Bundle-Localization: plugin
+Bundle-Vendor: %providerName
+Ant-Version: Apache Ant 1.7.0
+
+Name: introData.xml
+SHA1-Digest: hRUHRieYHfLpbEmuEpkQGBDq/fU=
+
+Name: book.css
+SHA1-Digest: kvGJAYWLgQEfAU05klpaFKLBUG0=
+
+Name: plugin_customization.ini
+SHA1-Digest: uBrPnnvsSj8Z/0ZqdalqIBfGjkY=
+
+Name: eclipse.gif
+SHA1-Digest: qqPgXl0Cuu7J+oyLI7KYJzKh5GQ=
+
+Name: plugin.xml
+SHA1-Digest: 7Z8K93E3bRI5oK1cb2MCmk9XepM=
+
+Name: eclipse32.gif
+SHA1-Digest: TC1aERPmoyNdWkFeFsikkFv/a0c=
+
+Name: plugin_customization.properties
+SHA1-Digest: MrQ8crKtLhmApcHy3MtzuLPnS8g=
+
+Name: helpData.xml
+SHA1-Digest: ZR1pFHw9xoMSs25sZ0MO6v4/asI=
+
+Name: about.properties
+SHA1-Digest: Y0Yh40c3cCxipe1dBcbISw1uIOA=
+
+Name: plugin.properties
+SHA1-Digest: A5U5e/C57nGzbyLu6KWABWYGwx8=
+
+Name: about.html
+SHA1-Digest: ejOZra0kypGLQQ2bJtGTX+LI8tU=
+
+Name: eclipse_lg.gif
+SHA1-Digest: V1bzzsRNTt2D6InH92BXO4We/X0=
+
+Name: macosx_narrow_book.css
+SHA1-Digest: jjHm301H2huNyXiXwJbHzgWn0K4=
+
+Name: about.mappings
+SHA1-Digest: eKWQ/Vn4p1L9ePAhayHAXE3VIco=
+
+Name: eclipse48.png
+SHA1-Digest: fOC/Uu6aZ5meBi9nhXV5pSTmoSk=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: about.ini
+SHA1-Digest: 047iq9u2++7hl+oJ2nkNdXXELdw=
+
+Name: narrow_book.css
+SHA1-Digest: YfcPAsxyncN7+WhlbNPXQsXvmGg=
+
+Name: eclipse.png
+SHA1-Digest: Wn4ZtSh8OGwHMxNVSl1blf1x/8A=
+
+Name: intro-eclipse.png
+SHA1-Digest: /phcIB3M6hWnVnHO34m6tUethaU=
+
+Name: disabled_book.css
+SHA1-Digest: x3/plDo/tiH3FDASeesyGUCF4gM=
+
+Name: eclipse32.png
+SHA1-Digest: eCk/A3/COXL3S6qAVDOSrlsqmLw=
+
+Name: eclipse48.gif
+SHA1-Digest: wzuHxugoGF9ip2YX+dp2pqBg3X4=
+

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/eclipse.inf
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/eclipse.inf?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/eclipse.inf (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/META-INF/eclipse.inf Thu Dec 27 09:44:07 2007
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.html
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.html?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.html (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.html Thu Dec 27 09:44:07 2007
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+ 
+<p>June 2, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise 
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor's license that was 
+provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.ini
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.ini?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.ini (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.ini Thu Dec 27 09:44:07 2007
@@ -0,0 +1,31 @@
+# about.ini
+# contains information about a feature
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in about.properties
+# This file does not need to be translated.
+
+# Property "aboutText" contains blurb for "About" dialog (translated)
+aboutText=%blurb
+
+# Property "windowImage" contains path to window icon (16x16)
+# needed for primary features only
+
+# Property "featureImage" contains path to feature image (32x32)
+featureImage=eclipse32.png
+
+# Property "aboutImage" contains path to product image (500x330 or 115x164)
+# needed for primary features only
+
+# Property "appName" contains name of the application (translated)
+# needed for primary features only
+
+# Property "welcomePage" contains path to welcome page (special XML-based format)
+# optional
+
+# Property "welcomePerspective" contains the id of the perspective in which the
+# welcome page is to be opened.
+# optional
+
+
+
+

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.mappings
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.mappings?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.mappings (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.mappings Thu Dec 27 09:44:07 2007
@@ -0,0 +1,6 @@
+# about.mappings
+# contains fill-ins for about.properties
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file does not need to be translated.
+
+0=M20071023-1652
\ No newline at end of file

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.properties
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.properties?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.properties (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/about.properties Thu Dec 27 09:44:07 2007
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2000, 2005 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# about.properties
+# contains externalized strings for about.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# fill-ins are supplied by about.mappings
+# This file should be translated.
+
+blurb=Eclipse Project SDK\n\
+\n\
+Version: {featureVersion}\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2007.  All rights reserved.\n\
+Visit http://www.eclipse.org/eclipse
+

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/book.css
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/book.css?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/book.css (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/book.css Thu Dec 27 09:44:07 2007
@@ -0,0 +1,116 @@
+P.Code {
+	display: block;
+	text-align: left;
+	text-indent: 0.00pt;
+	margin-top: 0.000000pt;
+	margin-bottom: 0.000000pt;
+	margin-right: 0.000000pt;
+	margin-left: 15pt;
+	font-weight: normal;
+	font-style: normal;
+	color: #4444CC;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+	font-family: "Courier New", Courier, monospace;
+}
+H6.CaptionFigColumn {
+	display: block;
+	text-align: left;
+	text-indent: 0.000000pt;
+	margin-top: 3.000000pt;
+	margin-bottom: 11.000000pt;
+	margin-right: 0.000000pt;
+	margin-left: 0.000000pt;
+	font-size: 75%;
+	font-weight: bold;
+	font-style: Italic;
+	color: #000000;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+}
+P.Note {
+	display: block;
+	text-align: left;
+	text-indent: 0pt;
+	margin-top: 19.500000pt;
+	margin-bottom: 19.500000pt;
+	margin-right: 0.000000pt;
+	margin-left: 30pt;
+	font-size: 110%;
+	font-weight: normal;
+	font-style: Italic;
+	color: #000000;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+}
+EM.UILabel {
+	font-weight: Bold;
+	font-style: normal;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+}
+EM.CodeName {
+	font-weight: Bold;
+	font-style: normal;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+	font-family: "Courier New", Courier, monospace;
+}
+UL.NavList {
+	margin-left: 1.5em;
+	padding-left: 0px;
+	list-style-type: none;
+}
+
+body, html { border: 0px }
+
+
+/* following font face declarations need to be removed for DBCS */
+
+body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font-family: Arial, Helvetica, sans-serif; color: #000000}
+pre, code		{ font-family: "Courier New", Courier, monospace;}
+
+/* end font face declarations */
+
+@media print {
+	html { font-size: 12pt }
+}
+
+body	     { font-size: 83%; background: #FFFFFF; margin-bottom: 1em }
+h1           { font-size: 180%; margin-top: 5px; margin-bottom: 1px }	
+h2           { font-size: 140%; margin-top: 25px; margin-bottom: 3px }
+h3           { font-size: 110%; margin-top: 20px; margin-bottom: 3px }
+h4           { font-size: 100%; margin-top: 20px; margin-bottom: 3px; font-style: italic }
+p            { margin-top: 10px; margin-bottom: 10px }
+pre          { font-size: 93%; margin-left: 6; color: #4444CC }
+code         { font-size: 93%; } 
+table        { font-size: 100% } /* needed for quirks mode */
+a:link	     { color: #0000FF }
+a:hover	     { color: #000080 }
+a:visited    { text-decoration: underline }
+ul	     { margin-top: 10px; margin-bottom: 10px; }
+li	     { margin-top: 5px; margin-bottom: 5px; } 
+li p	     { margin-top: 5px; margin-bottom: 5px; }
+ol	     { margin-top: 10px; margin-bottom: 10px; }
+dl	     { margin-top: 10px; margin-bottom: 10px; }
+dt	     { margin-top: 5px; margin-bottom: 5px; font-weight: bold; }
+dd	     { margin-top: 5px; margin-bottom: 5px; }
+strong	     { font-weight: bold}
+em	     { font-style: italic}
+var	     { font-style: italic}
+div.revision { border-left-style: solid; border-left-width: thin; 
+				   border-left-color: #7B68EE; padding-left:5 }
+th	     { font-weight: bold }
+
+a.command-link {
+}
+a.command-link img {
+	border-width: 0px;
+	border-style: none;
+	vertical-align: middle;
+}
\ No newline at end of file

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/disabled_book.css
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/disabled_book.css?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/disabled_book.css (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/disabled_book.css Thu Dec 27 09:44:07 2007
@@ -0,0 +1 @@
+/* This CSS is applied after all other CSSs for topics that
   belong to the disabled capabilities. The DIV for the notice
   injected at the top of the document is 'help-disabledTopic'. */
   
#help-disabledTopic {
	color: Highlight;
	font-weight: medium;
	margin-top: 1.0em;
	margin-bottom: 1.0em;
}

#help-disabledTopic hr {
	color: #C0C0C0;
	noshade;
}
\ No newline at end of file

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse.gif
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse.gif?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse.png
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse.png?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse32.gif
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse32.gif?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse32.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse32.png
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse32.png?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse32.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse48.gif
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse48.gif?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse48.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse48.png
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse48.png?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse48.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse_lg.gif
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse_lg.gif?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/eclipse_lg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/helpData.xml
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/helpData.xml?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/helpData.xml (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/helpData.xml Thu Dec 27 09:44:07 2007
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<extensions>
+	<tocOrder>
+		<toc id="/org.eclipse.platform.doc.user/toc.xml"/>
+		<toc id="/org.eclipse.jdt.doc.user/toc.xml"/>
+		<toc id="/org.eclipse.platform.doc.isv/toc.xml"/>
+		<toc id="/org.eclipse.jdt.doc.isv/toc.xml"/>
+		<toc id="/org.eclipse.pde.doc.user/toc.xml"/>
+	</tocOrder>
+</extensions>

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/intro-eclipse.png
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/intro-eclipse.png?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/intro-eclipse.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/introData.xml
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/introData.xml?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/introData.xml (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/introData.xml Thu Dec 27 09:44:07 2007
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<extensions>
+   <page id="tutorials">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.team" importance="low"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.pde" importance="low"/>
+      </group>
+   </page>
+   <page id="whatsnew">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.ui.workbench.news" importance="low"/>
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.pde.changes" importance="low"/>
+         <extension id="org.eclipse.ui.workbench.migration" importance="callout"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.ui.workbench" importance="low"/>
+      </group>
+   </page>
+   <page id="samples">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.pde.workbench" importance="low"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.pde.swt" importance="low"/>
+      </group>
+   </page>
+   <page id="overview">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.ui.workbench" importance="low"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.pde" importance="low"/>
+      </group>
+   </page>
+</extensions>

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/macosx_narrow_book.css
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/macosx_narrow_book.css?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/macosx_narrow_book.css (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/macosx_narrow_book.css Thu Dec 27 09:44:07 2007
@@ -0,0 +1 @@
+h1,h2           { color: Black }
\ No newline at end of file

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/narrow_book.css
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/narrow_book.css?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/narrow_book.css (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/narrow_book.css Thu Dec 27 09:44:07 2007
@@ -0,0 +1 @@
+P.Code {
	display: block;
	text-align: left;
	text-indent: 0.00pt;
	margin-top: 0.000000pt;
	margin-bottom: 0.000000pt;
	margin-right: 0.000000pt;
	margin-left: 1.5em;
	font-size: 100%;
	font-weight: medium;
	font-style: Regular;
	color: #4444CC;
	text-decoration: none;
	vertical-align: baseline;
	text-transform: none;
	font-family: "Courier New";
}
H6.CaptionFigColumn {
	display: block;
	text-align: left;
	text-indent: 0.000000pt;
	margin-top: 0.3em;
	margin-bottom: 1.1em;
	margin-right: 0.000000pt;
	margin-left: 0.000000pt;
	font-size: 90%;
	font-weight: medium;
	font-style: Italic;
	color: #000000;
	text-decoration: none;
	vertical-align: baseline;
	text-transform: none;
	font-family: "Arial";
}
P.Note {
	display: block;
	text-align: left;
	text-indent: 0pt;
	margin-top: 1.95em;
	margin-bottom: 1.95em;
	margin-right: 0.000000pt;
	margin-left: 3.0em;
	font-size: 110%;
	font-weight: medium;
	font-style: Italic;
	color: #000000;
	text-decoration: none;
	vertical-align: basel
 ine;
	text-transform: none;
	font-family: "Arial";
}
EM.UILabel {
	font-weight: Bold;
	font-style: Regular;
	text-decoration: none;
	vertical-align: baseline;
	text-transform: none;
}
EM.CodeName {
	font-weight: Bold;
	font-style: Regular;
	text-decoration: none;
	vertical-align: baseline;
	text-transform: none;
	font-family:"Courier New";
}



body, html { border: 0px }

/* following font face declarations need to be removed for DBCS */

body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font: message-box; color: #000000}
pre				{ font-family: Courier, monospace}

/* end font face declarations */

/* following font size declarations should be OK for DBCS */
body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font: message-box; }
pre				{ font-size: 100% }
code,samp		{ font-size: 100%; }

/* end font size declarations */

body	     { background: #FFFFFF}
h1           { font-size: 180%; font-weight: medium; margin-top
 : 0.28em; margin-bottom: 0.05em; color: Highlight }
h2           { font-size: 140%; font-weight: bold; margin-top: 0.22em; margin-bottom: 3; color: Highlight }
h3           { font-size: 110%; font-weight: bold; margin-top: 0.18em; margin-bottom: 3 }
h4           { font-size: 100%; font-weight: bold; margin-top: 0.2em; margin-bottom: 3; font-style: italic }
p            { margin-top: 1.0em; margin-bottom: 1.0em }
pre	     { margin-left: 6; font-size: 90% }
a:link	     { color: #0000FF }
a:hover	     { color: #000080 }
a:visited    { text-decoration: underline }
ul	     { margin-top: 0; margin-bottom: 1.0em }
li	     { margin-top: 0; margin-bottom: 0 } 
li p	     { margin-top: 0; margin-bottom: 0 } 
ol	     { margin-top: 0; margin-bottom: 10 }
dl	     { margin-top: 0; margin-bottom: 10 }
dt	     { margin-top: 0; margin-bottom: 0; font-weight: bold }
dd	     { margin-top: 0; margin-bottom: 0 }
strong	     { font-weight: bold}
em	     { font-style: italic}
var	     { font-style:
  italic}
div.revision { border-left-style: solid; border-left-width: thin; 
				   border-left-color: #7B68EE; padding-left:5 }
th	     { font-weight: bold }
\ No newline at end of file

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin.properties
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin.properties?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin.properties (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin.properties Thu Dec 27 09:44:07 2007
@@ -0,0 +1,71 @@
+###############################################################################
+# Copyright (c) 2000, 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+pluginName=Eclipse Project SDK
+providerName=Eclipse.org
+
+productName=Eclipse SDK
+productBlurb=Eclipse SDK\n\
+\n\
+Version: 3.3.1.1\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2007.  All rights reserved.\n\
+Visit http://www.eclipse.org/platform\n\
+\n\
+This product includes software developed by the\n\
+Apache Software Foundation http://www.apache.org/
+
+activity.java=Java Development
+activity.java.desc=Develop Java applications.
+activity.plugin=Plug-in Development
+activity.plugin.desc=Develop plug-ins, fragments, and features for Eclipse.
+
+activity.team.cvs=CVS Support
+activity.team.cvs.desc=Use the Concurrent Versions System (CVS) to manage resources.
+activity.team=Core Team Support
+activity.team.desc=Share projects using configuration management systems.
+
+activity.cat.development=Development
+activity.cat.development.desc=Use the Eclipse SDK to develop applications.
+activity.cat.team=Team
+activity.cat.team.desc=Use configuration management systems to manage resources.
+
+PreferencePages.Capabilities = Capabilities
+PreferencePages.Capabilities.activityName = &Capabilities
+PreferencePages.Capabilities.categoryName = &Capabilities
+PreferencePages.Capabilities.activityPromptButton = &Prompt when enabling capabilities
+PreferencePages.Capabilities.activityPromptButtonTooltip = Prompt when a feature is first used that requires enablement of capabilities
+PreferencePages.Capabilities.captionMessage = Capabilities allow you to enable or disable various product components.  These capabilities are grouped according to a set of predefined categories.
+
+helpActivitySupport.showAllMessage = While showing all topics, documentation about disabled capabilities is also shown in the table of contents and search results. Some documents may refer to user interface elements that are not visible. To manually enable capabilities, use the "General -> Capabilities" preference page.
+helpActivitySupport.documentMessage = This topic belongs to a capability that \
+is currently disabled. It may refer to user interface elements that are \
+not visible.<br><br>\
+To manually enable capabilities, use\
+&nbsp;<a href='ACTIVITY_EDITOR'>Capabilities preference page.</a>
+
+TriggerPointAdvisor.proceedMulti = Enable the selected capabilities?
+TriggerPointAdvisor.proceedSingle = Enable the required capability?
+TriggerPointAdvisor.dontAsk = &Always enable capabilities and don't ask me again
+TriggerPointAdvisor.noDetails = Select a capability to view its description.
+
+search.Google.label = Google
+search.Google.desc = Performs a Google web search
+
+search.Eclipse.label = Eclipse.org 
+search.Eclipse.desc = Searches mailing lists, news groups, articles and other documents on Eclipse.org
+
+productIntroTitle = Welcome to Eclipse 3.3
+productIntroBrandingText = Eclipse Project
+introDescription-overview = The Eclipse software development kit is the development environment used to develop plug-ins for the Eclipse platform. It provides first-class Java programming tools, and plug-in development tools for building Eclipse-based applications and extensions.
+introDescription-tutorials = Learn how to be productive using Eclipse by completing end-to-end tutorials that will guide you along the way.
+introDescription-samples = Explore Eclipse by installing prefabricated samples (may require an Internet connection).
+

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin.xml
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin.xml?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin.xml (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin.xml Thu Dec 27 09:44:07 2007
@@ -0,0 +1,290 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<plugin>
+
+    <extension id="ide" point="org.eclipse.core.runtime.products"> 
+      <product name="%productName" application="org.eclipse.ui.ide.workbench" description="%productBlurb"> 
+          <property name="windowImages" value="eclipse.gif,eclipse32.gif,eclipse48.gif,eclipse.png,eclipse32.png,eclipse48.png"/> 
+          <property name="aboutImage" value="eclipse_lg.gif"/> 
+          <property name="aboutText" value="%productBlurb"/> 
+          <property name="appName" value="Eclipse"/> 
+          <property name="preferenceCustomization" value="plugin_customization.ini"/>
+          <property
+                name="startupForegroundColor"
+                value="C8D5EA"/>
+          <property
+                name="startupMessageRect"
+                value="7,220,441,20"/>
+          <property
+                name="startupProgressRect"
+                value="0,280,455,15"/> 
+          <property
+          		name="introTitle"
+          		value="%productIntroTitle"/>
+          <property
+          		name="introBrandingImage"
+          		value="product:intro-eclipse.png"/>
+          <property
+          		name="introBrandingImageText"
+          		value="%productIntroBrandingText"/>
+		  <property
+				name="introDescription-overview"
+				value="%introDescription-overview"/>
+		  <property
+				name="introDescription-tutorials"
+				value="%introDescription-tutorials"/>
+		  <property
+				name="introDescription-samples"
+				value="%introDescription-samples"/>
+      </product> 
+    </extension> 
+
+	<extension
+		point="org.eclipse.ui.intro">
+      <introProductBinding
+            introId="org.eclipse.ui.intro.universal"
+            productId="org.eclipse.sdk.ide">
+      </introProductBinding>
+    </extension>
+
+    <extension
+         point="org.eclipse.ui.activities">
+  
+      <activity
+            name="%activity.java"
+            description="%activity.java.desc"
+            id="org.eclipse.javaDevelopment">
+      </activity>
+      
+      <activity
+            name="%activity.plugin"
+            description="%activity.plugin.desc"
+            id="org.eclipse.plugInDevelopment">
+      </activity>
+      
+      <activityRequirementBinding
+            activityId="org.eclipse.plugInDevelopment"
+            requiredActivityId="org.eclipse.javaDevelopment">
+      </activityRequirementBinding>
+  
+      <activity
+            name="%activity.team.cvs"
+            description="%activity.team.cvs.desc"
+            id="org.eclipse.team.cvs">
+      </activity> 
+      
+      <activity
+            name="%activity.team"
+            description="%activity.team.desc"
+            id="org.eclipse.team">
+      </activity> 
+      
+      <activityRequirementBinding
+            activityId="org.eclipse.team.cvs"
+            requiredActivityId="org.eclipse.team">
+      </activityRequirementBinding>
+      
+      <activityPatternBinding
+            activityId="org.eclipse.javaDevelopment"
+            pattern="org\.eclipse\.jdt\.debug/debugModel">
+      </activityPatternBinding>
+      
+      <activityPatternBinding
+            activityId="org.eclipse.javaDevelopment"
+            pattern="org\.eclipse\.jdt\..*/.*">
+      </activityPatternBinding>
+      
+      <activityPatternBinding
+            activityId="org.eclipse.javaDevelopment"
+            pattern="org\.eclipse\.jdt/.*">
+      </activityPatternBinding>
+      
+      <activityPatternBinding
+            activityId="org.eclipse.javaDevelopment"
+            pattern="org\.eclipse\.jdt\.core/javanature">
+
+      </activityPatternBinding>
+      
+      <activityPatternBinding
+            activityId="org.eclipse.plugInDevelopment"
+            pattern="org\.eclipse\.pde\..*/.*">
+      </activityPatternBinding>
+      
+      <activityPatternBinding
+            activityId="org.eclipse.plugInDevelopment"
+            pattern="org\.eclipse\.pde/.*">
+      </activityPatternBinding>
+      
+      <activityPatternBinding
+            activityId="org.eclipse.plugInDevelopment"
+            pattern="org\.eclipse\.pde/PluginNature">
+      </activityPatternBinding>
+      <activityPatternBinding
+            activityId="org.eclipse.team"
+            pattern="org\.eclipse\.team\.ui/org.*">
+      </activityPatternBinding> 
+      <activityPatternBinding
+            activityId="org.eclipse.team"
+            pattern="org\.eclipse\.compare/compareWithPatch">
+      </activityPatternBinding>           
+      <activityPatternBinding
+            activityId="org.eclipse.team.cvs"
+            pattern="org\.eclipse\.team\.cvs\.ui/.*">
+      </activityPatternBinding>
+      <activityPatternBinding
+            activityId="org.eclipse.team.cvs"
+            pattern="org\.eclipse\.team\.cvs\.core/.*cvsnature">
+      </activityPatternBinding>
+      
+      <category
+            name="%activity.cat.development"
+            description="%activity.cat.development.desc"
+            id="org.eclipse.categories.developmentCategory">
+      </category>
+
+ 	  <category
+            name="%activity.cat.team"
+            description="%activity.cat.team.desc"
+            id="org.eclipse.categories.teamCategory">
+
+      </category>
+      
+      <categoryActivityBinding
+            activityId="org.eclipse.javaDevelopment"
+            categoryId="org.eclipse.categories.developmentCategory">
+      </categoryActivityBinding>
+      
+      <categoryActivityBinding
+            activityId="org.eclipse.plugInDevelopment"
+            categoryId="org.eclipse.categories.developmentCategory">
+      </categoryActivityBinding>
+
+      <categoryActivityBinding
+            activityId="org.eclipse.team"
+            categoryId="org.eclipse.categories.teamCategory">
+      </categoryActivityBinding>        
+      
+      <categoryActivityBinding
+            activityId="org.eclipse.team.cvs"
+            categoryId="org.eclipse.categories.teamCategory">
+      </categoryActivityBinding>
+  
+      <!-- bind all elements that start with "org" -->      
+       
+      <defaultEnablement
+            id="org.eclipse.javaDevelopment">
+      </defaultEnablement>
+      
+      <defaultEnablement
+            id="org.eclipse.plugInDevelopment">
+      </defaultEnablement>
+      
+      <defaultEnablement
+            id="org.eclipse.team">
+      </defaultEnablement>     
+      
+      <defaultEnablement
+            id="org.eclipse.team.cvs">
+      </defaultEnablement>
+   </extension>
+   
+   <extension
+         point="org.eclipse.ui.newWizards">
+      <primaryWizard
+            id="org.eclipse.jdt.ui.wizards.JavaProjectWizard">
+      </primaryWizard>
+      <primaryWizard
+            id="org.eclipse.pde.ui.NewProjectWizard">
+      </primaryWizard>
+      <primaryWizard
+            id="org.eclipse.jdt.ui.wizards.NewClassCreationWizard">
+      </primaryWizard>
+      <primaryWizard
+            id="org.eclipse.jdt.ui.wizards.NewInterfaceCreationWizard">
+      </primaryWizard>
+      <primaryWizard
+            id="org.eclipse.ant.ui.wizards.JavaProjectWizard">
+      </primaryWizard>
+   </extension>
+   <extension
+         point="org.eclipse.ui.preferencePages">
+	  <page            
+            category="org.eclipse.ui.preferencePages.Workbench"
+            name="%PreferencePages.Capabilities"
+            id="org.eclipse.sdk.capabilities">
+            <class class="org.eclipse.ui.activities.ActivityCategoryPreferencePage">
+                <parameter name="allowAdvanced" value="true"/>
+                <parameter name="captionMessage" value="%PreferencePages.Capabilities.captionMessage" />
+            	<parameter name="activityName" value="%PreferencePages.Capabilities.activityName" />
+                <parameter name="categoryName" value="%PreferencePages.Capabilities.categoryName" />
+            	<parameter name="activityPromptButton" value="%PreferencePages.Capabilities.activityPromptButton"/>
+            	<parameter name="activityPromptButtonTooltip" value="%PreferencePages.Capabilities.activityPromptButtonTooltip"/>
+            </class>
+      </page>   
+   </extension>
+   
+   <extension
+   		point="org.eclipse.help.base.activitySupport">
+      <support productId="org.eclipse.sdk.ide">
+         <showAllMessage>
+            %helpActivitySupport.showAllMessage
+         </showAllMessage>
+         <documentMessage
+               class="org.eclipse.help.ui.internal.ShowCapabilitiesPreferenceAction"
+               pluginId="org.eclipse.help.ui">
+            %helpActivitySupport.documentMessage
+         </documentMessage>
+      </support>
+   </extension>
+   
+      <extension
+            point="org.eclipse.ui.activitySupport">
+      <triggerPointAdvisor
+            id="org.eclipse.ui.ide.triggerPointAdvisor">
+            <class class="org.eclipse.ui.activities.WorkbenchTriggerPointAdvisor">
+            	<parameter name="proceedMulti" value="%TriggerPointAdvisor.proceedMulti" />
+            	<parameter name="proceedSingle" value="%TriggerPointAdvisor.proceedSingle" />
+            	<parameter name="dontAsk" value="%TriggerPointAdvisor.dontAsk" />
+            	<parameter name="noDetails" value="%TriggerPointAdvisor.noDetails" />
+            </class>
+      </triggerPointAdvisor>
+   </extension>   
+   
+   <extension
+         point="org.eclipse.ui.activitySupport">
+      <triggerPointAdvisorProductBinding
+            productId="org.eclipse.sdk.ide"
+            triggerPointAdvisorId="org.eclipse.ui.ide.triggerPointAdvisor"/>
+   </extension>
+   
+   <extension
+         point="org.eclipse.help.ui.searchEngine">
+      <engine
+            enabled="true"
+            engineTypeId="org.eclipse.help.ui.web"
+            id="org.eclipse.sdk.Google"
+            label="%search.Google.label">
+      		<description>
+	      		%search.Google.desc
+      		</description>
+      		<param 
+      			name="url" 
+      			value="http://www.google.com/search?hl=en&amp;q={expression}&amp;btnG=Google+Search&amp;meta=">
+      		</param>
+      </engine>
+      <engine
+            enabled="true"
+            engineTypeId="org.eclipse.help.ui.web"
+            id="org.eclipse.sdk.Eclipse"
+            label="%search.Eclipse.label">
+      		<description>
+	      		%search.Eclipse.desc
+      		</description>
+      		<param 
+      			name="url" 
+      			value="http://eclipse.org/search/search.cgi?q={expression}&amp;ul=&amp;ps=20&amp;m=all">
+      		</param>
+      </engine>
+    </extension>
+
+</plugin>

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin_customization.ini
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin_customization.ini?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin_customization.ini (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin_customization.ini Thu Dec 27 09:44:07 2007
@@ -0,0 +1,40 @@
+# plugin_customization.ini 
+# sets default values for plug-in-specific preferences
+# keys are qualified by plug-in id
+# e.g., com.example.acmeplugin/myproperty=myvalue
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in plugin_customization.properties
+# This file does not need to be translated.
+
+# Property "org.eclipse.ui/defaultPerspectiveId" controls the 
+# perspective that the workbench opens initially
+org.eclipse.ui/defaultPerspectiveId=org.eclipse.jdt.ui.JavaPerspective
+
+# new-style tabs by default
+org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
+
+# put the perspective switcher on the top right
+org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topRight
+
+# show progress on startup
+org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
+
+# show build id in the splash - only for nightly, integration, and milestone builds
+org.eclipse.ui.workbench/SHOW_BUILDID_ON_STARTUP=true
+
+# use the window set by default
+org.eclipse.ui/USE_WINDOW_WORKING_SET_BY_DEFAULT=true
+
+# Intro-related preferences (since 3.2)
+
+# Welcome theme to use
+org.eclipse.ui.intro/INTRO_THEME = org.eclipse.ui.intro.universal.circles
+
+# Root page links to show in the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_ROOT_PAGES = overview,tutorials,samples,whatsnew
+
+# Initial page layout of the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_DATA = product:introData.xml
+
+# Order help books in table of contents
+org.eclipse.help/HELP_DATA = helpData.xml
\ No newline at end of file

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin_customization.properties
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin_customization.properties?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin_customization.properties (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/plugin_customization.properties Thu Dec 27 09:44:07 2007
@@ -0,0 +1,14 @@
+###############################################################################
+# Copyright (c) 2000, 2005 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# plugin_customization.properties
+# contains externalized strings for plugin_customization.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.search_3.3.1.r331_v20070831-0800.jar
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.search_3.3.1.r331_v20070831-0800.jar?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.search_3.3.1.r331_v20070831-0800.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.search_3.3.1.r331_v20070831-0800.plugin.xml
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.search_3.3.1.r331_v20070831-0800.plugin.xml?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.search_3.3.1.r331_v20070831-0800.plugin.xml (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.search_3.3.1.r331_v20070831-0800.plugin.xml Thu Dec 27 09:44:07 2007
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+
+<!-- ======================================================================= -->
+<!-- Search Plugin                                                           -->
+<!-- ======================================================================= -->
+<plugin>
+
+	<!-- Search extension point definitions -->
+	
+	<extension-point name="%searchPages" id="searchPages" schema="schema/searchPages.exsd"/>
+	<extension-point name="%searchResultSorters" id="searchResultSorters" schema="schema/searchResultSorters.exsd"/>
+	<extension-point name="%searchResultViewPages" id="searchResultViewPages" schema="schema/searchResultViewPages.exsd"/>
+	<extension-point name="%textSearchEngine" id="textSearchEngine" schema="schema/textSearchEngine.exsd"/>
+	<extension-point name="%textSearchQueryProvider" id="textSearchQueryProvider" schema="schema/textSearchQueryProvider.exsd"/>
+	
+	
+	<!-- Extensions -->
+	
+	<extension point="org.eclipse.ui.commands">
+		<category
+			name="%searchCategory.name"
+			description="%searchCategory.description"
+			id="org.eclipse.search.ui.category.search"
+		/>
+
+		<command
+			categoryId="org.eclipse.search.ui.category.search"
+			id="org.eclipse.search.ui.openSearchDialog"
+			name= "%ActionDefinition.openSearchDialog.name"
+			description="%ActionDefinition.openSearchDialog.description"
+		/>
+	</extension>
+	
+	<extension point="org.eclipse.ui.bindings">
+		<!-- COMMAND+H is "Hide" on carbon, so don't overwrite it -->
+		<key
+			sequence="Ctrl+H"
+			commandId="org.eclipse.search.ui.openSearchDialog"
+			schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+		/>
+	</extension>
+	
+	<extension point="org.eclipse.ui.actionSets">
+		<actionSet
+			id="org.eclipse.search.searchActionSet"
+	        label="%search"
+			visible="true">
+	
+			<action id="org.eclipse.search.OpenSearchDialog"
+				definitionId="org.eclipse.search.ui.openSearchDialog"
+				toolbarPath="Normal/Search"			
+				menubarPath="org.eclipse.search.menu/internalDialogGroup"
+				label="%openSearchDialogAction.label"
+				tooltip="%openSearchDialogAction.tooltip"
+				icon="$nl$/icons/full/etool16/search.gif"
+				helpContextId="open_search_dialog_action_context"
+				class="org.eclipse.search.internal.ui.OpenSearchDialogAction"/>
+
+	     </actionSet>
+	</extension>
+	
+    <extension
+   		point="org.eclipse.ui.keywords">
+      <keyword
+            label="%preferenceKeywords.general"
+            id="org.eclipse.search.ui"/>
+	</extension>
+	
+</plugin>
+

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.swt.carbon.macosx_3.3.2.v3347a.jar
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.swt.carbon.macosx_3.3.2.v3347a.jar?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.swt.carbon.macosx_3.3.2.v3347a.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.swt_3.3.2.v3347.jar
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.swt_3.3.2.v3347.jar?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.swt_3.3.2.v3347.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.text_3.3.0.v20070606-0010.jar
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.text_3.3.0.v20070606-0010.jar?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.text_3.3.0.v20070606-0010.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/ECLIPSE.RSA
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/ECLIPSE.RSA?rev=607099&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/ECLIPSE.RSA
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/ECLIPSE.SF
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/ECLIPSE.SF?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/ECLIPSE.SF (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/ECLIPSE.SF Thu Dec 27 09:44:07 2007
@@ -0,0 +1,107 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest-Main-Attributes: k8yc30neuvQcGTJYr3A/nRo9sug=
+Created-By: 1.5.0 (IBM Corporation)
+SHA1-Digest-Manifest: eIicYsEck+79B9NHZAy/aaLD3Ak=
+
+Name: about_files/mx4j.license
+SHA1-Digest: JhGcA9cWRNw8kmtXVrdOWvDBo1I=
+
+Name: tomcat-http11.jar
+SHA1-Digest: 5wHuxLpx+P1FCgNCqv/wcrJuJ1c=
+
+Name: naming-common.jar
+SHA1-Digest: 7YArr0HHV6MyPI9ol4wXUAzQqQY=
+
+Name: tomcatwrapper.jar
+SHA1-Digest: 2X3LPhHc1ijilG5HFS+V8mI4YHc=
+
+Name: jasper-runtime.jar
+SHA1-Digest: Vwkiv0WC1yqp7gKgnMRB8Ne73eM=
+
+Name: servlets-common.jar
+SHA1-Digest: sS1+lFCVXhz0YOTjbJpKb+g4xXU=
+
+Name: commons-logging-api.jar
+SHA1-Digest: lOzbeIeShnf2FQdu4ZVwZFigjME=
+
+Name: conf/tomcat-users.xml
+SHA1-Digest: G+zMM385xD5lINm76kuSttNgw6c=
+
+Name: servlet.jar
+SHA1-Digest: vGATNGSTFBUZABkFl4p0PAmm5EQ=
+
+Name: naming-factory.jar
+SHA1-Digest: qFguMo+lpgIEQBpENk5X2qSV7QE=
+
+Name: servlets-default.jar
+SHA1-Digest: RZV0L5BqLLJcb5RjOsRtGYy/+Jw=
+
+Name: preferences.ini
+SHA1-Digest: Ub97GFH9IQW3/VKzyiEg6n1L6nA=
+
+Name: about.html
+SHA1-Digest: bV1O4JS1RYuC1jX3Ahtgsflh9aw=
+
+Name: servlets-invoker.jar
+SHA1-Digest: APcc1LI7zXhsWAUQlJAY0KCmfFw=
+
+Name: catalina.jar
+SHA1-Digest: 4+4DnS0KOokfvwbC4ZLa67u6zS8=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: commons-digester.jar
+SHA1-Digest: JlvErE0HI1EfN5tIdCDZXAKQAVY=
+
+Name: commons-modeler.jar
+SHA1-Digest: iWTCR9Mxoqj4Wn7uR3EDdBKNN2g=
+
+Name: commons-collections.jar
+SHA1-Digest: ZjOA7FNE+1oDD7o+cCS1aEQq2z8=
+
+Name: plugin.xml
+SHA1-Digest: E8k2adRdc7opn+Gaa4GeE0gN3r8=
+
+Name: servlets-manager.jar
+SHA1-Digest: IVoYOI4587MrYdMypPh8DWXNnYY=
+
+Name: bootstrap.jar
+SHA1-Digest: /4aIdU5cFz6q7ly62ZKm6wHmZy4=
+
+Name: jakarta-regexp-1.3.jar
+SHA1-Digest: xkx1ZF5iohFu8XGhjsbioGbwTuM=
+
+Name: conf/catalina.policy
+SHA1-Digest: 6b2qGfq67vnySCdyFB5ZQP3ls1M=
+
+Name: jasper-compiler.jar
+SHA1-Digest: ow1WdTmtI631MQpr8NQIt/quAUs=
+
+Name: tomcat-util.jar
+SHA1-Digest: TprzKu4ENRKs6DDZ8xVmbAPVYhg=
+
+Name: mx4j-jmx.jar
+SHA1-Digest: fhOjw01egFMm50aeqAbERKkvZc8=
+
+Name: conf/web.xml
+SHA1-Digest: GofwH/1B7DJ424TDtGMaSFSDm5w=
+
+Name: webapps/ROOT/WEB-INF/web.xml
+SHA1-Digest: XwQ1UKfxqyZbrkt3p9P0xFBahlM=
+
+Name: plugin.properties
+SHA1-Digest: jQV1qdLSuIM8NSQ1sd8XOGfPRK4=
+
+Name: naming-resources.jar
+SHA1-Digest: t1avsfrymHKqI9Amzv+kKg3FmvY=
+
+Name: webapps/ROOT/index.html
+SHA1-Digest: GH0PutbcI5fJjZEBaRXNpTi1eMA=
+
+Name: commons-beanutils.jar
+SHA1-Digest: 7xynCIsrKsTOhpmzc7Xa2hmamnk=
+
+Name: tomcat-coyote.jar
+SHA1-Digest: +SGNTiMz8ncDv45W7nM3OFAFxyM=
+

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/MANIFEST.MF?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/MANIFEST.MF (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/MANIFEST.MF Thu Dec 27 09:44:07 2007
@@ -0,0 +1,129 @@
+Manifest-Version: 1.0
+Import-Package: org.apache.commons.logging;resolution:=optional,org.ap
+ ache.commons.logging.impl;resolution:=optional
+Bundle-ManifestVersion: 2
+Created-By: 1.4.2 (IBM Corporation)
+Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
+Ant-Version: Apache Ant 1.7.0
+Bundle-ClassPath: tomcatwrapper.jar,catalina.jar,bootstrap.jar,commons
+ -beanutils.jar,commons-collections.jar,commons-digester.jar,commons-l
+ ogging-api.jar,commons-modeler.jar,jakarta-regexp-1.3.jar,jasper-comp
+ iler.jar,jasper-runtime.jar,mx4j-jmx.jar,naming-common.jar,naming-fac
+ tory.jar,naming-resources.jar,servlet.jar,servlets-common.jar,servlet
+ s-default.jar,servlets-invoker.jar,servlets-manager.jar,tomcat-coyote
+ .jar,tomcat-http11.jar,tomcat-util.jar
+Export-Package: org.eclipse.tomcat.internal;x-internal:=true,org.eclip
+ se.tomcat.internal.extensions
+Bundle-Version: 4.1.230.v20070531
+Require-Bundle: org.eclipse.help.appserver;bundle-version="[3.1.0,4.0.
+ 0)",org.apache.ant;bundle-version="[1.6.5,2.0.0)";resolution:=optiona
+ l,org.eclipse.core.runtime;bundle-version="[3.1.0,4.0.0)"
+Bundle-Activator: org.eclipse.tomcat.internal.TomcatPlugin
+Bundle-SymbolicName: org.eclipse.tomcat; singleton:=true
+Eclipse-LazyStart: true
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
+Bundle-Localization: plugin
+
+Name: tomcat-http11.jar
+SHA1-Digest: vZmXWKmptDGZUKAqT6h65EiT0ho=
+
+Name: about_files/mx4j.license
+SHA1-Digest: H/fTl7JO/UqoBrlJ8vbuhxaQl/4=
+
+Name: naming-common.jar
+SHA1-Digest: xLypZNOOy8ZkMXfpHMDGQHPo8CI=
+
+Name: tomcatwrapper.jar
+SHA1-Digest: GgsrNzYLE0jNoZMVcDAH0EvdGiY=
+
+Name: jasper-runtime.jar
+SHA1-Digest: RE8fFl/P2/rs41Sv8pJFDnhlKW4=
+
+Name: servlets-common.jar
+SHA1-Digest: HdcU1qQwSSoCS0GyiLEdQ9RYDaE=
+
+Name: commons-logging-api.jar
+SHA1-Digest: m+42JnC/oEQ+1vy4LqE3MUZ7nCk=
+
+Name: conf/tomcat-users.xml
+SHA1-Digest: ++oSTw44/VUxtFjGpa+yNYQobI4=
+
+Name: naming-factory.jar
+SHA1-Digest: fccJYhkymH6j8FdN+y84Yd5ZDZc=
+
+Name: servlet.jar
+SHA1-Digest: PTGZwPv2B7EAWvQRRwhYPqx5APk=
+
+Name: servlets-default.jar
+SHA1-Digest: XZJn5FkypuIFdKS55iCEVe0fTRM=
+
+Name: preferences.ini
+SHA1-Digest: pvTIWM5u+bdK8llGqcCdlT2k8Io=
+
+Name: about.html
+SHA1-Digest: vIsPRQkxeXAYduNqySJ4UUlvfQM=
+
+Name: servlets-invoker.jar
+SHA1-Digest: mFam8AdIENrPx9FFfntFw51eMSo=
+
+Name: catalina.jar
+SHA1-Digest: w4bNuYNfF0lSTbogAM8p924TIuE=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: commons-digester.jar
+SHA1-Digest: rtN/qSMDvyb718T/ejIoAXSIaAM=
+
+Name: commons-modeler.jar
+SHA1-Digest: SlNvg/3zmvPbhNu76k4mUCbAktc=
+
+Name: commons-collections.jar
+SHA1-Digest: 4OQgYLGW/jVmlYpLtwcXn7VXxBU=
+
+Name: plugin.xml
+SHA1-Digest: ay37kKPMQmcAaJZ5OEzdd8S2sDs=
+
+Name: servlets-manager.jar
+SHA1-Digest: 9pqSYnOb7VKJPS58lp9qUXkRE/Y=
+
+Name: bootstrap.jar
+SHA1-Digest: /gDTDSXNRDXTujMYpZ8ppqsHmo8=
+
+Name: jakarta-regexp-1.3.jar
+SHA1-Digest: eJQJ/Zb2gNp04fsdNlRIv4bSNVM=
+
+Name: conf/catalina.policy
+SHA1-Digest: pC4rZ6OEkqu+bMwdjSp/KDy3fHA=
+
+Name: tomcat-util.jar
+SHA1-Digest: jXEW4I2bzluntjQ1l1j+dFWiE7M=
+
+Name: jasper-compiler.jar
+SHA1-Digest: viaxT70MUbz/X87aheWjKyRFrqM=
+
+Name: mx4j-jmx.jar
+SHA1-Digest: uer1oPQHPeas10tcS1TYj/SuCfU=
+
+Name: webapps/ROOT/WEB-INF/web.xml
+SHA1-Digest: WiqCucvpQhEoySK2hFkueF0EvX8=
+
+Name: conf/web.xml
+SHA1-Digest: 1M47qyFLCBma8w98f4pxUkkoDwI=
+
+Name: plugin.properties
+SHA1-Digest: akZGnJrweNu08W5XnMbgccfgDXI=
+
+Name: naming-resources.jar
+SHA1-Digest: L1X2tazlup/67dFj82l4OWd60h0=
+
+Name: webapps/ROOT/index.html
+SHA1-Digest: 5J+YwZBlKaFCjW/9AbBVwKuGQN8=
+
+Name: tomcat-coyote.jar
+SHA1-Digest: rZlkRZ2WjgqKDk0ItPnOKDH9qw8=
+
+Name: commons-beanutils.jar
+SHA1-Digest: 5EPrAXdZbATx6x2boyM67NXJyZg=
+

Added: directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/eclipse.inf
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/eclipse.inf?rev=607099&view=auto
==============================================================================
--- directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/eclipse.inf (added)
+++ directory/studio/branches/studio-eclipse-3.3/dependencies/eclipse/3.3.1/plugins/org.eclipse.tomcat_4.1.230.v20070531/META-INF/eclipse.inf Thu Dec 27 09:44:07 2007
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true