JBoss Tools SVN: r35108 - in trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core: internal and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-09-28 06:32:56 -0400 (Wed, 28 Sep 2011)
New Revision: 35108
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/IUser.java
trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/internal/InternalUser.java
Log:
[JBIDE-9773] completed IUser interface
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/IUser.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/IUser.java 2011-09-28 07:58:24 UTC (rev 35107)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/IUser.java 2011-09-28 10:32:56 UTC (rev 35108)
@@ -22,6 +22,8 @@
public String getPassword();
+ public String getUUID() throws OpenshiftException;
+
public IDomain getDomain() throws OpenshiftException;
public ISSHPublicKey getSshKey() throws OpenshiftException;
@@ -33,5 +35,7 @@
public Collection<IApplication> getApplications() throws OpenshiftException;
public IApplication getApplicationByName(String name) throws OpenshiftException;
+
+ public void refresh() throws OpenshiftException;
}
\ No newline at end of file
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/internal/InternalUser.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/internal/InternalUser.java 2011-09-28 07:58:24 UTC (rev 35107)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.openshift.core/src/org/jboss/ide/eclipse/as/openshift/core/internal/InternalUser.java 2011-09-28 10:32:56 UTC (rev 35108)
@@ -52,6 +52,7 @@
this.service = service;
}
+ @Override
public IDomain getDomain() throws OpenshiftException {
if (domain == null) {
this.domain = new Domain(
@@ -61,6 +62,7 @@
return domain;
}
+ @Override
public ISSHPublicKey getSshKey() throws OpenshiftException {
if (sshKey == null) {
sshKey = getUserInfo().getSshPublicKey();
@@ -68,18 +70,22 @@
return sshKey;
}
+ @Override
public String getRhlogin() {
return rhlogin;
}
+ @Override
public String getPassword() {
return password;
}
+ @Override
public String getUUID() throws OpenshiftException {
return getUserInfo().getUuid();
}
+ @Override
public List<ICartridge> getCartridges() throws OpenshiftException {
if (cartridges == null) {
this.cartridges = service.getCartridges(this);
@@ -87,12 +93,14 @@
return Collections.unmodifiableList(cartridges);
}
+ @Override
public IApplication createApplication(String name, ICartridge cartridge) throws OpenshiftException {
Application application = service.createApplication(name, cartridge, this);
add(application);
return application;
}
+ @Override
public Collection<IApplication> getApplications() throws OpenshiftException {
if (getUserInfo().getApplicationInfos().size() > applications.size()) {
update(getUserInfo().getApplicationInfos());
@@ -100,6 +108,7 @@
return Collections.unmodifiableList(applications);
}
+ @Override
public IApplication getApplicationByName(String name) throws OpenshiftException {
return getApplicationByName(name, getApplications());
}
@@ -133,6 +142,7 @@
return userInfo;
}
+ @Override
public void refresh() throws OpenshiftException {
this.domain = null;
this.sshKey = null;
@@ -158,5 +168,4 @@
protected IOpenshiftService getService() {
return service;
}
-
}
14 years, 2 months
JBoss Tools SVN: r35107 - trunk/vpe/plugins/org.jboss.tools.vpe.base.test/src/org/jboss/tools/vpe/base/test.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2011-09-28 03:58:24 -0400 (Wed, 28 Sep 2011)
New Revision: 35107
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe.base.test/src/org/jboss/tools/vpe/base/test/VpeTest.java
Log:
https://issues.jboss.org/browse/JBIDE-9681 , JUnit has been updated.
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.base.test/src/org/jboss/tools/vpe/base/test/VpeTest.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.base.test/src/org/jboss/tools/vpe/base/test/VpeTest.java 2011-09-28 07:55:38 UTC (rev 35106)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.base.test/src/org/jboss/tools/vpe/base/test/VpeTest.java 2011-09-28 07:58:24 UTC (rev 35107)
@@ -361,8 +361,11 @@
assertNotNull(getSelectedNode(xulRunnerEditor));
nsIDOMNode sample;
- if (sourceNode.getNodeType() == Node.TEXT_NODE) {
-
+ if ((sourceNode.getNodeType() == Node.TEXT_NODE)
+ && (((VpeElementMapping) nodeMapping).getElementData() != null)) {
+ /*
+ * ElementData could be null. Thus the check is required.
+ */
sample = ((VpeElementMapping) nodeMapping).getElementData()
.getNodesData().get(0).getVisualNode();
} else {
14 years, 2 months
JBoss Tools SVN: r35106 - trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2011-09-28 03:55:38 -0400 (Wed, 28 Sep 2011)
New Revision: 35106
Modified:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/JSPMultiPageContributor.java
Log:
https://issues.jboss.org/browse/JBIDE-9681 , Undo/Redo actions missed Global visibility in JSPMultiPageContributor. Corrected.
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/JSPMultiPageContributor.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/JSPMultiPageContributor.java 2011-09-28 03:57:33 UTC (rev 35105)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/JSPMultiPageContributor.java 2011-09-28 07:55:38 UTC (rev 35106)
@@ -115,49 +115,48 @@
cleanStatusLine();
fActiveEditorPart = part;
IActionBars actionBars = getActionBars();
+ /*
+ * https://issues.jboss.org/browse/JBIDE-9681
+ * 'part' is VpeEditorPart class.
+ * It should be cast to ITextEditor.
+ */
+ ITextEditor textEditor = getTextEditor(part);
if (actionBars != null) {
-
- ITextEditor editor = (part instanceof ITextEditor) ? (ITextEditor) part
- : null;
- if (editor != null) {
-
+ if (textEditor != null) {
actionBars.setGlobalActionHandler(ActionFactory.DELETE.getId(),
- getAction(editor, ITextEditorActionConstants.DELETE));
+ getAction(textEditor, ITextEditorActionConstants.DELETE));
actionBars.setGlobalActionHandler(ActionFactory.UNDO.getId(),
- getAction(editor, ITextEditorActionConstants.UNDO));
+ getAction(textEditor, ITextEditorActionConstants.UNDO));
actionBars.setGlobalActionHandler(ActionFactory.REDO.getId(),
- getAction(editor, ITextEditorActionConstants.REDO));
+ getAction(textEditor, ITextEditorActionConstants.REDO));
actionBars.setGlobalActionHandler(ActionFactory.CUT.getId(),
- getAction(editor, ITextEditorActionConstants.CUT));
+ getAction(textEditor, ITextEditorActionConstants.CUT));
actionBars.setGlobalActionHandler(ActionFactory.COPY.getId(),
- getAction(editor, ITextEditorActionConstants.COPY));
+ getAction(textEditor, ITextEditorActionConstants.COPY));
actionBars.setGlobalActionHandler(ActionFactory.PASTE.getId(),
- getAction(editor, ITextEditorActionConstants.PASTE));
+ getAction(textEditor, ITextEditorActionConstants.PASTE));
actionBars.setGlobalActionHandler(ActionFactory.SELECT_ALL
- .getId(), getAction(editor,
+ .getId(), getAction(textEditor,
ITextEditorActionConstants.SELECT_ALL));
actionBars.setGlobalActionHandler(ActionFactory.FIND.getId(),
- getAction(editor, ITextEditorActionConstants.FIND));
+ getAction(textEditor, ITextEditorActionConstants.FIND));
actionBars.setGlobalActionHandler(IDEActionFactory.BOOKMARK
- .getId(), getAction(editor, IDEActionFactory.BOOKMARK
+ .getId(), getAction(textEditor, IDEActionFactory.BOOKMARK
.getId()));
actionBars.setGlobalActionHandler(IDEActionFactory.ADD_TASK
- .getId(), getAction(editor, IDEActionFactory.ADD_TASK
+ .getId(), getAction(textEditor, IDEActionFactory.ADD_TASK
.getId()));
actionBars.setGlobalActionHandler(ActionFactory.PRINT.getId(),
- getAction(editor, ITextEditorActionConstants.PRINT));
+ getAction(textEditor, ITextEditorActionConstants.PRINT));
actionBars.setGlobalActionHandler(ActionFactory.REVERT.getId(),
- getAction(editor, ITextEditorActionConstants.REVERT));
+ getAction(textEditor, ITextEditorActionConstants.REVERT));
actionBars.setGlobalActionHandler(ActionFactory.SAVE.getId(),
- getAction(editor, ITextEditorActionConstants.SAVE));
-
+ getAction(textEditor, ITextEditorActionConstants.SAVE));
//TODO-3.3: keep checking if 'quick fix' action appears in WTP
// fQuickFix
// .setAction(getAction(
- // editor,
+ // textEditor,
// StructuredTextEditorActionConstants.ACTION_NAME_QUICK_FIX));
-
-
}
// re-register action on key binding service
@@ -169,7 +168,7 @@
handler = (IHandlerService) mainPart.getEditorSite()
.getService(IHandlerService.class);
}
- if (editor != null && handler != null) {
+ if (textEditor != null && handler != null) {
// editor
// registerKeyBindings(handler, ACTIONS_2, editor);
String[] ACTIONS_3 = {
@@ -183,12 +182,11 @@
cleanActionBarStatus();
actionBars.updateActionBars();
}
-
- ITextEditor textEditor = getTextEditor(part);
-
+ /*
+ * textEditor is defined on the top.
+ */
fToggleOccurencesMarkUp.setEditor(textEditor);
fToggleOccurencesMarkUp.update();
-
fGoToMatchingTagAction.setEditor(textEditor);
if (textEditor != null) {
textEditor.setAction(GO_TO_MATCHING_TAG_ID, fGoToMatchingTagAction);
14 years, 2 months
JBoss Tools SVN: r35105 - trunk/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-09-27 23:57:33 -0400 (Tue, 27 Sep 2011)
New Revision: 35105
Modified:
trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
Log:
upadted
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-09-28 03:03:56 UTC (rev 35104)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-09-28 03:57:33 UTC (rev 35105)
@@ -18,18 +18,23 @@
</itemizedlist>
</para>
</formalpara> -->
- <!-- <formalpara>
+ <formalpara>
<title>Contexts and Dependency Injection (CDI)</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-9734">JBIDE-9734</ulink>: The CDI validator would treat <property>@Inject</property> and <property>@RestClient("...") ServiceInterface</property> injection as unstatisfied dependencies. This caused an incorrect warning message to appear. To fix the issue, the CDI Seam Core Rest files have been modified to correctly validate <property>@Inject</property> and <property>@RestClient("...") ServiceInterface</property> properties, ensuring the warning message no longer appears.
</para>
</listitem>
+ <listitem>
+ <para>
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-9685">JBIDE-9685</ulink>: A new feature has been added to the CDI validator making it aware of JMS resource injections. This ensures correct validation of JMS injections that also have a JMS destination.
+ </para>
+ </listitem>
</itemizedlist>
</para>
- </formalpara> -->
+ </formalpara>
<!-- Deltacloud is only shipped with JBoss.org -->
<!--
<formalpara>
@@ -241,18 +246,18 @@
</itemizedlist>
</para>
</formalpara>-->
- <!-- <formalpara>
+<!-- <formalpara>
<title>Visual Page Editor</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
</para>
</listitem>
</itemizedlist>
</para>
- </formalpara>-->
+ </formalpara> -->
<!-- <formalpara>
<title>Web Tools Platform</title>
<para>
@@ -289,16 +294,23 @@
</itemizedlist>
</para>
</formalpara>-->
-<!-- <formalpara>
+ <formalpara>
<title>General Issues</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
+ <!--This item is only for JBDS -->
+ <ulink url="http://jira.jboss.com/jira/browse/JBDS-1673">JBDS-1673</ulink>: The JBoss Developer Studio installer server detection did not allign with runtime detection from within the tooling. When detection plug-ins were updated, new servers were not automatically detected due to the code split between detection through the product installation wizard and runtime detection within the user interface. In this release, on first start-up, the installer asks for a list of directories to scan for new servers. The directory selected will then be optionally scanned on every subsequent launch of the JBoss Developer Studio and new discovered servers will be displayed in a list to the user. This allows for new servers to be detected, while not having to duplicate the code and combine it with the runtime detection available from within JBoss Developer Studio.
</para>
</listitem>
+ <listitem>
+ <para>
+ <!--This item is only for JBDS -->
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-9497">JBIDE-9497</ulink>: JBoss Developer Studio now supports the deployment of standalone SAR projects. To undertake this a new wizard has been created to take a user through the process. For further information see the relevant documentation accompanying this release.
+ </para>
+ </listitem>
</itemizedlist>
</para>
- </formalpara> -->
+ </formalpara>
</section>
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2011-09-28 03:03:56 UTC (rev 35104)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2011-09-28 03:57:33 UTC (rev 35105)
@@ -4,16 +4,23 @@
<para>
JBoss Developer Studio 5.0 is a major release of the Eclipse based IDE developed and supported by Red Hat (the visual tooling components are supported for 3 years, and the runtime platform for 5 years). The IDE, which is available for Windows, Linux and OS X, provides tooling that allows for rapid Web 2.0 application development on the JBoss Enterprise Application Platform. This release also improves support for SOA application development with the JBoss Enterprise SOA Platform.
</para>
-<!-- <para>
+ <para>
JBoss Developer Studio 5.0 contains many new features, including:
</para>
<itemizedlist>
<listitem>
<para>
-
+ OpenShift Express support
+ <!-- https://issues.jboss.org/browse/JBIDE-9591 -->
</para>
</listitem>
- </itemizedlist> -->
+ <listitem>
+ <para>
+ SAR project deployment
+ <!-- https://issues.jboss.org/browse/JBIDE-9497 -->
+ </para>
+ </listitem>
+ </itemizedlist>
<important>
<para>
If you are installing on a Linux distribution you must set the following limits in <filename>/etc/security/limits.conf</filename> upon installation completion and before running JBoss Developer Studio:
14 years, 2 months
JBoss Tools SVN: r35104 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-09-27 23:03:56 -0400 (Tue, 27 Sep 2011)
New Revision: 35104
Modified:
trunk/build/target-platform/jbds.target
trunk/build/target-platform/multiple.target
trunk/build/target-platform/unified.target
Log:
updated versions of mylyn plugins
Modified: trunk/build/target-platform/jbds.target
===================================================================
--- trunk/build/target-platform/jbds.target 2011-09-28 02:50:18 UTC (rev 35103)
+++ trunk/build/target-platform/jbds.target 2011-09-28 03:03:56 UTC (rev 35104)
@@ -47,11 +47,11 @@
<unit id="org.eclipse.mylyn_feature.feature.group" version="3.6.2.v20110908-0706"/>
<unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
<unit id="org.eclipse.mylyn.commons.core" version="3.6.0.I20110523-2039"/>
- <unit id="org.eclipse.mylyn.discovery.ui" version="3.6.0.I20110523-2039"/>
- <unit id="org.eclipse.mylyn.discovery.core" version="3.6.0.I20110523-2039"/>
+ <unit id="org.eclipse.mylyn.discovery.ui" version="3.6.1.v20110819-0100"/>
+ <unit id="org.eclipse.mylyn.discovery.core" version="3.6.1.v20110817-0100"/>
<unit id="org.eclipse.mylyn.commons.ui" version="3.6.0.I20110523-2039"/>
<unit id="org.eclipse.mylyn.commons.net" version="3.6.0.I20110523-2039"/>
- <unit id="org.eclipse.mylyn.commons.screenshots" version="3.6.0.I20110523-2039"/>
+ <unit id="org.eclipse.mylyn.commons.screenshots" version="3.6.0.v20110608-1400"/>
<unit id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
<!-- Orbit bundles needed for Eclipse Checkstyle (eclipse-cs) -->
Modified: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2011-09-28 02:50:18 UTC (rev 35103)
+++ trunk/build/target-platform/multiple.target 2011-09-28 03:03:56 UTC (rev 35104)
@@ -49,11 +49,11 @@
<unit id="org.eclipse.mylyn_feature.feature.group" version="3.6.2.v20110908-0706"/>
<unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
<unit id="org.eclipse.mylyn.commons.core" version="3.6.0.I20110523-2039"/>
- <unit id="org.eclipse.mylyn.discovery.ui" version="3.6.0.I20110523-2039"/>
- <unit id="org.eclipse.mylyn.discovery.core" version="3.6.0.I20110523-2039"/>
+ <unit id="org.eclipse.mylyn.discovery.ui" version="3.6.1.v20110819-0100"/>
+ <unit id="org.eclipse.mylyn.discovery.core" version="3.6.1.v20110817-0100"/>
<unit id="org.eclipse.mylyn.commons.ui" version="3.6.0.I20110523-2039"/>
<unit id="org.eclipse.mylyn.commons.net" version="3.6.0.I20110523-2039"/>
- <unit id="org.eclipse.mylyn.commons.screenshots" version="3.6.0.I20110523-2039"/>
+ <unit id="org.eclipse.mylyn.commons.screenshots" version="3.6.0.v20110608-1400"/>
<unit id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
<!-- Orbit bundles needed for Eclipse Checkstyle (eclipse-cs) -->
Modified: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2011-09-28 02:50:18 UTC (rev 35103)
+++ trunk/build/target-platform/unified.target 2011-09-28 03:03:56 UTC (rev 35104)
@@ -49,11 +49,11 @@
<unit id="org.eclipse.mylyn_feature.feature.group" version="3.6.2.v20110908-0706"/>
<unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
<unit id="org.eclipse.mylyn.commons.core" version="3.6.0.I20110523-2039"/>
- <unit id="org.eclipse.mylyn.discovery.ui" version="3.6.0.I20110523-2039"/>
- <unit id="org.eclipse.mylyn.discovery.core" version="3.6.0.I20110523-2039"/>
+ <unit id="org.eclipse.mylyn.discovery.ui" version="3.6.1.v20110819-0100"/>
+ <unit id="org.eclipse.mylyn.discovery.core" version="3.6.1.v20110817-0100"/>
<unit id="org.eclipse.mylyn.commons.ui" version="3.6.0.I20110523-2039"/>
<unit id="org.eclipse.mylyn.commons.net" version="3.6.0.I20110523-2039"/>
- <unit id="org.eclipse.mylyn.commons.screenshots" version="3.6.0.I20110523-2039"/>
+ <unit id="org.eclipse.mylyn.commons.screenshots" version="3.6.0.v20110608-1400"/>
<unit id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
<!-- Orbit bundles needed for Eclipse Checkstyle (eclipse-cs) -->
14 years, 2 months
JBoss Tools SVN: r35103 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-09-27 22:50:18 -0400 (Tue, 27 Sep 2011)
New Revision: 35103
Modified:
trunk/build/target-platform/jbds.target
trunk/build/target-platform/jbds.target.p2mirror.xml
trunk/build/target-platform/multiple.target
trunk/build/target-platform/multiple.target.p2mirror.xml
trunk/build/target-platform/unified.target
trunk/build/target-platform/unified.target.p2mirror.xml
Log:
add org.eclipse.mylyn_feature 3.6.2.v20110908-0706 to TPs (JBIDE-9784)
Modified: trunk/build/target-platform/jbds.target
===================================================================
--- trunk/build/target-platform/jbds.target 2011-09-28 02:26:10 UTC (rev 35102)
+++ trunk/build/target-platform/jbds.target 2011-09-28 02:50:18 UTC (rev 35103)
@@ -44,6 +44,7 @@
<unit id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
<!-- needed for JBoss Central -->
+ <unit id="org.eclipse.mylyn_feature.feature.group" version="3.6.2.v20110908-0706"/>
<unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
<unit id="org.eclipse.mylyn.commons.core" version="3.6.0.I20110523-2039"/>
<unit id="org.eclipse.mylyn.discovery.ui" version="3.6.0.I20110523-2039"/>
Modified: trunk/build/target-platform/jbds.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/jbds.target.p2mirror.xml 2011-09-28 02:26:10 UTC (rev 35102)
+++ trunk/build/target-platform/jbds.target.p2mirror.xml 2011-09-28 02:50:18 UTC (rev 35103)
@@ -54,6 +54,7 @@
<iu id="org.hamcrest.text" version=""/>
<iu id="org.hamcrest.library" version=""/>
<iu id="org.hamcrest.integration" version=""/>
+<iu id="org.eclipse.mylyn_feature.feature.group" version=""/>
<iu id="com.sun.syndication" version=""/>
<iu id="org.eclipse.mylyn.commons.core" version=""/>
<iu id="org.eclipse.mylyn.discovery.ui" version=""/>
Modified: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2011-09-28 02:26:10 UTC (rev 35102)
+++ trunk/build/target-platform/multiple.target 2011-09-28 02:50:18 UTC (rev 35103)
@@ -46,6 +46,7 @@
<unit id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
<!-- needed for JBoss Central -->
+ <unit id="org.eclipse.mylyn_feature.feature.group" version="3.6.2.v20110908-0706"/>
<unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
<unit id="org.eclipse.mylyn.commons.core" version="3.6.0.I20110523-2039"/>
<unit id="org.eclipse.mylyn.discovery.ui" version="3.6.0.I20110523-2039"/>
Modified: trunk/build/target-platform/multiple.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/multiple.target.p2mirror.xml 2011-09-28 02:26:10 UTC (rev 35102)
+++ trunk/build/target-platform/multiple.target.p2mirror.xml 2011-09-28 02:50:18 UTC (rev 35103)
@@ -55,6 +55,7 @@
<iu id="org.hamcrest.text" version=""/>
<iu id="org.hamcrest.library" version=""/>
<iu id="org.hamcrest.integration" version=""/>
+<iu id="org.eclipse.mylyn_feature.feature.group" version=""/>
<iu id="com.sun.syndication" version=""/>
<iu id="org.eclipse.mylyn.commons.core" version=""/>
<iu id="org.eclipse.mylyn.discovery.ui" version=""/>
Modified: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2011-09-28 02:26:10 UTC (rev 35102)
+++ trunk/build/target-platform/unified.target 2011-09-28 02:50:18 UTC (rev 35103)
@@ -46,6 +46,7 @@
<unit id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
<!-- needed for JBoss Central -->
+ <unit id="org.eclipse.mylyn_feature.feature.group" version="3.6.2.v20110908-0706"/>
<unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
<unit id="org.eclipse.mylyn.commons.core" version="3.6.0.I20110523-2039"/>
<unit id="org.eclipse.mylyn.discovery.ui" version="3.6.0.I20110523-2039"/>
Modified: trunk/build/target-platform/unified.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/unified.target.p2mirror.xml 2011-09-28 02:26:10 UTC (rev 35102)
+++ trunk/build/target-platform/unified.target.p2mirror.xml 2011-09-28 02:50:18 UTC (rev 35103)
@@ -55,6 +55,7 @@
<iu id="org.hamcrest.text" version=""/>
<iu id="org.hamcrest.library" version=""/>
<iu id="org.hamcrest.integration" version=""/>
+<iu id="org.eclipse.mylyn_feature.feature.group" version=""/>
<iu id="com.sun.syndication" version=""/>
<iu id="org.eclipse.mylyn.commons.core" version=""/>
<iu id="org.eclipse.mylyn.discovery.ui" version=""/>
14 years, 2 months
JBoss Tools SVN: r35101 - in trunk/download.jboss.org/jbosstools/updates/indigo: extras and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-09-27 22:25:56 -0400 (Tue, 27 Sep 2011)
New Revision: 35101
Added:
trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/
trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/.gitignore
trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/compositeAr...
trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/compositeCo...
Modified:
trunk/download.jboss.org/jbosstools/updates/indigo/SR1/compositeArtifacts...
trunk/download.jboss.org/jbosstools/updates/indigo/SR1/compositeContent.xml
Log:
JBIDE-9786 move to new Mylyn 3.6.2 in core requirements site (instead of in Extra requirements site)
Modified: trunk/download.jboss.org/jbosstools/updates/indigo/SR1/compositeArtifacts...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/indigo/SR1/compositeArtifacts... 2011-09-28 01:58:56 UTC (rev 35100)
+++ trunk/download.jboss.org/jbosstools/updates/indigo/SR1/compositeArtifacts... 2011-09-28 02:25:56 UTC (rev 35101)
@@ -3,9 +3,9 @@
<repository name='JBoss Tools Requirements - Composite Indigo SR1 Mirror' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
<properties size='2'>
<property name='p2.compressed' value='true'/>
-<property name='p2.timestamp' value='1316559079000'/>
+<property name='p2.timestamp' value='1317176311000'/>
</properties>
-<children size='13'>
+<children size='14'>
<child location='../../requirements/indigo/201105270900-RC2/'/>
<child location='../../requirements/birt/3.7RC2/'/>
<child location='../../requirements/ecf/3.5/'/>
@@ -15,9 +15,10 @@
<child location='../../requirements/emf/2.7RC3/'/>
<child location='../../requirements/m2eclipse/20110728-1500/'/>
<child location='../../requirements/m2eclipse/m2eclipse-wtp-0.13.1/'/>
+<child location='../../requirements/mylyn/3.6.2-v20110908-0706/'/>
<child location='../../requirements/orbit/R20110523182458/'/>
+
<child location='../../requirements/swtbot/2.0.4/'/>
-
<child location='../../requirements/webtools/3.3.1-20110915193224/'/>
<child location='../../requirements/xulrunner-1.9.2/'/>
<child location='http://dl.google.com/eclipse/plugin/3.7/'/>
Modified: trunk/download.jboss.org/jbosstools/updates/indigo/SR1/compositeContent.xml
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/indigo/SR1/compositeContent.xml 2011-09-28 01:58:56 UTC (rev 35100)
+++ trunk/download.jboss.org/jbosstools/updates/indigo/SR1/compositeContent.xml 2011-09-28 02:25:56 UTC (rev 35101)
@@ -3,9 +3,9 @@
<repository name='JBoss Tools Requirements - Composite Indigo SR1 Mirror' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>
<properties size='2'>
<property name='p2.compressed' value='true'/>
-<property name='p2.timestamp' value='1316559090000'/>
+<property name='p2.timestamp' value='1317176307000'/>
</properties>
-<children size='13'>
+<children size='14'>
<child location='../../requirements/indigo/201105270900-RC2/'/>
<child location='../../requirements/birt/3.7RC2/'/>
<child location='../../requirements/ecf/3.5/'/>
@@ -15,9 +15,10 @@
<child location='../../requirements/emf/2.7RC3/'/>
<child location='../../requirements/m2eclipse/20110728-1500/'/>
<child location='../../requirements/m2eclipse/m2eclipse-wtp-0.13.1/'/>
+<child location='../../requirements/mylyn/3.6.2-v20110908-0706/'/>
<child location='../../requirements/orbit/R20110523182458/'/>
+
<child location='../../requirements/swtbot/2.0.4/'/>
-
<child location='../../requirements/webtools/3.3.1-20110915193224/'/>
<child location='../../requirements/xulrunner-1.9.2/'/>
<child location='http://dl.google.com/eclipse/plugin/3.7/'/>
Added: trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/.gitignore
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/.gitignore (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/.gitignore 2011-09-28 02:25:56 UTC (rev 35101)
@@ -0,0 +1 @@
+.directory
Added: trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/compositeAr...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/compositeAr... (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/compositeAr... 2011-09-28 02:25:56 UTC (rev 35101)
@@ -0,0 +1,21 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeArtifactRepository version='1.0.0'?>
+<repository name='JBoss Tools Requirements - Composite Indigo Mirror - Extras' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<property name='p2.timestamp' value='1317176212000'/>
+</properties>
+<children size='9'>
+<child location='../../../requirements/eclipsecs/5.4.0.201109110000/'/>
+<child location='../../../requirements/findbugs/1.3.9/'/>
+<child location='../../../requirements/jslint/1.5/'/>
+<child location="../../../requirements/m2eclipse/20110728-1500/"/>
+<child location='../../../requirements/pmd/3.2.4/'/>
+
+<child location='../../../requirements/springide/2.6.0.201103160035/'/>
+<child location='../../../requirements/subclipse/1.6_1.3/'/>
+<child location='../../../requirements/subversive/0.7.9_2.2.2_1.3/'/>
+<child location='../../../requirements/testng/6.1.1.20110823_1537/'/>
+</children>
+</repository>
+
Added: trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/compositeCo...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/compositeCo... (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/indigo/extras/SR1/compositeCo... 2011-09-28 02:25:56 UTC (rev 35101)
@@ -0,0 +1,21 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeMetadataRepository version='1.0.0'?>
+<repository name='JBoss Tools Requirements - Composite Indigo Mirror - Extras' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<property name='p2.timestamp' value='1317176232000'/>
+</properties>
+<children size='9'>
+<child location='../../../requirements/eclipsecs/5.4.0.201109110000/'/>
+<child location='../../../requirements/findbugs/1.3.9/'/>
+<child location='../../../requirements/jslint/1.5/'/>
+<child location="../../../requirements/m2eclipse/20110728-1500/"/>
+<child location='../../../requirements/pmd/3.2.4/'/>
+
+<child location='../../../requirements/springide/2.6.0.201103160035/'/>
+<child location='../../../requirements/subclipse/1.6_1.3/'/>
+<child location='../../../requirements/subversive/0.7.9_2.2.2_1.3/'/>
+<child location='../../../requirements/testng/6.1.1.20110823_1537/'/>
+</children>
+</repository>
+
14 years, 2 months
JBoss Tools SVN: r35100 - branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-09-27 21:58:56 -0400 (Tue, 27 Sep 2011)
New Revision: 35100
Modified:
branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/first_seam.xml
branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/installation.xml
branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/introduction.xml
branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml
branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
Log:
updated for TOOLSDOC-253
Modified: branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/first_seam.xml
===================================================================
--- branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/first_seam.xml 2011-09-28 01:58:52 UTC (rev 35099)
+++ branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/first_seam.xml 2011-09-28 01:58:56 UTC (rev 35100)
@@ -644,7 +644,7 @@
to <emphasis>
<property>http://localhost:8080/workshop</property>
</emphasis> and insert/update/delete/query a few records. There is quite a bit of AJAX in
- this application, but which we will explore further later on in the lab. For now, take note
+ this application, but we will explore that later on in the lab. For now, take note
of the page tabs, required field logic and data table sorting in the list pages. </para>
<note>
Modified: branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/installation.xml
===================================================================
--- branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/installation.xml 2011-09-28 01:58:52 UTC (rev 35099)
+++ branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/installation.xml 2011-09-28 01:58:56 UTC (rev 35100)
@@ -549,7 +549,7 @@
<guibutton>
Remove
</guibutton>
- button will the remove the selected server from the list. If necessary, you can edit the server details clicking on the
+ button will remove the selected server from the list. If necessary, you can edit the server details clicking on the
<guibutton>
Edit
</guibutton>
Modified: branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/introduction.xml
===================================================================
--- branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/introduction.xml 2011-09-28 01:58:52 UTC (rev 35099)
+++ branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/introduction.xml 2011-09-28 01:58:56 UTC (rev 35100)
@@ -13,7 +13,7 @@
<section id="intro1">
<title>What JBoss Developer Studio is</title>
<para>
- <property>JBoss Developer Studio</property> is a set of Eclipse based development tools that have been pre-configured for JBoss Enterprise Middleware Platforms and Red Hat Enterprise Linux. Developers are not required to use <property>JBoss Developer Studio</property> to develop on JBoss Enterprise Middleware and/or Red Hat Linux. But, many find these preconfigured tools offer significant time-savings and value, making them more productive and reducing deployment times.
+ <property>JBoss Developer Studio</property> is a set of Eclipse based development tools that have been pre-configured for JBoss Enterprise Middleware Platforms and Red Hat Enterprise Linux. Developers are not required to use <property>JBoss Developer Studio</property> to develop on JBoss Enterprise Middleware and/or Red Hat Linux. Many do find these preconfigured tools save time and offer significant value, making them more productive and reducing deployment times.
</para>
<para>
This guide covers the first steps required to get started with <property>JBoss Developer Studio</property>. You will learn how to install and configure the software necessary for your OS (currently Linux, Microsoft Windows or Mac OSX), including detailed information on how to install, configure and use JDK, JBoss Developer Studio and JBoss Tools.
Modified: branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml
===================================================================
--- branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml 2011-09-28 01:58:52 UTC (rev 35099)
+++ branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml 2011-09-28 01:58:56 UTC (rev 35100)
@@ -251,11 +251,11 @@
</programlisting>
<para>
- If you come back to <property>Tree</property> mode you will see that the changes made are automatically reflected in that mode.
+ If you go back to <property>Tree</property> tab you will see that the changes made in the <property>Source</proeprty> tab are automatically reflected.
</para>
<para>
- Actually you don't really need to do any configurations right now.
+ Actually you do not really need to do any configurations right now.
</para>
</section>
@@ -347,7 +347,7 @@
</figure>
<figure>
- <title>Archive in Project Archives View</title>
+ <title>Archive in Project Explorer View</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/jsp_application/jsp_application_12.png"/>
Modified: branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
===================================================================
--- branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-09-28 01:58:52 UTC (rev 35099)
+++ branches/jbosstools-3.2.x/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-09-28 01:58:56 UTC (rev 35100)
@@ -657,7 +657,7 @@
<para>On the Palette click on <emphasis><property>inputText</property>, </emphasis> drag the cursor over to the editor, and drop it inside the editor after the text.</para>
</listitem>
<listitem>
- <para>Switch to a Source mode and insert a <code><br/></code> tag after the <code><h:outputText></code> component to make a new line</para>
+ <para>Switch to Source mode and insert a <code><br/></code> tag after the <code><h:outputText></code> component to make a new line</para>
</listitem>
<listitem>
<para>Click the <guibutton>Save</guibutton> button</para>
14 years, 2 months
JBoss Tools SVN: r35099 - trunk/documentation/guides/GettingStartedGuide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-09-27 21:58:52 -0400 (Tue, 27 Sep 2011)
New Revision: 35099
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/Revision_History.xml
trunk/documentation/guides/GettingStartedGuide/en-US/first_seam.xml
trunk/documentation/guides/GettingStartedGuide/en-US/gsg_faq.xml
trunk/documentation/guides/GettingStartedGuide/en-US/installation.xml
trunk/documentation/guides/GettingStartedGuide/en-US/introduction.xml
trunk/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml
trunk/documentation/guides/GettingStartedGuide/en-US/master.xml
trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
Log:
updated for TOOLSDOC-253
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/Revision_History.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/Revision_History.xml 2011-09-28 00:23:16 UTC (rev 35098)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/Revision_History.xml 2011-09-28 01:58:52 UTC (rev 35099)
@@ -6,20 +6,6 @@
<simpara>
<revhistory>
<revision>
- <revnumber>1-4</revnumber>
- <date>Wed Sep 14 2011</date>
- <author>
- <firstname>Isaac</firstname>
- <surname>Rooskov</surname>
- <email>irooskov(a)redhat.com</email>
- </author>
- <revdescription>
- <simplelist>
- <member>Updated FAQ section with correct config file information</member>
- </simplelist>
- </revdescription>
- </revision>
- <revision>
<revnumber>1-3</revnumber>
<date>Mon Aug 01 2011</date>
<author>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/first_seam.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/first_seam.xml 2011-09-28 00:23:16 UTC (rev 35098)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/first_seam.xml 2011-09-28 01:58:52 UTC (rev 35099)
@@ -644,7 +644,7 @@
to <emphasis>
<property>http://localhost:8080/workshop</property>
</emphasis> and insert/update/delete/query a few records. There is quite a bit of AJAX in
- this application, but which we will explore further later on in the lab. For now, take note
+ this application, but we will explore that later on in the lab. For now, take note
of the page tabs, required field logic and data table sorting in the list pages. </para>
<note>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/gsg_faq.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/gsg_faq.xml 2011-09-28 00:23:16 UTC (rev 35098)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/gsg_faq.xml 2011-09-28 01:58:52 UTC (rev 35099)
@@ -48,7 +48,7 @@
</listitem>
<listitem>
- <para>Open the file <filename>jbdevstudio.ini</filename>, which can be found in your JBoss Developer Studio location and add the following line: </para>
+ <para>Open the file <filename>eclipse.ini</filename>, which can be found in your Fedora Eclipse location and add the following line: </para>
<programlisting role="JAVA"><![CDATA[-Dswt.library.path=/usr/lib/eclipse]]></programlisting>
<para>,where <code>/usr/lib/eclipse</code> is the path to your eclipse folder.</para>
</listitem>
@@ -165,7 +165,7 @@
<title>Is it possible to increase the performance of Eclipse after installing your product?</title>
<para>
- <property>JBoss Developer Studio</property> configures eclipse via the <filename>jbdevstudio.ini</filename> file to allocate extra memory, but if you for some reason need more memory then by default, you can manually make adjustments in this file. For example:</para>
+ <property>JBoss Developer Studio</property> configures eclipse via the <filename>eclipse.ini</filename> file to allocate extra memory, but if you for some reason need more memory then by default, you can manually make adjustments in this file. For example:</para>
<programlisting role="XML"><![CDATA[-vmargs -Xms128m -Xmx512m -XX:MaxPermSize=128m]]></programlisting>
</section>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/installation.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/installation.xml 2011-09-28 00:23:16 UTC (rev 35098)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/installation.xml 2011-09-28 01:58:52 UTC (rev 35099)
@@ -549,7 +549,7 @@
<guibutton>
Remove
</guibutton>
- button will the remove the selected server from the list. If necessary, you can edit the server details clicking on the
+ button will remove the selected server from the list. If necessary, you can edit the server details clicking on the
<guibutton>
Edit
</guibutton>
@@ -673,6 +673,11 @@
<para>
The components available on the update site will be listed, which you can select and install from by following the prompts.
</para>
+ <note>
+ <para>
+ At the time of the JBoss Developer Studio 4.1 release, the technical preview site does not contain any components.
+ </para>
+ </note>
<!-- <note>
<title>Note</title>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/introduction.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/introduction.xml 2011-09-28 00:23:16 UTC (rev 35098)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/introduction.xml 2011-09-28 01:58:52 UTC (rev 35099)
@@ -13,7 +13,7 @@
<section id="intro1">
<title>What JBoss Developer Studio is</title>
<para>
- <property>JBoss Developer Studio</property> is a set of Eclipse based development tools that have been pre-configured for JBoss Enterprise Middleware Platforms and Red Hat Enterprise Linux. Developers are not required to use <property>JBoss Developer Studio</property> to develop on JBoss Enterprise Middleware and/or Red Hat Linux. But, many find these preconfigured tools offer significant time-savings and value, making them more productive and reducing deployment times.
+ <property>JBoss Developer Studio</property> is a set of Eclipse based development tools that have been pre-configured for JBoss Enterprise Middleware Platforms and Red Hat Enterprise Linux. Developers are not required to use <property>JBoss Developer Studio</property> to develop on JBoss Enterprise Middleware and/or Red Hat Linux. Many do find these preconfigured tools save time and offer significant value, making them more productive and reducing deployment times.
</para>
<para>
This guide covers the first steps required to get started with <property>JBoss Developer Studio</property>. You will learn how to install and configure the software necessary for your OS (currently Linux, Microsoft Windows or Mac OSX), including detailed information on how to install, configure and use JDK, JBoss Developer Studio and JBoss Tools.
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml 2011-09-28 00:23:16 UTC (rev 35098)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml 2011-09-28 01:58:52 UTC (rev 35099)
@@ -251,11 +251,11 @@
</programlisting>
<para>
- If you come back to <property>Tree</property> mode you will see that the changes made are automatically reflected in that mode.
+ If you go back to <property>Tree</property> tab you will see that the changes made in the <property>Source</proeprty> tab are automatically reflected.
</para>
<para>
- Actually you don't really need to do any configurations right now.
+ Actually you do not really need to do any configurations right now.
</para>
</section>
@@ -347,7 +347,7 @@
</figure>
<figure>
- <title>Archive in Project Archives View</title>
+ <title>Archive in Project Explorer View</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/jsp_application/jsp_application_12.png"/>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/master.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/master.xml 2011-09-28 00:23:16 UTC (rev 35098)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/master.xml 2011-09-28 01:58:52 UTC (rev 35099)
@@ -42,13 +42,10 @@
<title>Getting Started Guide</title>
<copyright>
- <year>2007</year>
- <year>2008</year>
- <year>2009</year>
- <year>2010</year>
+ <year>2011</year>
<holder>JBoss by Red Hat</holder>
</copyright>
- <releaseinfo>Version: 3.2.0.GA</releaseinfo>
+ <releaseinfo>Version: 3.2.1.GA</releaseinfo>
<abstract>
<title/>
<para>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-09-28 00:23:16 UTC (rev 35098)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-09-28 01:58:52 UTC (rev 35099)
@@ -657,7 +657,7 @@
<para>On the Palette click on <emphasis><property>inputText</property>, </emphasis> drag the cursor over to the editor, and drop it inside the editor after the text.</para>
</listitem>
<listitem>
- <para>Switch to a Source mode and insert a <code><br/></code> tag after the <code><h:outputText></code> component to make a new line</para>
+ <para>Switch to Source mode and insert a <code><br/></code> tag after the <code><h:outputText></code> component to make a new line</para>
</listitem>
<listitem>
<para>Click the <guibutton>Save</guibutton> button</para>
14 years, 2 months