JBoss Tools SVN: r31666 - trunk/build/results.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-05-31 01:09:03 -0400 (Tue, 31 May 2011)
New Revision: 31666
Modified:
trunk/build/results/build.xml
Log:
remove debug line and rename buildResults.out.html to buildResults.html
Modified: trunk/build/results/build.xml
===================================================================
--- trunk/build/results/build.xml 2011-05-31 05:08:51 UTC (rev 31665)
+++ trunk/build/results/build.xml 2011-05-31 05:09:03 UTC (rev 31666)
@@ -97,8 +97,6 @@
</if>
</sequential>
</macrodef>
-
- <echoproperties/>
</target>
<!-- NEW STUFF HERE -->
@@ -148,8 +146,8 @@
</and>
<then>
<var name="propertiesFileFound" value="true" />
- <delete quiet="true" file="buildResults.out.html" />
- <xslt in="@{propertiesFile}" out="buildResults.out.html" style="buildResults.xsl" force="true">
+ <delete quiet="true" file="buildResults.html" />
+ <xslt in="@{propertiesFile}" out="buildResults.html" style="buildResults.xsl" force="true">
<classpath location="${COMMON_TOOLS}/saxon.jar" />
</xslt>
</then>
@@ -163,7 +161,7 @@
<isset property="propertiesFileFound" />
</not>
<then>
- <echo>Could not generate buildResults.out.html from zips/build.properties.all.xml - file does not exist!</echo>
+ <echo>Could not generate buildResults.html from zips/build.properties.all.xml - file does not exist!</echo>
</then>
</if>
<var name="propertiesFileFound" unset="true" />
13 years, 6 months
JBoss Tools SVN: r31665 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-05-31 01:08:51 -0400 (Tue, 31 May 2011)
New Revision: 31665
Modified:
trunk/build/publish.sh
Log:
purge duplicate zip files in logs/zips/all/*.zip
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2011-05-31 04:58:08 UTC (rev 31664)
+++ trunk/build/publish.sh 2011-05-31 05:08:51 UTC (rev 31665)
@@ -201,6 +201,9 @@
done
if [[ ${ANT_SCRIPT} ]] && [[ -f ${ANT_SCRIPT} ]]; then ant -f ${ANT_SCRIPT} ${ANT_PARAMS}; fi
+# purge duplicate zip files in logs/zips/all/*.zip
+if [[ -d ${STAGINGDIR}/logs/zips ]]; then rm -f $(find ${STAGINGDIR}/logs/zips -type f -name "*.zip"); fi
+
# ${bl} is full build log; see above
mkdir -p ${STAGINGDIR}/logs
# filter out Maven test failures
13 years, 6 months
JBoss Tools SVN: r31664 - in trunk/as/plugins: org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2011-05-31 00:58:08 -0400 (Tue, 31 May 2011)
New Revision: 31664
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/DeployOnlyRSEPrefComposite.java
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEDeploymentPreferenceUI.java
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploymentModuleOptionCompositeAssistant.java
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/tools/as/wst/server/ui/xpl/ServerActionProvider.java
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/tools/as/wst/server/ui/xpl/ServerContentProvider.java
Log:
JBIDE-8908 - trunk - browse buttons for deploy only server using RSE
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/DeployOnlyRSEPrefComposite.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/DeployOnlyRSEPrefComposite.java 2011-05-31 04:39:58 UTC (rev 31663)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/DeployOnlyRSEPrefComposite.java 2011-05-31 04:58:08 UTC (rev 31664)
@@ -31,7 +31,6 @@
public DeployOnlyRSEPrefComposite(Composite parent, int style, IServerModeUICallback callback) {
super(parent, style, callback);
}
-
protected void createRSEWidgets(Composite child) {
handleDeployOnlyServer(child);
}
@@ -64,6 +63,10 @@
}
public void widgetSelected(SelectionEvent e) {
+ String browseVal = browseClicked3(deployText.getShell());
+ if (browseVal != null) {
+ deployText.setText(browseVal);
+ }
}
});
@@ -90,6 +93,10 @@
}
public void widgetSelected(SelectionEvent e) {
+ String browseVal = browseClicked3(tempDeployText.getShell());
+ if (browseVal != null) {
+ tempDeployText.setText(browseVal);
+ }
}
});
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEDeploymentPreferenceUI.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEDeploymentPreferenceUI.java 2011-05-31 04:39:58 UTC (rev 31663)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEDeploymentPreferenceUI.java 2011-05-31 04:58:08 UTC (rev 31664)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010 Red Hat, Inc.
+ * Copyright (c) 2011 Red Hat, Inc.
* Distributed under license by Red Hat, Inc. All rights reserved.
* This program is made available under the terms of the
* Eclipse Public License v1.0 which accompanies this distribution,
@@ -50,11 +50,23 @@
import org.jboss.ide.eclipse.as.core.util.ServerConverter;
import org.jboss.ide.eclipse.as.rse.core.RSEUtils;
import org.jboss.ide.eclipse.as.ui.UIUtil;
+import org.jboss.ide.eclipse.as.ui.editor.DeploymentModuleOptionCompositeAssistant;
import org.jboss.ide.eclipse.as.ui.editor.IDeploymentTypeUI;
+import org.jboss.ide.eclipse.as.ui.editor.ModuleDeploymentPage;
import org.jboss.ide.eclipse.as.ui.editor.ServerModeSection;
import org.jboss.ide.eclipse.as.ui.editor.ServerModeSectionComposite.ChangeServerPropertyCommand;
public class RSEDeploymentPreferenceUI implements IDeploymentTypeUI {
+ static {
+ DeploymentModuleOptionCompositeAssistant.browseBehaviorMap.put("rse", new DeploymentModuleOptionCompositeAssistant.IBrowseBehavior() {
+ public String openBrowseDialog(ModuleDeploymentPage page, String original) {
+ String current = page.getServer().getAttribute(RSEUtils.RSE_SERVER_HOST, (String)null);
+ IHost h = findHost(current, null);
+ return browseClicked4(new Shell(), h);
+ }
+ });
+ }
+
public RSEDeploymentPreferenceUI() {
// Do nothing
}
@@ -116,16 +128,7 @@
}
protected String browseClicked3(Shell shell) {
- SystemRemoteFileDialog d = new SystemRemoteFileDialog(
- shell, RSEUIMessages.BROWSE_REMOTE_SYSTEM, combo.getHost());
- if( d.open() == Dialog.OK) {
- Object o = d.getOutputObject();
- if( o instanceof IRemoteFile ) {
- String path = ((IRemoteFile)o).getAbsolutePath();
- return path;
- }
- }
- return null;
+ return browseClicked4(getShell(), combo.getHost());
}
protected IJBossServerRuntime getRuntime() {
@@ -260,11 +263,7 @@
}
public IHost findHost(String name) {
- for( int i = 0; i < hosts.length; i++ ) {
- if( hosts[i].getAliasName().equals(name))
- return hosts[i];
- }
- return null;
+ return RSEDeploymentPreferenceUI.findHost(name, hosts);
}
public Combo getCombo() {
@@ -347,4 +346,28 @@
}
}
}
+
+
+ public static IHost findHost(String name, IHost[] hosts) {
+ if( hosts == null )
+ hosts = RSECorePlugin.getTheSystemRegistry().getHostsBySubSystemConfigurationCategory("files");
+ for( int i = 0; i < hosts.length; i++ ) {
+ if( hosts[i].getAliasName().equals(name))
+ return hosts[i];
+ }
+ return null;
+ }
+
+ public static String browseClicked4(Shell s, IHost host) {
+ SystemRemoteFileDialog d = new SystemRemoteFileDialog(
+ s, RSEUIMessages.BROWSE_REMOTE_SYSTEM, host);
+ if( d.open() == Dialog.OK) {
+ Object o = d.getOutputObject();
+ if( o instanceof IRemoteFile ) {
+ String path = ((IRemoteFile)o).getAbsolutePath();
+ return path;
+ }
+ }
+ return null;
+ }
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploymentModuleOptionCompositeAssistant.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploymentModuleOptionCompositeAssistant.java 2011-05-31 04:39:58 UTC (rev 31663)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploymentModuleOptionCompositeAssistant.java 2011-05-31 04:58:08 UTC (rev 31664)
@@ -231,9 +231,7 @@
}
public void widgetSelected(SelectionEvent e) {
- DirectoryDialog d = new DirectoryDialog(new Shell());
- d.setFilterPath(page.makeGlobal(deployText.getText()));
- String x = d.open();
+ String x = openBrowseDialog(deployText.getText());
if (x != null) {
deployText.setText(page.makeRelative(x));
}
@@ -261,9 +259,7 @@
}
public void widgetSelected(SelectionEvent e) {
- DirectoryDialog d = new DirectoryDialog(new Shell());
- d.setFilterPath(page.makeGlobal(tempDeployText.getText()));
- String x = d.open();
+ String x = openBrowseDialog(tempDeployText.getText());
if (x != null)
tempDeployText.setText(page.makeRelative(x));
}
@@ -352,7 +348,28 @@
showRadios = false;
return showRadios;
}
-
+ public static interface IBrowseBehavior {
+ public String openBrowseDialog(ModuleDeploymentPage page, String original);
+ }
+ public static HashMap<String, IBrowseBehavior> browseBehaviorMap = new HashMap<String, IBrowseBehavior>();
+ static {
+ browseBehaviorMap.put(LocalPublishMethod.LOCAL_PUBLISH_METHOD, new IBrowseBehavior() { //$NON-NLS-1$
+ public String openBrowseDialog(ModuleDeploymentPage page, String original) {
+ DirectoryDialog d = new DirectoryDialog(new Shell());
+ d.setFilterPath(page.makeGlobal(original));
+ return d.open();
+ }
+ });
+ }
+
+ protected String openBrowseDialog(String original) {
+ String mode = getServer().getAttributeHelper().getAttribute(IDeployableServer.SERVER_MODE, LocalPublishMethod.LOCAL_PUBLISH_METHOD);
+ IBrowseBehavior beh = browseBehaviorMap.get(mode);
+ if( beh == null )
+ beh = browseBehaviorMap.get(LocalPublishMethod.LOCAL_PUBLISH_METHOD); //$NON-NLS-1$
+ return beh.openBrowseDialog(page, original);
+ }
+
private void updateWidgets() {
if( getShowRadios()) {
metadataRadio.setSelection(getDeployType().equals(
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/tools/as/wst/server/ui/xpl/ServerActionProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/tools/as/wst/server/ui/xpl/ServerActionProvider.java 2011-05-31 04:39:58 UTC (rev 31663)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/tools/as/wst/server/ui/xpl/ServerActionProvider.java 2011-05-31 04:58:08 UTC (rev 31664)
@@ -46,7 +46,6 @@
import org.eclipse.wst.server.core.model.ServerDelegate;
import org.eclipse.wst.server.ui.internal.Messages;
import org.eclipse.wst.server.ui.internal.ServerUIPlugin;
-import org.eclipse.wst.server.ui.internal.Trace;
import org.eclipse.wst.server.ui.internal.actions.NewServerWizardAction;
import org.eclipse.wst.server.ui.internal.view.servers.CopyAction;
import org.eclipse.wst.server.ui.internal.view.servers.DeleteAction;
@@ -57,7 +56,6 @@
import org.eclipse.wst.server.ui.internal.view.servers.PasteAction;
import org.eclipse.wst.server.ui.internal.view.servers.PropertiesAction;
import org.eclipse.wst.server.ui.internal.view.servers.PublishAction;
-import org.eclipse.wst.server.ui.internal.view.servers.PublishCleanAction;
import org.eclipse.wst.server.ui.internal.view.servers.RemoveModuleAction;
import org.eclipse.wst.server.ui.internal.view.servers.RenameAction;
import org.eclipse.wst.server.ui.internal.view.servers.RestartModuleAction;
@@ -67,7 +65,6 @@
import org.eclipse.wst.server.ui.internal.view.servers.StartModuleAction;
import org.eclipse.wst.server.ui.internal.view.servers.StopAction;
import org.eclipse.wst.server.ui.internal.view.servers.StopModuleAction;
-import org.jboss.ide.eclipse.as.ui.actions.ExploreAction;
/**
* @deprecated
*/
@@ -127,7 +124,7 @@
IServer server = (IServer) data;
ServerUIPlugin.editServer(server);
} catch (Exception e) {
- Trace.trace(Trace.STRING_SEVERE, org.jboss.ide.eclipse.as.ui.Messages.ServerActionProvider_CouldNotOpenServerError, e);
+ //Trace.trace(Trace.STRING_SEVERE, org.jboss.ide.eclipse.as.ui.Messages.ServerActionProvider_CouldNotOpenServerError, e);
}
}
});
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/tools/as/wst/server/ui/xpl/ServerContentProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/tools/as/wst/server/ui/xpl/ServerContentProvider.java 2011-05-31 04:39:58 UTC (rev 31663)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/tools/as/wst/server/ui/xpl/ServerContentProvider.java 2011-05-31 04:58:08 UTC (rev 31664)
@@ -35,10 +35,8 @@
import org.eclipse.wst.server.core.internal.Server;
import org.eclipse.wst.server.core.internal.UpdateServerJob;
import org.eclipse.wst.server.core.util.PublishAdapter;
-import org.eclipse.wst.server.ui.internal.Trace;
import org.eclipse.wst.server.ui.internal.view.servers.ModuleServer;
import org.eclipse.wst.server.ui.internal.viewers.BaseContentProvider;
-import org.jboss.ide.eclipse.as.ui.Messages;
/**
* @deprecated
@@ -349,7 +347,7 @@
}
}
} catch (Exception e) {
- Trace.trace(Trace.STRING_FINEST, Messages.ServerContentProvider_ErrorInServersViewAnimation, e);
+ //Trace.trace(Trace.STRING_FINEST, Messages.ServerContentProvider_ErrorInServersViewAnimation, e);
}
display.timerExec(SLEEP, animator[0]);
}
13 years, 6 months
JBoss Tools SVN: r31663 - trunk/build/results.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-05-31 00:39:58 -0400 (Tue, 31 May 2011)
New Revision: 31663
Modified:
trunk/build/results/build.xml
Log:
look in ${output.dir}/zips/ for build.properties.all.xml; cleaner input
Modified: trunk/build/results/build.xml
===================================================================
--- trunk/build/results/build.xml 2011-05-31 04:11:42 UTC (rev 31662)
+++ trunk/build/results/build.xml 2011-05-31 04:39:58 UTC (rev 31663)
@@ -97,6 +97,8 @@
</if>
</sequential>
</macrodef>
+
+ <echoproperties/>
</target>
<!-- NEW STUFF HERE -->
@@ -134,22 +136,37 @@
</target>
<target name="buildResults" description="generate buildResults.html from build properties" depends="init">
- <for param="propertiesFile" delimiter=", " list="zips/build.properties.all.xml, ../../logs/zips/build.properties.all.xml">
+ <var name="propertiesFileFound" unset="true" />
+ <for param="propertiesFile" delimiter=", " list="${output.dir}/zips/build.properties.all.xml, zips/build.properties.all.xml, ../../logs/zips/build.properties.all.xml">
<sequential>
<if>
- <available file="@{propertiesFile}" type="file"/>
+ <and>
+ <available file="@{propertiesFile}" type="file" />
+ <not>
+ <isset property="propertiesFileFound" />
+ </not>
+ </and>
<then>
+ <var name="propertiesFileFound" value="true" />
<delete quiet="true" file="buildResults.out.html" />
<xslt in="@{propertiesFile}" out="buildResults.out.html" style="buildResults.xsl" force="true">
<classpath location="${COMMON_TOOLS}/saxon.jar" />
</xslt>
</then>
<else>
- <echo>Could not generate buildResults.out.html from zips/build.properties.all.xml - file does not exist!</echo>
</else>
</if>
</sequential>
</for>
+ <if>
+ <not>
+ <isset property="propertiesFileFound" />
+ </not>
+ <then>
+ <echo>Could not generate buildResults.out.html from zips/build.properties.all.xml - file does not exist!</echo>
+ </then>
+ </if>
+ <var name="propertiesFileFound" unset="true" />
</target>
</project>
13 years, 6 months
JBoss Tools SVN: r31662 - trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2011-05-31 00:11:42 -0400 (Tue, 31 May 2011)
New Revision: 31662
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIPlugin.java
Log:
RSE tab group was missing from jboss 7 server
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIPlugin.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIPlugin.java 2011-05-31 04:11:11 UTC (rev 31661)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.ui/src/org/jboss/ide/eclipse/as/rse/ui/RSEUIPlugin.java 2011-05-31 04:11:42 UTC (rev 31662)
@@ -2,6 +2,7 @@
import org.jboss.ide.eclipse.as.rse.core.RSEPublishMethod;
import org.jboss.ide.eclipse.as.ui.editor.DeploymentModuleOptionCompositeAssistant;
+import org.jboss.ide.eclipse.as.ui.launch.JBoss7LaunchConfigurationTabGroup;
import org.jboss.ide.eclipse.as.ui.launch.JBossLaunchConfigurationTabGroup;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
@@ -22,6 +23,7 @@
RSEUIPlugin.context = bundleContext;
DeploymentModuleOptionCompositeAssistant.addMapping(RSEPublishMethod.RSE_ID, new RSEDeploymentPageCallback());
JBossLaunchConfigurationTabGroup.addTabProvider(new RSELaunchTabProvider());
+ JBoss7LaunchConfigurationTabGroup.addTabProvider(new RSELaunchTabProvider());
}
/*
13 years, 6 months
JBoss Tools SVN: r31661 - in trunk/bpel/docs/reference/en-US: images/reference and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-05-31 00:11:11 -0400 (Tue, 31 May 2011)
New Revision: 31661
Added:
trunk/bpel/docs/reference/en-US/images/reference/View_Outline_01.png
trunk/bpel/docs/reference/en-US/images/reference/View_Outline_icon_01.png
trunk/bpel/docs/reference/en-US/images/reference/View_Outline_icon_02.png
Modified:
trunk/bpel/docs/reference/en-US/reference.xml
Log:
updated with beginning of references - view section
Added: trunk/bpel/docs/reference/en-US/images/reference/View_Outline_01.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/View_Outline_01.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/View_Outline_icon_01.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/View_Outline_icon_01.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/View_Outline_icon_02.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/View_Outline_icon_02.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: trunk/bpel/docs/reference/en-US/reference.xml
===================================================================
--- trunk/bpel/docs/reference/en-US/reference.xml 2011-05-31 03:41:36 UTC (rev 31660)
+++ trunk/bpel/docs/reference/en-US/reference.xml 2011-05-31 04:11:11 UTC (rev 31661)
@@ -287,6 +287,30 @@
</figure>
</section>
</section>
+ <section>
+ <title>Views</title>
+ <section>
+ <title>Outline</title>
+ <para>
+ The <guilabel>Outline</guilabel> view provides a structural layout of the BPEL process. You can view the process as either a hierarchical tree-structured outline (<inlinemediaobject><imageobject>
+ <imagedata fileref="images/reference/View_Outline_icon_01.png"/>
+ </imageobject>
+ </inlinemediaobject>) or as a thumbnail view (<inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/View_Outline_icon_02.png"/>
+ </imageobject>
+ </inlinemediaobject>), by pressing the associated button.
+ </para>
+ <figure>
+ <title>Outline view</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/View_Outline_01.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ </section>
<section>
<title>Editors</title>
<section>
13 years, 6 months
JBoss Tools SVN: r31660 - in trunk/bpel/docs/reference/en-US: images/reference and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-05-30 23:41:36 -0400 (Mon, 30 May 2011)
New Revision: 31660
Added:
trunk/bpel/docs/reference/en-US/concepts.xml
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Deyployment_Descriptor_01.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Perspective_01.png
trunk/bpel/docs/reference/en-US/images/reference/Create_a_BPEL_Process_File_01.png
trunk/bpel/docs/reference/en-US/images/reference/Create_a_BPEL_Process_File_02.png
trunk/bpel/docs/reference/en-US/images/reference/Create_a_BPEL_Process_File_03.png
Modified:
trunk/bpel/docs/reference/en-US/JBoss_BPEL_User_Guide.xml
trunk/bpel/docs/reference/en-US/install.xml
trunk/bpel/docs/reference/en-US/reference.xml
Log:
updated with new content from Bob
Modified: trunk/bpel/docs/reference/en-US/JBoss_BPEL_User_Guide.xml
===================================================================
--- trunk/bpel/docs/reference/en-US/JBoss_BPEL_User_Guide.xml 2011-05-31 03:24:27 UTC (rev 31659)
+++ trunk/bpel/docs/reference/en-US/JBoss_BPEL_User_Guide.xml 2011-05-31 03:41:36 UTC (rev 31660)
@@ -6,6 +6,7 @@
<xi:include href="overview.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="install.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="additionalreqs.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <xi:include href="concepts.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="tasks.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<!--<xi:include href="detail.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include> -->
<!--<xi:include href=deploy.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include> -->
Added: trunk/bpel/docs/reference/en-US/concepts.xml
===================================================================
--- trunk/bpel/docs/reference/en-US/concepts.xml (rev 0)
+++ trunk/bpel/docs/reference/en-US/concepts.xml 2011-05-31 03:41:36 UTC (rev 31660)
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<chapter id="concepts">
+ <title>Concepts</title>
+ <para>
+ <!--last paragraph for this chaper-->
+ This reference manual is not intended as a definitive reference for WS-BPEL 2.0. For more information on the BPEL language, refer to OASIS documentation available from <ulink url="http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html">http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html</ulink>
+ </para>
+</chapter>
Property changes on: trunk/bpel/docs/reference/en-US/concepts.xml
___________________________________________________________________
Added: svn:executable
+ *
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Deyployment_Descriptor_01.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Deyployment_Descriptor_01.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Perspective_01.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Perspective_01.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Create_a_BPEL_Process_File_01.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Create_a_BPEL_Process_File_01.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Create_a_BPEL_Process_File_02.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Create_a_BPEL_Process_File_02.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Create_a_BPEL_Process_File_03.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Create_a_BPEL_Process_File_03.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: trunk/bpel/docs/reference/en-US/install.xml
===================================================================
--- trunk/bpel/docs/reference/en-US/install.xml 2011-05-31 03:24:27 UTC (rev 31659)
+++ trunk/bpel/docs/reference/en-US/install.xml 2011-05-31 03:41:36 UTC (rev 31660)
@@ -7,7 +7,7 @@
<title>Installing JBoss Tools Plugins</title>
<para>
- The BPEL Tools plugin can be installed into Eclipse from the JBoss Tools update site. For more information, please read the <ulink url="http://download.jboss.org/jbosstools/nightly-docs/en/GettingStartedGuide/...">Getting Started Guide</ulink>.
+ The BPEL Tools plugin can be installed into Eclipse from the JBoss Tools extras site. For more information, please read the <ulink url="http://download.jboss.org/jbosstools/nightly-docs/en/GettingStartedGuide/...">Getting Started Guide</ulink>.
</para>
</section>
@@ -17,11 +17,11 @@
<title>Installing BPEL Tools in JBoss Developer Studio</title>
<para>
- The BPEL Tools plugin is not officially supported in JBoss Developer Studio 4.0, but is available as a separate download from the technical preview Eclipse update site.
+ The BPEL Tools plugin is now officially supported in JBoss Developer Studio 4.1,available as a separate download from the JBoss Developer Studio extras site.
</para>
<para>
- Instructions for accessing the the technical preview update site can be found in the <ulink url="http://docs.redhat.com/docs/en-US/JBoss_Developer_Studio/4.0/html-single/...">Getting Started Guide</ulink>.
+ Instructions for accessing the extras site can be found in the <ulink url="http://docs.redhat.com/docs/en-US/JBoss_Developer_Studio/4.1/html-single/...">Getting Started Guide</ulink>.
</para>
</section>
Modified: trunk/bpel/docs/reference/en-US/reference.xml
===================================================================
--- trunk/bpel/docs/reference/en-US/reference.xml 2011-05-31 03:24:27 UTC (rev 31659)
+++ trunk/bpel/docs/reference/en-US/reference.xml 2011-05-31 03:41:36 UTC (rev 31660)
@@ -4,55 +4,52 @@
<chapterinfo>
<keywordset>
<keyword>JBoss Tools</keyword>
- <keyword>BPEL</keyword>
- <keyword>JBT</keyword>
</keywordset>
</chapterinfo>
<title>Reference</title>
- <para>This chapter includes detailed reference information about all BPEL tools wizards and editors.</para>
+ <para>
+ Described are the user interface controls of BPEL Designer, and how they relate to the OASIS standard. If you are new to BPEL it is recommended that you first become familiar with the concepts surrounding the technology, detailed in <xref linkend="concepts"/>.
+ </para>
<section>
<title>Wizards</title>
<section>
- <title>New BPEL project Wizard</title>
- <para>This wizard is provided to create a new BPEL project. It is available by selecting <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>New</guimenuitem><guimenuitem>Other</guimenuitem><guimenuitem>BPEL project</guimenuitem></menuchoice>.</para>
+ <title>New BPEL project</title>
+ <para>The New BPEL Project wizard creates a faceted project which allows it to be deployed to the JBoss Riftsaw runtime engine. It is available by selecting <menuchoice>
+ <guimenuitem>File</guimenuitem>
+ <guimenuitem>New</guimenuitem>
+ <guimenuitem>Other</guimenuitem>
+ <guimenuitem>BPEL 2.0</guimenuitem>
+ <guimenuitem>BPEL Project</guimenuitem>
+ </menuchoice>.</para>
<figure>
<title>New BPEL Project Wizard</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/reference/bpel_ref_1.png"/>
+ <imagedata fileref="images/reference/New_BPEL_Project.png"/>
</imageobject>
</mediaobject>
</figure>
- <para>The wizard consists of two pages:</para>
- <itemizedlist>
- <listitem>
- <para>On the first page you can adjust the name of the project and the directory where it will be created.</para>
- <para>
- If the <guilabel>Use default location</guilabel> option is checked the output directory will be set to the workspace, otherwise a custom location can be specified by clicking the <guibutton>Browse</guibutton> button.
- </para>
- <figure>
- <title>New BPEL Project Wizard</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/reference/bpel_ref_2.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- </listitem>
- <listitem>
- <para>On the second page you can specify the name of the <guilabel>Content Folder</guilabel>.</para>
- <figure>
- <title>New BPEL Project Wizard</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/reference/bpel_ref_2a.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- </listitem>
- </itemizedlist>
- </section>
- <section>
+ <para>The wizard consists of a single page:</para>
+ <para>
+ Enter the project name and select its location. When the wizard is completed the following files would have been created:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <filename>bpelContent</filename> folder
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Project facet metadata
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>
+ The <filename>bpelContent</filename> folder contains all the files necessary for your project. This includes all WSDL and XSD files.
+ </para>
+ </section>
+ <!-- <section>
<title>Apache ODE Deployment Descriptor Wizard</title>
<para>This wizard can be used to create an ODE deployment descriptor (<filename>deploy.xml</filename>) file and place it in the temporary directory. It is available by selecting <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>New</guimenuitem><guimenuitem>Other</guimenuitem><guimenuitem>Apache ODE Deployment Descriptor Wizard</guimenuitem></menuchoice>.</para>
<figure>
@@ -67,22 +64,31 @@
On this page you can adjust the name of the deployment descriptor and the directory where it will be created. Note that you should use <filename>/PROJECT_NAME/bpelContent</filename> directory for the output.
</para>
- </section>
+ </section> -->
<section>
- <title>New BPEL Process file Wizard</title>
- <para>Using the <guilabel>New BPEL Process file Wizard</guilabel> it is possible to create a BPEL process file and a WSDL file.
- The wizard includes several pages:</para>
- <itemizedlist>
+ <title>New BPEL Process file</title>
+ <para>
+ The <guilabel>New BPEL Process File Wizard</guilabel> will create a BPEL process based on one of several templates defined by the wizard. The wizard assumes the new BPEL process is to be created in the curently selected project of the <guilabel>Project Explorer</guilabel> or <guilabel>Navigator</guilabel> view. If a BPEL process of the same name already exists within the project, a warning message will be displayed before any action is performed.
+ </para>
+ <figure>
+ <title>New BPEL Process</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Create_a_BPEL_Process_File_01.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
<listitem><para>The first page includes the following options:</para>
<table>
- <title>New BPEL Process file Wizard. First Page Options.</title>
+ <title>New BPEL Process file wizard. First page options.</title>
<tgroup cols="3">
<colspec colnum="1" align="left" colwidth="1*"/>
<colspec colnum="2" align="left" colwidth="3*"/>
<colspec colnum="3" align="left" colwidth="1*"/>
<thead>
<row>
- <entry>Option</entry>
+ <entry>Field</entry>
<entry>Description</entry>
<entry>Default</entry>
</row>
@@ -95,7 +101,8 @@
</row>
<row>
<entry>Namespace</entry>
- <entry>Enter the namespace url here</entry>
+ <entry>Enter the namespace URL. All namespaces should follow the W3C recommendation (<ulink url="http://www.w3.org/1999/10/nsuri">
+ http://www.w3.org/1999/10/nsuri</ulink>). </entry>
<entry>no default value</entry>
</row>
<row>
@@ -125,26 +132,29 @@
</tbody>
</tgroup>
</table>
+ <para>
+ The second page of the wizard defines the process interface (WSDL file) including the web service address, port definition and protocol. The wizard will populate all of these fields with appropriate default values based on the information provided on the previous page.
+ </para>
<figure>
- <title>New BPEL Process file Wizard</title>
+ <title>New BPEL Process</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/reference/bpel_ref_3.png"/>
+ <imagedata fileref="images/reference/Create_a_BPEL_Process_File_02.png"/>
</imageobject>
</mediaobject>
</figure>
</listitem>
- <listitem><para>The second page include the following options:</para>
+ <listitem><para>The second page includes the following options:</para>
<table>
- <title>New BPEL Process file Wizard. Second Page Options.</title>
+ <title>New BPEL process file wizard. Second page options.</title>
<tgroup cols="3">
<colspec align="left" colnum="1" colwidth="1*"></colspec>
<colspec align="left" colnum="2" colwidth="3*"></colspec>
<colspec align="left" colnum="3" colwidth="1*"></colspec>
<thead>
<row>
- <entry>Option</entry>
+ <entry>Field</entry>
<entry>Description</entry>
<entry>Default</entry>
</row>
@@ -174,32 +184,109 @@
</tbody>
</tgroup>
</table>
- <figure float="0">
- <title>New BPEL Process file Wizard</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/reference/bpel_ref_3a.png"></imagedata>
- </imageobject>
- </mediaobject>
- </figure>
- </listitem>
- <listitem><para>On the third page the user should select the BPEL project and folder where the process file will be created:</para>
- <figure>
- <title>New BPEL Process file Wizard</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/reference/bpel_ref_4.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- </listitem>
+ </listitem>
+ <!-- <important>
+ <para>
+ The JBoss Riftsaw engine currently only supports the SOAP binding protocol
+ </para>
+ </important> -->
+ <listitem>
+ <para>
+ The final page allows you to select the target project and folder for the new process artifacts. If a process with the name you provided already exists in that project and folder, the wizard will display an error message.
+ </para>
+ <para>
+ If the project is not a BPEL Project (does not define a BPEL facet) the wizard will display a warning message. You can still create the BPEL process, however it will not be deployable to a BPEL runtime engine until the BPEL facet has been added to the project (see the <guimenuitem>Help</guimenuitem> menu for more information about project facets).
+ </para>
+ <important>
+ <para>
+ BPEL artifacts must be contained somewhere within the <filename>bpelContent</filename> folder hierarchy if you intend to deploy the process. Complex projects may be organized into a folder hierarchy, but these folders must be contained within <filename>bpelContent</filename>.
+ </para>
+ <para>
+ The <filename>Deployment Descriptor</filename> file must be contained within the <filename>bpelContent</filename> folder and at the root of any folder hierarchy.
+ </para>
+ </important>
+ <figure>
+ <title>New BPEL Process</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Create_a_BPEL_Process_File_03.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ You will be asked if you wish for the BPEL persepective to be opened once this wizard completes.
+ </para>
+ </listitem>
</itemizedlist>
- <note>
- <para>Process files that are used in the BPEL project must be under the <filename>bpelContent</filename> folder. This is necessary for the files to be deployed to a JBoss server.
- </para>
- </note>
</section>
+ <section>
+ <title>New BPEL Deployment Descriptor</title>
+ <para>
+ Use this wizard to create a <filename>Deployment Descriptor</filename> file. This file is a manifest for the web service and is required if the BPEL process is to be deployed to a runtime engine.
+ </para>
+ <figure>
+ <title>BPEL Deployment Descriptor</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Deyployment_Descriptor_01.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem>
+ <para>The page includes the following options:</para>
+ <table>
+ <title>New BPEL Process file wizard. First page options.</title>
+ <tgroup cols="2">
+ <colspec colnum="1" align="left" colwidth="1*"/>
+ <colspec colnum="2" align="left" colwidth="3*"/>
+ <thead>
+ <row>
+ <entry>Field</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>BPEL Project</entry>
+ <entry>Select the project and folder where the new <filename>Deployment Descriptor</filename> will be created. This must also be the root folder that contains the BPEL processes.</entry>
+ </row>
+ <row>
+ <entry>File name</entry>
+ <entry>This field is automatically filled and cannot be edited.</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <para>
+ The BPEL Deployment Descriptor Editor will open once this wizard completes.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
+ <section>
+ <title>Perspectives</title>
+ <section>
+ <title>BPEL Perspective</title>
+ <para>
+ The BPEL Perspective is designed to facilitate the development and deployment of BPEL processes and their artifacts. To open this perspective navigate to <menuchoice>
+ <guimenuitem>Window</guimenuitem>
+ <guimenuitem>Open Perspective</guimenuitem>
+ <guimenuitem>Other</guimenuitem>
+ <guimenuitem>BPEL</guimenuitem>
+ </menuchoice> and click <guibutton>OK</guibutton>.
+ </para>
+ <figure>
+ <title>BPEL Perspective default layout</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Perspective_01.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ </section>
<section>
<title>Editors</title>
<section>
13 years, 6 months
JBoss Tools SVN: r31658 - in trunk/download.jboss.org/jbosstools/updates: indigo/RC2 and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-05-30 23:22:33 -0400 (Mon, 30 May 2011)
New Revision: 31658
Removed:
trunk/download.jboss.org/jbosstools/updates/requirements/orbit/index.html~
Modified:
trunk/download.jboss.org/jbosstools/updates/helios/compositeArtifacts.xml
trunk/download.jboss.org/jbosstools/updates/helios/compositeContent.xml
trunk/download.jboss.org/jbosstools/updates/indigo/RC2/compositeArtifacts...
trunk/download.jboss.org/jbosstools/updates/indigo/RC2/compositeContent.xml
Log:
use newer Orbit R build
Modified: trunk/download.jboss.org/jbosstools/updates/helios/compositeArtifacts.xml
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/helios/compositeArtifacts.xml 2011-05-31 03:22:05 UTC (rev 31657)
+++ trunk/download.jboss.org/jbosstools/updates/helios/compositeArtifacts.xml 2011-05-31 03:22:33 UTC (rev 31658)
@@ -12,7 +12,7 @@
endfun
nnoremap <Leader>ts :call ReplaceTimestamp()<CR>
-->
-<property name='p2.timestamp' value='1306808872000'/>
+<property name='p2.timestamp' value='1306811742000'/>
</properties>
<children size='19'>
<child location='../requirements/helios/SR2/'/>
@@ -27,7 +27,7 @@
<child location='../requirements/mylyn/3.6-I20110415-0655/'/>
<child location='../requirements/m2eclipse/0.12/'/>
-<child location='../requirements/orbit/S20110124210048/'/>
+<child location='../../requirements/orbit/R20110523182458/'/>
<child location='../requirements/pmd/3.2.6/'/>
<child location='../requirements/springide/2.5.1.201011101000/'/>
<child location='../requirements/subclipse/1.6_1.3/'/>
Modified: trunk/download.jboss.org/jbosstools/updates/helios/compositeContent.xml
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/helios/compositeContent.xml 2011-05-31 03:22:05 UTC (rev 31657)
+++ trunk/download.jboss.org/jbosstools/updates/helios/compositeContent.xml 2011-05-31 03:22:33 UTC (rev 31658)
@@ -12,7 +12,7 @@
endfun
nnoremap <Leader>ts :call ReplaceTimestamp()<CR>
-->
-<property name='p2.timestamp' value='1306808872000'/>
+<property name='p2.timestamp' value='1306811742000'/>
</properties>
<children size='19'>
<child location='../requirements/helios/SR2/'/>
@@ -27,7 +27,7 @@
<child location='../requirements/mylyn/3.6-I20110415-0655/'/>
<child location='../requirements/m2eclipse/0.12/'/>
-<child location='../requirements/orbit/S20110124210048/'/>
+<child location='../../requirements/orbit/R20110523182458/'/>
<child location='../requirements/pmd/3.2.6/'/>
<child location='../requirements/springide/2.5.1.201011101000/'/>
<child location='../requirements/subclipse/1.6_1.3/'/>
Modified: trunk/download.jboss.org/jbosstools/updates/indigo/RC2/compositeArtifacts...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/indigo/RC2/compositeArtifacts... 2011-05-31 03:22:05 UTC (rev 31657)
+++ trunk/download.jboss.org/jbosstools/updates/indigo/RC2/compositeArtifacts... 2011-05-31 03:22:33 UTC (rev 31658)
@@ -12,7 +12,7 @@
endfun
nnoremap <Leader>ts :call ReplaceTimestamp()<CR>
-->
-<property name='p2.timestamp' value='1306775419000'/>
+<property name='p2.timestamp' value='1306811742000'/>
</properties>
<children size='18'>
<child location='../../requirements/indigo/201105270900-RC2/'/>
@@ -23,7 +23,7 @@
<child location='../../requirements/m2eclipse/0.13.0.201105260005/'/>
<child location='../../requirements/mylyn/3.6-I20110526-2115/'/>
-<child location='../../requirements/orbit/S20110523182458/'/>
+<child location='../../requirements/orbit/R20110523182458/'/>
<child location='../../requirements/ecf/3.5/'/>
<child location='../../requirements/egit/0.11/'/>
Modified: trunk/download.jboss.org/jbosstools/updates/indigo/RC2/compositeContent.xml
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/indigo/RC2/compositeContent.xml 2011-05-31 03:22:05 UTC (rev 31657)
+++ trunk/download.jboss.org/jbosstools/updates/indigo/RC2/compositeContent.xml 2011-05-31 03:22:33 UTC (rev 31658)
@@ -12,7 +12,7 @@
endfun
nnoremap <Leader>ts :call ReplaceTimestamp()<CR>
-->
-<property name='p2.timestamp' value='1306775423000'/>
+<property name='p2.timestamp' value='1306811742000'/>
</properties>
<children size='18'>
<child location='../../requirements/indigo/201105270900-RC2/'/>
@@ -23,7 +23,7 @@
<child location='../../requirements/m2eclipse/0.13.0.201105260005/'/>
<child location='../../requirements/mylyn/3.6-I20110526-2115/'/>
-<child location='../../requirements/orbit/S20110523182458/'/>
+<child location='../../requirements/orbit/R20110523182458/'/>
<child location='../../requirements/ecf/3.5/'/>
<child location='../../requirements/egit/0.11/'/>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/orbit/index.html~
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/orbit/index.html~ 2011-05-31 03:22:05 UTC (rev 31657)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/orbit/index.html~ 2011-05-31 03:22:33 UTC (rev 31658)
@@ -1,69 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - Orbit Update Sites</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - Orbit Update Sites</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=R20100519200754>R20100519200754</a> </li>
-<li><a class=link href=S20100831105311>S20100831105311</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
13 years, 6 months
JBoss Tools SVN: r31657 - in trunk/download.jboss.org/jbosstools/updates/requirements: egit and 14 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-05-30 23:22:05 -0400 (Mon, 30 May 2011)
New Revision: 31657
Removed:
trunk/download.jboss.org/jbosstools/updates/requirements/eclipse/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/egit/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/emf/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/helios/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/indigo/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/jslint/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/m2eclipse/index....
trunk/download.jboss.org/jbosstools/updates/requirements/orbit/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/pmd/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/springide/index....
trunk/download.jboss.org/jbosstools/updates/requirements/subclipse/index....
trunk/download.jboss.org/jbosstools/updates/requirements/subversive/index...
trunk/download.jboss.org/jbosstools/updates/requirements/swtbot/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/testng/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/tptp/index.html
trunk/download.jboss.org/jbosstools/updates/requirements/webtools/index.html
Log:
remove unnecessary index.html pages
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/eclipse/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/eclipse/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/eclipse/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,71 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - Eclipse Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - Eclipse Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=3.7RC3>3.7RC3</a> </li>
-<li><a class=link href=3.7RC2>3.7RC2</a> </li>
-<li><a class=link href=3.7M7>3.7M7</a> </li>
-<li><a class=link href=3.6.2>3.6.2</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/egit/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/egit/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/egit/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,68 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - egit Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - egit Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=0.11>0.11</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/emf/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/emf/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/emf/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,71 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - EMF Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - EMF Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=2.7RC3>2.7RC3</a> </li>
-<li><a class=link href=2.7RC2>2.7RC2</a> </li>
-<li><a class=link href=2.7M7>2.7M7</a> </li>
-<li><a class=link href=2.6>2.6</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/helios/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/helios/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/helios/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,68 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - Eclipse Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - Eclipse Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=SR2>SR2</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/indigo/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/indigo/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/indigo/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,70 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - Indigo Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - Indigo Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=201105270900-RC2>201105270900-RC2</a> </li>
-<li><a class=link href=201105060900-M7>201105060900-M7</a> </li>
-<li><a class=link href=201103180900-M6>201103180900-M6</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/jslint/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/jslint/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/jslint/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,68 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - jslint Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - jslint Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=1.5>1.5</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/m2eclipse/index....
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/m2eclipse/index.... 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/m2eclipse/index.... 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,71 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - m2eclipse Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - m2eclipse Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=0.13.0.201105260005>0.13.0.201105260005</a> (Indigo RC2) </li>
-<li><a class=link href=0.13.0.201105091504>0.13.0.201105091504</a> (Indigo M7) </li>
-<li><a class=link href=0.13.0.201103291237>0.13.0.201103291237</a> (Indigo M6) </li>
-<li><a class=link href=0.12>0.12</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/orbit/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/orbit/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/orbit/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,71 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - Orbit Update Sites</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - Orbit Update Sites</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=S20110523182458>S20110523182458</a> </li>
-<li><a class=link href=S20110515001817>S20110515001817</a> </li>
-<li><a class=link href=S20110124210048>S20110124210048</a> </li>
-<li><a class=link href=R20100519200754>R20100519200754</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/pmd/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/pmd/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/pmd/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,68 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - pmd Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - pmd Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=3.2.6>3.2.6</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/springide/index....
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/springide/index.... 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/springide/index.... 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,69 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - springide Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - springide Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=2.6.0.201103160035>2.6.0.201103160035</a> </li>
-<li><a class=link href=2.5.1.201011101000>2.5.1.201011101000</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/subclipse/index....
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/subclipse/index.... 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/subclipse/index.... 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,68 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - Subclipse Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - Subclipse Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=1.6_1.3>1.6_1.3</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/subversive/index...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/subversive/index... 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/subversive/index... 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,68 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - Subversive Team/PDE Providers + Connectors</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - Subversive Team/PDE Providers + Connectors</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=0.7.9_2.2.2_1.3>0.7.9_2.2.2_1.3</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/swtbot/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/swtbot/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/swtbot/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,69 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - SWTBot Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - SWTBot Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=2.0.3>2.0.3</a> </li>
-<li><a class=link href=2.0.4>2.0.4</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/testng/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/testng/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/testng/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,69 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - testng Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - testng Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=6.0.1.20110418_1444>6.0.1.20110418_1444</a> </li>
-<li><a class=link href=5.14.6.20110119_1050>5.14.6.20110119_1050</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/tptp/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/tptp/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/tptp/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,68 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - TPTP Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - TPTP Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=4.7>4.7</a> </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/requirements/webtools/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/requirements/webtools/index.html 2011-05-31 03:03:08 UTC (rev 31656)
+++ trunk/download.jboss.org/jbosstools/updates/requirements/webtools/index.html 2011-05-31 03:22:05 UTC (rev 31657)
@@ -1,70 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools Build Requirements - Webtools Updates</title>
-<style>
-@import url("../../web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>  </td>
- </tr>
- <tr>
- <td>  </td>
- <td>
- <h2 class="title">JBoss Tools Build Requirements - Webtools Updates</h2>
- <table width="100%">
-
- <!-- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText"></p>
- </td>
- </tr> -->
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <!-- <p class="bodyText"></p> -->
-
-<!-- to convert raw fish listing to links do this in vi
-
-:%s#^sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/\(.\+\)$#<li><a class=link href=\1>\1<\/a></li>#g
-
-Then sftp file into
-
-tools(a)filemgmt.jboss.org/downloads_htdocs/tools/updates/requirements/
-
-which becomes
-
-http://download.jboss.org/jbosstools/updates/requirements/
-
--->
- <br/>
- <ul>
-<li><a class=link href=3.3RC2>3.3RC2</a> (Indigo) </li>
-<li><a class=link href=3.3M7>3.3M7</a> (Indigo) </li>
-<li><a class=link href=3.2.3>3.2.3</a> (Helios) </li>
- </ul>
- <br/>
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Looking to download JBoss Tools? See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>. See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</html>
13 years, 6 months