JBoss Tools SVN: r26487 - in trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui: icons and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2010-11-12 03:55:29 -0500 (Fri, 12 Nov 2010)
New Revision: 26487
Added:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/run.gif
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/rund.gif
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/stop.gif
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/stopd.gif
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/running.gif
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/stopped.gif
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/SWTImagesFactory.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstanceViewLabelAndContentProvider.java
Log:
[JBIDE-7566] renamed running.gif to run.gif, stopped to stop.gif, added running.gif and stopped.gif
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-11-12 08:27:34 UTC (rev 26486)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-11-12 08:55:29 UTC (rev 26487)
@@ -1,3 +1,9 @@
+2010-11-12 André Dietisheim <adietish(a)redhat.com>
+
+ * src/org/jboss/tools/deltacloud/ui/views/InstanceViewLabelAndContentProvider.java (getStatusIcon):
+ * src/org/jboss/tools/deltacloud/ui/SWTImagesFactory.java:
+ [JBIDE-7566] renamed running.gif to run.gif, stopped to stop.gif, added running.gif and stopped.gif
+
2010-11-11 André Dietisheim <adietish(a)redhat.com>
* src/org/jboss/tools/deltacloud/ui/views/ImageView.java (ColumnListener.widgetSelected):
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/run.gif
===================================================================
(Binary files differ)
Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/run.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/rund.gif
===================================================================
(Binary files differ)
Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/rund.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/running.gif
===================================================================
(Binary files differ)
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/stop.gif
===================================================================
(Binary files differ)
Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/stop.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/stopd.gif
===================================================================
(Binary files differ)
Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/stopd.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/icons/stopped.gif
===================================================================
(Binary files differ)
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/SWTImagesFactory.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/SWTImagesFactory.java 2010-11-12 08:27:34 UTC (rev 26486)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/SWTImagesFactory.java 2010-11-12 08:55:29 UTC (rev 26487)
@@ -41,12 +41,14 @@
public static final String IMG_COLLAPSE_ALL= NAME_PREFIX + "collapseall.gif"; //$NON-NLS-1$
public static final String IMG_DELTA= NAME_PREFIX + "delta.gif"; //$NON-NLS-1$
public static final String IMG_DELTA_LARGE= NAME_PREFIX + "delta-large.gif"; //$NON-NLS-1$
- public static final String IMG_START= NAME_PREFIX + "running.gif"; //$NON-NLS-1$
- public static final String IMG_STARTD = NAME_PREFIX + "runningd.gif"; //$NON-NLS-1$
- public static final String IMG_STOP = NAME_PREFIX + "stopped.gif"; //$NON-NLS-1$
- public static final String IMG_STOPD = NAME_PREFIX + "stoppedd.gif"; //$NON-NLS-1$
+ public static final String IMG_START= NAME_PREFIX + "run.gif"; //$NON-NLS-1$
+ public static final String IMG_STARTD = NAME_PREFIX + "rund.gif"; //$NON-NLS-1$
+ public static final String IMG_STOP = NAME_PREFIX + "stop.gif"; //$NON-NLS-1$
+ public static final String IMG_STOPD = NAME_PREFIX + "stopd.gif"; //$NON-NLS-1$
+ public static final String IMG_STOPPED = NAME_PREFIX + "stopped.gif"; //$NON-NLS-1$
public static final String IMG_REBOOT = NAME_PREFIX + "reboot.gif"; //$NON-NLS-1$
public static final String IMG_REBOOTD = NAME_PREFIX + "rebootd.gif"; //$NON-NLS-1$
+ public static final String IMG_RUNNING= NAME_PREFIX + "running.gif"; //$NON-NLS-1$
public static final ImageDescriptor DESC_CLOUD= createManaged("", IMG_CLOUD);
public static final ImageDescriptor DESC_FOLDER= createManaged("", IMG_FOLDER);
public static final ImageDescriptor DESC_INSTANCE= createManaged("", IMG_INSTANCE);
@@ -56,8 +58,10 @@
public static final ImageDescriptor DESC_DELTA_LARGE= createManaged("", IMG_DELTA_LARGE);
public static final ImageDescriptor DESC_START= createManaged("", IMG_START);
public static final ImageDescriptor DESC_STARTD= createManaged("", IMG_STARTD);
+ public static final ImageDescriptor DESC_RUNNING= createManaged("", IMG_RUNNING);
public static final ImageDescriptor DESC_STOP= createManaged("", IMG_STOP);
public static final ImageDescriptor DESC_STOPD= createManaged("", IMG_STOPD);
+ public static final ImageDescriptor DESC_STOPPED= createManaged("", IMG_STOPPED);
public static final ImageDescriptor DESC_REBOOT= createManaged("", IMG_REBOOT);
public static final ImageDescriptor DESC_REBOOTD= createManaged("", IMG_REBOOTD);
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstanceViewLabelAndContentProvider.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstanceViewLabelAndContentProvider.java 2010-11-12 08:27:34 UTC (rev 26486)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/InstanceViewLabelAndContentProvider.java 2010-11-12 08:55:29 UTC (rev 26487)
@@ -113,9 +113,9 @@
private Image getStatusIcon(String status) {
if (DeltaCloudInstance.STOPPED.equals(status)) {
- return SWTImagesFactory.get(SWTImagesFactory.IMG_STOP);
+ return SWTImagesFactory.get(SWTImagesFactory.IMG_STOPPED);
} else if (DeltaCloudInstance.RUNNING.equals(status)) {
- return SWTImagesFactory.get(SWTImagesFactory.IMG_START);
+ return SWTImagesFactory.get(SWTImagesFactory.IMG_RUNNING);
} else if (DeltaCloudInstance.BOGUS.equals(status)) {
return PlatformUI.getWorkbench().getSharedImages().
getImage(ISharedImages.IMG_DEC_FIELD_WARNING);
15 years, 5 months
JBoss Tools SVN: r26486 - trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2010-11-12 03:27:34 -0500 (Fri, 12 Nov 2010)
New Revision: 26486
Modified:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/SelectionBarTest.java
Log:
https://jira.jboss.org/browse/JBIDE-7490 : org.jboss.tools.jst.jsp.test.ca.SelectionBarTest failure
Modified: trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/SelectionBarTest.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/SelectionBarTest.java 2010-11-12 08:02:04 UTC (rev 26485)
+++ trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/SelectionBarTest.java 2010-11-12 08:27:34 UTC (rev 26486)
@@ -54,7 +54,6 @@
}
public void testSelectionBarCommandState() throws Throwable{
- assertEquals("check command enabled command status",false,toggleSelBarCommand.isEnabled()); //$NON-NLS-1$
IEditorPart editorPart = WorkbenchUtils.openEditor(project.getName()+"/WebContent/pages/selectionBar.xhtml"); //$NON-NLS-1$
assertTrue("Should be opened JSPMultiPage Editor", //$NON-NLS-1$
15 years, 5 months
JBoss Tools SVN: r26485 - trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/model.
by jbosstools-commits@lists.jboss.org
Author: DartPeng
Date: 2010-11-12 03:02:04 -0500 (Fri, 12 Nov 2010)
New Revision: 26485
Modified:
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/model/InputDataTreeNodeModel.java
Log:
JBIDE-7550
done
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/model/InputDataTreeNodeModel.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/model/InputDataTreeNodeModel.java 2010-11-12 03:29:25 UTC (rev 26484)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/model/InputDataTreeNodeModel.java 2010-11-12 08:02:04 UTC (rev 26485)
@@ -100,7 +100,10 @@
if (((IFreemarkerTemplateModel) targetData).isHidden(builder)) {
return false;
}
-
+ List<TreeNodeConnection> exsitingConnection = targetNode.getTargetConnections();
+ if (!exsitingConnection.isEmpty()){
+ return false;
+ }
if (targetData instanceof FreemarkerTemplateXMLModel) {
FreemarkerTemplateXMLModel targetDataModel = (FreemarkerTemplateXMLModel) targetData;
if (!targetDataModel.getXMLNodeChildren().isEmpty()) {
@@ -119,9 +122,7 @@
}
}
- List<TreeNodeConnection> exsitingConnection = targetNode.getTargetConnections();
- if (!exsitingConnection.isEmpty())
- return false;
+
for (Iterator<?> iterator = exsitingConnection.iterator(); iterator.hasNext();) {
TreeNodeConnection treeNodeConnection = (TreeNodeConnection) iterator.next();
if (treeNodeConnection.getSourceNode() == this) {
15 years, 5 months
JBoss Tools SVN: r26484 - trunk/build/parent.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-11 22:29:25 -0500 (Thu, 11 Nov 2010)
New Revision: 26484
Modified:
trunk/build/parent/pom.xml
Log:
merge jbosstools-nightly-trunk and jbosstools-nightly-tests-trunk into single profile
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2010-11-12 03:25:20 UTC (rev 26483)
+++ trunk/build/parent/pom.xml 2010-11-12 03:29:25 UTC (rev 26484)
@@ -814,15 +814,6 @@
<enabled>true</enabled>
</releases>
</repository>
- </repositories>
- </profile>
-
- <profile>
- <id>jbosstools-nightly-tests-trunk</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <repositories>
<repository>
<id>jbosstools-nightly-tests-trunk</id>
<url>http://download.jboss.org/jbosstools/builds/staging/jbosstools-tests/all/... </url>
15 years, 5 months
JBoss Tools SVN: r26483 - trunk/build/parent.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-11 22:25:20 -0500 (Thu, 11 Nov 2010)
New Revision: 26483
Modified:
trunk/build/parent/pom.xml
Log:
add new profile jbosstools-nightly-tests-trunk -> http://download.jboss.org/jbosstools/builds/staging/jbosstools-tests/all/...
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2010-11-12 03:10:20 UTC (rev 26482)
+++ trunk/build/parent/pom.xml 2010-11-12 03:25:20 UTC (rev 26483)
@@ -816,6 +816,26 @@
</repository>
</repositories>
</profile>
+
+ <profile>
+ <id>jbosstools-nightly-tests-trunk</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <repositories>
+ <repository>
+ <id>jbosstools-nightly-tests-trunk</id>
+ <url>http://download.jboss.org/jbosstools/builds/staging/jbosstools-tests/all/... </url>
+ <layout>p2</layout>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
+ </repositories>
+ </profile>
</profiles>
<repositories>
15 years, 5 months
JBoss Tools SVN: r26482 - trunk/build/results.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-11 22:10:20 -0500 (Thu, 11 Nov 2010)
New Revision: 26482
Modified:
trunk/build/results/build.xml
Log:
copy css file into target dir too
Modified: trunk/build/results/build.xml
===================================================================
--- trunk/build/results/build.xml 2010-11-12 02:48:14 UTC (rev 26481)
+++ trunk/build/results/build.xml 2010-11-12 03:10:20 UTC (rev 26482)
@@ -172,6 +172,7 @@
</copy>
<xslt in="${output.dir}/download.xml" out="${output.dir}/download-snippet.txt" style="download.xsl" />
<xslt in="${output.dir}/download.xml" out="${output.dir}/buildResults.html" style="buildResults.xsl" />
+ <copy todir="${output.dir}" file="buildResults.css"/>
<delete file="${output.dir}/download.xml" />
</then>
<elseif>
15 years, 5 months
JBoss Tools SVN: r26481 - trunk/tests.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-11 21:48:14 -0500 (Thu, 11 Nov 2010)
New Revision: 26481
Modified:
trunk/tests/pom.xml
Log:
add ref to parent pom & reorder
Modified: trunk/tests/pom.xml
===================================================================
--- trunk/tests/pom.xml 2010-11-12 00:34:23 UTC (rev 26480)
+++ trunk/tests/pom.xml 2010-11-12 02:48:14 UTC (rev 26481)
@@ -2,6 +2,29 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.tests.all</artifactId>
+ <name>org.jboss.tools.tests.all</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>features</module>
+ <module>plugins</module>
+ <module>site</module>
+ </modules>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <type>pom</type>
+ </dependency>
+ </dependencies>
<repositories>
<repository>
<id>jboss-snapshots-repository</id>
@@ -22,23 +45,5 @@
</releases>
</repository>
</repositories>
- <dependencies>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <type>pom</type>
- </dependency>
- </dependencies>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.tests.all</artifactId>
- <name>org.jboss.tools.tests.all</name>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>site</module>
- </modules>
</project>
15 years, 5 months
JBoss Tools SVN: r26480 - trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-11-11 19:34:23 -0500 (Thu, 11 Nov 2010)
New Revision: 26480
Modified:
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Introduction.xml
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/modeshape-concepts.xml
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/register_a_new_repository-task.xml
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/setting_preferences-task.xml
Log:
updated modeshape guide with feedback from tech review
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml 2010-11-12 00:08:47 UTC (rev 26479)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml 2010-11-12 00:34:23 UTC (rev 26480)
@@ -5,14 +5,14 @@
]>
<bookinfo id="book-ModeShape_Tools_Reference_Guide-ModeShape_Tools_Reference_Guide">
<title>ModeShape Tools Reference Guide</title>
- <subtitle>ModeShape tools allow you to interact with the contents of numerious ModeShape repositories.</subtitle>
+ <subtitle>ModeShape tools allows you to interact with the contents of numerious ModeShape repositories.</subtitle>
<productname>JBoss Developer Studio</productname>
<productnumber>4.0</productnumber>
<edition>4.0.0</edition>
<pubsnumber>0</pubsnumber>
<abstract>
<para>
- ModeShape provides a self-contained repository with the functionality to unify content from multiple external and storage systems.
+ ModeShape Tools provides the ability to publish and remove content from ModeShape repositories.
</para>
</abstract>
<corpauthor>
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Introduction.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Introduction.xml 2010-11-12 00:08:47 UTC (rev 26479)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Introduction.xml 2010-11-12 00:34:23 UTC (rev 26480)
@@ -6,7 +6,7 @@
<chapter id="chap-ModeShape_Tools_Reference_Guide-introduction">
<title>Introduction</title>
<para>
- ModeShape tools allows you to link your workspace to ModeShape repositories, publish and unpublish resources to the repositories and define what can and cannot be published and unpublished.
+ ModeShape tools allows you to publish and unpublish resources to the Modeshape repositories you have made available through your workspace. These repositories are persisted within the workspace, from session to session.
</para>
<para>
The Modeshape registry is persisted from session to session.
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/modeshape-concepts.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/modeshape-concepts.xml 2010-11-12 00:08:47 UTC (rev 26479)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/modeshape-concepts.xml 2010-11-12 00:34:23 UTC (rev 26480)
@@ -13,10 +13,10 @@
To your applications, ModeShape looks and behaves like a regular JCR repository. Using the standard JCR API, applications can search, navigate and listen for changes in content. However, ModeShape retrieves its content by federating multiple back-end systems (such as databases, services and other repositories). This allows those systems to maintain ownership of the information, while ensuring the unified repository remains current.
</para>
<para>
- ModeShape repositories can be used in a variety of applications. One such application is provisioning and management. In provisioning and management it is critical to understand and keep track of the metadata for models, databases, services, components, applications, clusters, machines, and other systems used in an enterprise environment. Governance takes that a step further, by also tracking the policies and expectations against which performance can be verified. In these cases, a repository is an excellent mechanism for managing this complex and highly-varied information.
+ ModeShape repositories can be used in a variety of applications. One such application is provisioning and management. In provisioning and management it is critical to understand and keep track of the metadata for models, databases, services, components, applications, clusters, machines, and other systems used in an enterprise environment. Governance takes this further, by also tracking the policies and expectations against which performance can be verified. In these cases, a repository is an excellent mechanism for managing this complex and highly-varied information.
</para>
<para>
- A ModeShape repository doesn't have to be large and complex. It could just manage configuration information for an application, or provide a JCR interface on top of non-JCR systems.
+ A ModeShape repository doesn't have to be large and complex. It could be setup to only manage configuration information for an application, or provide a JCR interface on top of non-JCR systems.
</para>
</section>
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2010-11-12 00:08:47 UTC (rev 26479)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2010-11-12 00:34:23 UTC (rev 26480)
@@ -5,9 +5,9 @@
]>-->
<section id="sect-ModeShape_Tools_Reference_Guide-Tasks-Publish_or_unpublish_a_resource">
- <title>Publish or unpublish a resorce</title>
+ <title>Publish or unpublish a resource</title>
<para>
- Having registered your ModeShape instances in <xref linkend="sect-ModeShape_Tools_Reference_Guide-Tasks-Register_a_new_repository"/>, you can now publish files to the repositories.
+ Having registered your ModeShape server instances in <xref linkend="sect-ModeShape_Tools_Reference_Guide-Tasks-Register_a_repository_on_a_new_server"/>, you can now publish files to the repositories on these servers.
</para>
<para>
Right-clicking on one or more projects, folders, or files in your Eclipse workspace will display the context menu for those files. This menu will now include a ModeShape submenu that allows you to publish or unpublish the resources to your ModeShape repository.
@@ -24,7 +24,7 @@
</mediaobject>
</figure>
<para>
- To assist with the publishing or unpublishing of your resource, a wizard will appear when either of these options are selected.
+ The ModeShape publishing wizard is displayed when you select <guimenuitem>publish</guimenuitem> or <guimenuitem>unpublish</guimenuitem> from the context menu.
</para>
<figure id="ModeShape_publishing_wizard">
<title>ModeShape publishing wizard</title>
@@ -35,8 +35,35 @@
</mediaobject>
</figure>
<para>
- The publishing wizard (shown in <xref linkend="ModeShape_publishing_wizard"/>) and unpublishing wizard allows you to choose which ModeShape repository to interact with and displays the selected files the operation will be performed on. When a project or folder is selected all their included files are acted upon.
+ The publishing wizard (shown in <xref linkend="ModeShape_publishing_wizard"/>) allows you to choose which ModeShape repository to interact with and displays the selected files the operation will be performed on. When a project or folder is selected all their included files are acted upon.
</para>
+ <warning>
+ <para>
+ When performing a publish operation, make sure you are aware of the following:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ If you publish a file to a ModeShape repository where a version of the same file has previously been published to the repository by you or someone else, the publishing action will overwrite the file currently in the repository.
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>
+ When performing an unpublish operation, make sure you are aware of the following:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ If you are interacting with a multi-user repository, the version of the file you are unpublishing may have been updated by someone else after you.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ It is important to be positive a file is no longer necessary when unpublishing as the file in question will be deleted from the repository with this operation.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </warning>
<para>
When publishing or unpublishing files, you can see the operation output in the <guilabel>Console</guilabel> view. The type of information that you can view includes the repository where the operation took place, how long the operation took, the outcome for each file included in the operation, a hyperlink that allows you to open the file in an Eclipse editor, and a ModeShape repository workspace URL.
</para>
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/register_a_new_repository-task.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/register_a_new_repository-task.xml 2010-11-12 00:08:47 UTC (rev 26479)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/register_a_new_repository-task.xml 2010-11-12 00:34:23 UTC (rev 26480)
@@ -4,10 +4,10 @@
%BOOK_ENTITIES;
]>-->
-<section id="sect-ModeShape_Tools_Reference_Guide-Tasks-Register_a_new_repository">
- <title>Register a new repository</title>
+<section id="sect-ModeShape_Tools_Reference_Guide-Tasks-Register_a_repository_on_a_new_server">
+ <title>Register a repository on a new server</title>
<para>
- Registering a new repository is achieved through the <guilabel>ModeShape</guilabel> view. To open the <guilabel>ModeShape</guilabel> view navigate to <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Show View</guimenuitem><guimenuitem>Other</guimenuitem></menuchoice>. From the <guilabel>Show View</guilabel> dialog select the <guimenuitem>ModeShape</guimenuitem> folder followed by the <guimenuitem>ModeShape</guimenuitem> view and click <guibutton>OK</guibutton>.
+ Registering a repository on a new server is achieved through the <guilabel>ModeShape</guilabel> view. To open the <guilabel>ModeShape</guilabel> view navigate to <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Show View</guimenuitem><guimenuitem>Other</guimenuitem></menuchoice>. From the <guilabel>Show View</guilabel> dialog select the <guimenuitem>ModeShape</guimenuitem> folder followed by the <guimenuitem>ModeShape</guimenuitem> view and click <guibutton>OK</guibutton>.
</para>
<figure>
<title>Selecting the ModeShape view</title>
@@ -31,6 +31,11 @@
<para>
The <guilabel>New Server</guilabel> dialog will then appear asking for the URL of the server to connect and your authentication information. You can test your connection to the server by clicking the <guibutton>Test</guibutton> button and then clicking the <guibutton>Finish</guibutton> button to add the server to the <guilabel>ModeShape</guilabel> view.
</para>
+ <note>
+ <para>
+ Upon testing the connection, if a connection cannot be established, the ModeShape server can still be created. Use the <guibutton>Reconnect</guibutton> button on the ModeShape View's toolbar to try and connect again at a later time.
+ </para>
+ </note>
<figure>
<title>The New Server dialog</title>
<mediaobject>
@@ -42,8 +47,14 @@
<para>
Once the server with the ModeShape repository has been added three new options become available within the <guilabel>ModeShape</guilabel> view. These options allow you to <guilabel>Edit server properties</guilabel>, <guilabel>Delete a server from the server registry</guilabel> and <guilabel>Reconnect to the selected server</guilabel>. To perform one of these actions either right-click on a server and select from the presented menu of actions, or use the buttons beside the <guilabel>Create a new server</guilabel> button seen in <xref linkend="Adding_a_new_server_for_ModeShape_repositories"/>.
</para>
- <para>
+ <note>
+ <para>
+ It is possible for a ModeShape server instance to have numerious ModeShape repositories stored on it. Once you have registered a connection to the server you will have access to all ModeShape repositories on the server. You do not need to register a new connection for each repository on the same server.
+ </para>
+ </note>
+<!-- The functionality to delete a resource from the workspace using the Modeshape view does not currently exist, but could in a future version -->
+<!-- <para>
The <guilabel>ModeShape</guilabel> view also allows you to remove files from a workspace.
- </para>
+ </para> -->
</section>
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/setting_preferences-task.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/setting_preferences-task.xml 2010-11-12 00:08:47 UTC (rev 26479)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/setting_preferences-task.xml 2010-11-12 00:34:23 UTC (rev 26480)
@@ -17,7 +17,7 @@
</mediaobject>
</figure>
<para>
- To add a new file extention type or folder name to be filtered from publishing, click on the corresponding <guibutton>New</guibutton> button, enter the details and click the <guibutton>Apply</guibutton> button so that your preference changes are saved.
+ To add a new file extension type or folder name to be filtered from publishing, click on the corresponding <guibutton>New</guibutton> button, enter the details and click the <guibutton>Apply</guibutton> button so that your preference changes are saved.
</para>
<para>
Removing an entry is conducted by selecting an entry from one of the lists in the <guilabel>Preferences</guilabel> dialog and clicking on the <guibutton>Remove</guibutton> button. Ensure that you click the <guibutton>Apply</guibutton> button so that your preference changes are saved.
@@ -25,12 +25,9 @@
<para>
As the <guilabel>Preferences</guilabel> dialog lists file types and folders that will never be published to a repository, it follows that those listed will never be unpublished. If you decide to never have a certain file type or folder publishable, though it has been in the past, ensure that all instances of these are unpublished before setting any preferences for the file type or folder.
</para>
- <para>
- If you do not ensure all file types and folders that are never to be published are unpublished before setting the prefences, then you will be left with instances of these in your ModeShape repositories that cannot be unpublished unless your preferences are changed.
- </para>
<note>
<para>
- Publishing folders or files of a certain file type before setting any preferences inhibiting the publishing of these types can be a way of ensuring that these files will never be removed (unpublished) from your ModeShape repositories by accident or someone else.
+ Publishing folders or files of a certain file type before setting any preferences inhibiting the publishing of these file types, can be a way of ensuring that you will never remove these files (unpublish) from your ModeShape repositories by accident. However since preference settings are only local to your working environment, in a multi-user ModeShape repository someone else could still remove these files.
</para>
</note>
</section>
15 years, 5 months
JBoss Tools SVN: r26478 - trunk/build/parent.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-11 19:03:45 -0500 (Thu, 11 Nov 2010)
New Revision: 26478
Modified:
trunk/build/parent/pom.xml
Log:
refactor artifactId refs to use FQDN
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2010-11-11 22:50:04 UTC (rev 26477)
+++ trunk/build/parent/pom.xml 2010-11-12 00:03:45 UTC (rev 26478)
@@ -213,7 +213,7 @@
<target>
<artifact>
<groupId>org.jboss.tools</groupId>
- <artifactId>target-platform</artifactId>
+ <artifactId>org.jboss.tools.target.platform</artifactId>
<version>0.0.1-SNAPSHOT</version>
<classifier>${target.platform.classifier.multiple}</classifier>
</artifact>
@@ -244,7 +244,7 @@
<target>
<artifact>
<groupId>org.jboss.tools</groupId>
- <artifactId>target-platform</artifactId>
+ <artifactId>org.jboss.tools.target.platform</artifactId>
<version>0.0.1-SNAPSHOT</version>
<classifier>${target.platform.classifier.unified}</classifier>
</artifact>
@@ -277,7 +277,7 @@
<target>
<artifact>
<groupId>org.jboss.tools</groupId>
- <artifactId>target-platform</artifactId>
+ <artifactId>org.jboss.tools.target.platform</artifactId>
<version>0.0.1-SNAPSHOT</version>
<classifier>${target.platform.classifier.local}</classifier>
</artifact>
15 years, 5 months