JBoss Tools SVN: r5024 - in trunk/documentation/guides: userguide and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2007-11-21 15:39:56 -0500 (Wed, 21 Nov 2007)
New Revision: 5024
Modified:
trunk/documentation/guides/build.xml
trunk/documentation/guides/userguide/nightly-build-index.html
Log:
index for nightly build
Modified: trunk/documentation/guides/build.xml
===================================================================
--- trunk/documentation/guides/build.xml 2007-11-21 20:14:31 UTC (rev 5023)
+++ trunk/documentation/guides/build.xml 2007-11-21 20:39:56 UTC (rev 5024)
@@ -1,5 +1,16 @@
<project name="All Docs" default="build" basedir=".">
+ <tstamp>
+ <format property="timestamp" pattern="d-MMMM-yyyy hh:mm z"/>
+ </tstamp>
+
+ <!-- Copying the index file first to have index even though some of the build steps fail -->
+ <copy overwrite="true" file="userguide/nightly-build-index.html" tofile="build/index.html">
+ <filterset>
+ <filter token="TIMESTAMP" value="${timestamp}"/>
+ </filterset>
+ </copy>
+
<target name="build">
<subant target="">
<fileset dir="." includes="userguide/*/build.xml"/>
@@ -12,4 +23,5 @@
</subant>
</target>
+
</project>
Modified: trunk/documentation/guides/userguide/nightly-build-index.html
===================================================================
--- trunk/documentation/guides/userguide/nightly-build-index.html 2007-11-21 20:14:31 UTC (rev 5023)
+++ trunk/documentation/guides/userguide/nightly-build-index.html 2007-11-21 20:39:56 UTC (rev 5024)
@@ -1,8 +1,9 @@
<html>
<body>
<h1>Nightly builds of JBoss Tools documentation</h1>
+ <p>Build timestamp: @TIMESTAMP@</p>
<p>Getting Started with RHDS: <a href="GettingStartedGuide/en/html/index.html">Html multi pages</a>,<a href="GettingStartedGuide/en/pdf/Getting_Started_with_RHDS.pdf">PDF</a></p>
<p>Getting Exadel Migration: <a href="Exadel-migration/en/html/index.html">Html multi pages</a>,<a href="Exadel-migration/en/pdf/Exadel-migration.pdf">PDF</a></p>
- <p>JSF-Struts: <a href="legacy-jsf-struts/en/html/index.html">Html multi pages</a>,<a href="GettingStartedGuide/en/pdf/Legacy-jsf-struts.pdf">PDF</a></p>
+ <p>JSF-Struts: <a href="legacy-jsf-struts/en/html/index.html">Html multi pages</a>,<a href="legacy-jsf-struts/en/pdf/Legacy-jsf-struts.pdf">PDF</a></p>
</body>
</html>
\ No newline at end of file
17 years, 2 months
JBoss Tools SVN: r5023 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/launch.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-11-21 15:14:31 -0500 (Wed, 21 Nov 2007)
New Revision: 5023
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/launch/StopLaunchConfiguration.java
Log:
JBIDE-1350 - stop configuration was not receiving server parameters.
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/launch/StopLaunchConfiguration.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/launch/StopLaunchConfiguration.java 2007-11-21 19:38:55 UTC (rev 5022)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/launch/StopLaunchConfiguration.java 2007-11-21 20:14:31 UTC (rev 5023)
@@ -38,6 +38,7 @@
import org.eclipse.debug.core.ILaunchManager;
import org.eclipse.debug.core.model.IProcess;
import org.eclipse.jdt.launching.IJavaLaunchConfigurationConstants;
+import org.eclipse.jdt.launching.IRuntimeClasspathEntry;
import org.eclipse.wst.server.core.IServer;
import org.jboss.ide.eclipse.as.core.JBossServerCorePlugin;
import org.jboss.ide.eclipse.as.core.server.IJBossServerRuntime;
@@ -87,7 +88,7 @@
wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_PROGRAM_ARGUMENTS, getDefaultArgs(jbs));
wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_MAIN_TYPE_NAME, STOP_MAIN_TYPE);
wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_WORKING_DIRECTORY, serverHome + Path.SEPARATOR + "bin");
- ArrayList classpath = new ArrayList();
+ ArrayList<IRuntimeClasspathEntry> classpath = new ArrayList<IRuntimeClasspathEntry>();
addCPEntry(classpath, jbs, STOP_JAR_LOC);
ArrayList runtimeClassPaths = convertClasspath(classpath, jbrt.getVM());
String cpKey = IJavaLaunchConfigurationConstants.ATTR_CLASSPATH;
@@ -99,6 +100,7 @@
public static String getDefaultArgs(JBossServer jbs) throws CoreException {
String args = "-S ";
+ args += "-s " + jbs.getServer().getHost() + ":" + jbs.getJNDIPort();
if( jbs.getUsername() != null && !jbs.getUsername().equals(""))
args += "-u " + jbs.getUsername() + " ";
if( jbs.getPassword() != null && !jbs.getUsername().equals(""))
17 years, 2 months
JBoss Tools SVN: r5022 - in trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core: util and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-11-21 14:38:55 -0500 (Wed, 21 Nov 2007)
New Revision: 5022
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/modules/SingleDeployableFactory.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ModuleUtil.java
Log:
JBIDE-1349 - single file deployer assumed "in workspace" meant "under the workspace tree".
Also, NPE.
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/modules/SingleDeployableFactory.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/modules/SingleDeployableFactory.java 2007-11-21 18:18:48 UTC (rev 5021)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/modules/SingleDeployableFactory.java 2007-11-21 19:38:55 UTC (rev 5022)
@@ -54,6 +54,7 @@
import org.eclipse.wst.server.core.model.IModuleResource;
import org.eclipse.wst.server.core.model.ModuleDelegate;
import org.eclipse.wst.server.core.model.ModuleFactoryDelegate;
+import org.jboss.ide.eclipse.archives.core.ArchivesCore;
import org.jboss.ide.eclipse.as.core.JBossServerCorePlugin;
import org.jboss.ide.eclipse.as.core.server.UnitedServerListener;
import org.jboss.ide.eclipse.as.core.server.UnitedServerListenerManager;
@@ -224,7 +225,8 @@
private IPath workspaceRelative;
public SingleDeployableModuleDelegate(IPath workspaceRelative) {
this.workspaceRelative = workspaceRelative;
- global = ResourcesPlugin.getWorkspace().getRoot().getLocation().append(workspaceRelative);
+ String projectName = workspaceRelative.segment(0);
+ global = ArchivesCore.getInstance().getVariables().getProjectPath(projectName);
}
public IModule[] getChildModules() {
return new IModule[0];
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ModuleUtil.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ModuleUtil.java 2007-11-21 18:18:48 UTC (rev 5021)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ModuleUtil.java 2007-11-21 19:38:55 UTC (rev 5022)
@@ -12,7 +12,8 @@
ArrayList<IModule[]> list = new ArrayList<IModule[]>();
IModule[] children = server.getChildModules(root, new NullProgressMonitor());
// children is { aWar, bWar, cWar } projects
- for( int i = 0; i < children.length; i++ ) {
+ int length = children == null ? 0 : children.length;
+ for( int i = 0; i < length; i++ ) {
ArrayList<IModule> inner = new ArrayList<IModule>();
inner.addAll(Arrays.asList(root));
inner.add(children[i]);
17 years, 2 months
JBoss Tools SVN: r5021 - trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-11-21 13:18:48 -0500 (Wed, 21 Nov 2007)
New Revision: 5021
Modified:
trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun/JBossASAdapterInitializer.java
Log:
JBIDE-1343 - Core Fix, adding default deploy locations to first run.
Modified: trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun/JBossASAdapterInitializer.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun/JBossASAdapterInitializer.java 2007-11-21 18:13:32 UTC (rev 5020)
+++ trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun/JBossASAdapterInitializer.java 2007-11-21 18:18:48 UTC (rev 5021)
@@ -47,6 +47,7 @@
import org.eclipse.wst.server.core.ServerCore;
import org.eclipse.wst.server.core.ServerUtil;
import org.eclipse.wst.server.core.internal.RuntimeWorkingCopy;
+import org.eclipse.wst.server.core.internal.ServerWorkingCopy;
/**
* @author eskimo
@@ -85,6 +86,12 @@
*/
public void earlyStartup() {
+ /*
+ * If there are any problems with EAP not functioning the same as
+ * servers created from scratch, THIS is the method to go to.
+ *
+ * Compare this method with JBossServerWizardFragment#performFinish()
+ */
try {
JstFirstRunPlugin.getDefault().getPreferenceStore().setDefault(FIRST_START_PREFERENCE_NAME, true);
@@ -150,6 +157,18 @@
server.setHost(JBOSS_AS_HOST);
server.setName(JBOSS_AS_NAME);
+ // JBossServer.DEPLOY_DIRECTORY
+ String deployVal = runtime.getLocation().append( "server").append(JBOSS_AS_DEFAULT_CONFIGURATION_NAME).append("deploy").toOSString();
+ ((ServerWorkingCopy)server).setAttribute("org.jboss.ide.eclipse.as.core.server.deployDirectory", deployVal);
+
+ // IDeployableServer.TEMP_DEPLOY_DIRECTORY
+ String deployTmpFolderVal = runtime.getLocation().append( "server").append(JBOSS_AS_DEFAULT_CONFIGURATION_NAME).append("tmp").append("jbosstoolsTemp").toOSString();
+ ((ServerWorkingCopy)server).setAttribute("org.jboss.ide.eclipse.as.core.server.tempDeployDirectory", deployTmpFolderVal);
+
+ // If we'd need to set up a username / pw for JMX, do it here.
+// ((ServerWorkingCopy)serverWC).setAttribute(JBossServer.SERVER_USERNAME, authUser);
+// ((ServerWorkingCopy)serverWC).setAttribute(JBossServer.SERVER_PASSWORD, authPass);
+
server.save(false, progressMonitor);
}
17 years, 2 months
JBoss Tools SVN: r5020 - trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-11-21 13:13:32 -0500 (Wed, 21 Nov 2007)
New Revision: 5020
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossServerWizardFragment.java
Log:
code-cosmetic change. Constant was in wrong file. Semi-related to JBIDE-1343
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossServerWizardFragment.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossServerWizardFragment.java 2007-11-21 17:55:31 UTC (rev 5019)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossServerWizardFragment.java 2007-11-21 18:13:32 UTC (rev 5020)
@@ -383,7 +383,7 @@
if( serverWC instanceof ServerWorkingCopy) {
((ServerWorkingCopy)serverWC).setAttribute(JBossServer.SERVER_USERNAME, authUser);
((ServerWorkingCopy)serverWC).setAttribute(JBossServer.SERVER_PASSWORD, authPass);
- ((ServerWorkingCopy)serverWC).setAttribute(JBossServer.DEPLOY_DIRECTORY, deployVal);
+ ((ServerWorkingCopy)serverWC).setAttribute(IDeployableServer.DEPLOY_DIRECTORY, deployVal);
((ServerWorkingCopy)serverWC).setAttribute(IDeployableServer.TEMP_DEPLOY_DIRECTORY, deployTmpFolderVal);
new File(deployTmpFolderVal).mkdirs();
}
17 years, 2 months
JBoss Tools SVN: r5019 - trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-11-21 12:55:31 -0500 (Wed, 21 Nov 2007)
New Revision: 5019
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetPostInstallDelegate.java
Log:
this file needed its imports organized, bad!
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetPostInstallDelegate.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetPostInstallDelegate.java 2007-11-21 17:39:30 UTC (rev 5018)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetPostInstallDelegate.java 2007-11-21 17:55:31 UTC (rev 5019)
@@ -11,36 +11,21 @@
package org.jboss.tools.seam.internal.core.project.facet;
import java.io.File;
-import java.io.IOException;
-import org.apache.tools.ant.types.FilterSet;
-import org.apache.tools.ant.types.FilterSetCollection;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Path;
-import org.eclipse.core.runtime.Status;
-import org.eclipse.core.runtime.jobs.Job;
-import org.eclipse.core.runtime.preferences.IEclipsePreferences;
-import org.eclipse.jdt.core.IClasspathContainer;
-import org.eclipse.jdt.core.IClasspathEntry;
-import org.eclipse.jdt.core.IJavaProject;
-import org.eclipse.jdt.core.JavaCore;
-import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
import org.eclipse.wst.common.project.facet.core.IDelegate;
import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
import org.eclipse.wst.server.core.IServer;
import org.jboss.ide.eclipse.as.core.server.internal.JBossServer;
-import org.jboss.tools.common.util.ResourcesUtils;
import org.jboss.tools.jst.web.server.RegistrationHelper;
-import org.jboss.tools.seam.core.SeamCorePlugin;
-import org.osgi.service.prefs.BackingStoreException;
/**
* @author eskimo
17 years, 2 months
JBoss Tools SVN: r5018 - trunk/documentation/guides/userguide.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2007-11-21 12:39:30 -0500 (Wed, 21 Nov 2007)
New Revision: 5018
Added:
trunk/documentation/guides/userguide/nightly-build-index.html
Log:
nightly build index
Added: trunk/documentation/guides/userguide/nightly-build-index.html
===================================================================
--- trunk/documentation/guides/userguide/nightly-build-index.html (rev 0)
+++ trunk/documentation/guides/userguide/nightly-build-index.html 2007-11-21 17:39:30 UTC (rev 5018)
@@ -0,0 +1,8 @@
+<html>
+ <body>
+ <h1>Nightly builds of JBoss Tools documentation</h1>
+ <p>Getting Started with RHDS: <a href="GettingStartedGuide/en/html/index.html">Html multi pages</a>,<a href="GettingStartedGuide/en/pdf/Getting_Started_with_RHDS.pdf">PDF</a></p>
+ <p>Getting Exadel Migration: <a href="Exadel-migration/en/html/index.html">Html multi pages</a>,<a href="Exadel-migration/en/pdf/Exadel-migration.pdf">PDF</a></p>
+ <p>JSF-Struts: <a href="legacy-jsf-struts/en/html/index.html">Html multi pages</a>,<a href="GettingStartedGuide/en/pdf/Legacy-jsf-struts.pdf">PDF</a></p>
+ </body>
+</html>
\ No newline at end of file
17 years, 2 months
JBoss Tools SVN: r5017 - in trunk/seam/docs/reference/en: modules and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: afedosik
Date: 2007-11-21 11:46:27 -0500 (Wed, 21 Nov 2007)
New Revision: 5017
Added:
trunk/seam/docs/reference/en/images/create_new_seam/create_seam10_1.png
trunk/seam/docs/reference/en/images/create_new_seam/create_seam10_2.png
trunk/seam/docs/reference/en/images/create_new_seam/create_seam10_3.png
trunk/seam/docs/reference/en/images/create_new_seam/create_seam13_0.png
trunk/seam/docs/reference/en/images/create_new_seam/create_seam14.png
Removed:
trunk/seam/docs/reference/en/images/create_new_seam/tmp.png
Modified:
trunk/seam/docs/reference/en/modules/creating_new_seam.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-289 Create New Seam Project chapter update
Added: trunk/seam/docs/reference/en/images/create_new_seam/create_seam10_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/seam/docs/reference/en/images/create_new_seam/create_seam10_1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/seam/docs/reference/en/images/create_new_seam/create_seam10_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/seam/docs/reference/en/images/create_new_seam/create_seam10_2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/seam/docs/reference/en/images/create_new_seam/create_seam10_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/seam/docs/reference/en/images/create_new_seam/create_seam10_3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/seam/docs/reference/en/images/create_new_seam/create_seam13_0.png
===================================================================
(Binary files differ)
Property changes on: trunk/seam/docs/reference/en/images/create_new_seam/create_seam13_0.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/seam/docs/reference/en/images/create_new_seam/create_seam14.png
===================================================================
(Binary files differ)
Property changes on: trunk/seam/docs/reference/en/images/create_new_seam/create_seam14.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: trunk/seam/docs/reference/en/images/create_new_seam/tmp.png
===================================================================
(Binary files differ)
Modified: trunk/seam/docs/reference/en/modules/creating_new_seam.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/creating_new_seam.xml 2007-11-21 16:24:40 UTC (rev 5016)
+++ trunk/seam/docs/reference/en/modules/creating_new_seam.xml 2007-11-21 16:46:27 UTC (rev 5017)
@@ -142,12 +142,15 @@
</imageobject>
</mediaobject>
</figure>
-
-
+
</section>
<section id="addJSFCapab">
<title>Adding JSF Capabilities</title>
+ <para>This wizard helps you to add JSF capabilities into your project. </para>
+ <para>Checking <emphasis><property>Server Supplied JSF Implementation</property></emphasis>
+ means that you will have a default JSF implementation deployed on server. </para>
+
<figure>
<title>Adding JSF Capabilities to Web Project</title>
<mediaobject>
@@ -157,13 +160,47 @@
</mediaobject>
</figure>
- <para>Check <emphasis><property>Server Supplied JSF Implementation</property></emphasis> and click on <emphasis><property>Next</property>.</emphasis></para>
+ <para>In case when you want to create your custom JSF implementation check a lower radio button. You are able to create a library of jars by clicking on
+ <emphasis><property>New</property></emphasis> button.</para>
+ <para>Type a <property>Library Name</property>, select a <property>Version Supported</property> and add <property>Library jars</property>. Click on <emphasis><property>Finish</property>.</emphasis></para>
+ <figure>
+ <title>Create JSF Implementation Library</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/create_new_seam/create_seam10_1.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>You can also add a <property>Component Libraries</property> (e.g. Richfaces) clicking on <emphasis><property>New</property></emphasis> button in the Component LIbraries section.</para>
+
+ <figure>
+ <title>Create JSF Implementation Library</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/create_new_seam/create_seam10_2.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>The last wizard options allows to edit a path for <property>JSF Configuration File</property>, a name for <property>JSF Servlet</property>, <property>JSF Servlet Classname</property>
+ and change an <property>URL Mapping Patterns</property>.</para>
+
+ <figure>
+ <title>JSF Capabilities Wizard</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/create_new_seam/create_seam10_3.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
</section>
<section id="seamFacet">
<title>Configure Seam Facet Settings</title>
+ <para>The last wizard step is related to Seam facet and allows you to do the following:</para>
<figure>
<title>Seam Facet Settings</title>
<mediaobject>
@@ -172,8 +209,7 @@
</imageobject>
</mediaobject>
</figure>
-
- <para>This wizard step is related to Seam facet and allows you to do the following:</para>
+
<itemizedlist>
<listitem><para>Create Seam runtime and define Seam home folder. Click on <emphasis><property>Add</property></emphasis> button in the <property>General</property> section.</para></listitem>
</itemizedlist>
@@ -188,11 +224,23 @@
</figure>
<itemizedlist>
- <listitem><para>Select EAR or WAR deployment by checking the necessary combo box.</para></listitem>
- <listitem><para>Select the <emphasis><property>Database Type</property></emphasis> and create a <emphasis><property>Connection profile</property>.</emphasis>
- Click on <emphasis><property>New</property></emphasis> button and select the necessary connection profile.</para></listitem>
+ <listitem><para>Select EAR or WAR deployment by checking a necessary radio button.</para></listitem>
+ <listitem><para>Select a <emphasis><property>Database Type</property></emphasis></para></listitem>
</itemizedlist>
+
+ <figure>
+ <title>Seam Runtime Creation</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/create_new_seam/create_seam13_0.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem><para>and create a <emphasis><property>Connection profile</property></emphasis> clicking on <emphasis><property>New</property></emphasis> button and select the necessary connection profile.</para></listitem>
+ </itemizedlist>
+
<figure>
<title>Connection Prodile Selecting</title>
<mediaobject>
@@ -202,5 +250,20 @@
</mediaobject>
</figure>
+ <para>Other Database fields are describing a Database and a connection to it.</para>
+ <para>In the <property>Code Generation</property> section you can edit a package name for <property>Session Bean</property>, <property>Entity Bean</property> and <property>Test</property>.</para>
+
+
+ <figure>
+ <title>Code Generation Section</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/create_new_seam/create_seam14.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>Click on <emphasis><property>Finish</property></emphasis> to generate a project.</para>
+
</section>
</chapter>
17 years, 2 months
JBoss Tools SVN: r5016 - trunk/seam/docs/reference/en/images/testng.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2007-11-21 11:24:40 -0500 (Wed, 21 Nov 2007)
New Revision: 5016
Modified:
trunk/seam/docs/reference/en/images/testng/testng_2.png
trunk/seam/docs/reference/en/images/testng/testng_3.png
trunk/seam/docs/reference/en/images/testng/testng_4.png
trunk/seam/docs/reference/en/images/testng/testng_7.png
Log:
http://jira.jboss.com/jira/browse/RHDS-312
Modified: trunk/seam/docs/reference/en/images/testng/testng_2.png
===================================================================
(Binary files differ)
Modified: trunk/seam/docs/reference/en/images/testng/testng_3.png
===================================================================
(Binary files differ)
Modified: trunk/seam/docs/reference/en/images/testng/testng_4.png
===================================================================
(Binary files differ)
Modified: trunk/seam/docs/reference/en/images/testng/testng_7.png
===================================================================
(Binary files differ)
17 years, 2 months
JBoss Tools SVN: r5015 - in trunk/seam/docs/reference/en: modules and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: achabatar
Date: 2007-11-21 11:17:46 -0500 (Wed, 21 Nov 2007)
New Revision: 5015
Modified:
trunk/seam/docs/reference/en/images/testng/testng_1.png
trunk/seam/docs/reference/en/images/testng/testng_2.png
trunk/seam/docs/reference/en/images/testng/testng_3.png
trunk/seam/docs/reference/en/images/testng/testng_4.png
trunk/seam/docs/reference/en/images/testng/testng_7.png
trunk/seam/docs/reference/en/modules/crud_database_application.xml
trunk/seam/docs/reference/en/modules/testng.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-312
change images from RHDS to JBoss Tools
Modified: trunk/seam/docs/reference/en/images/testng/testng_1.png
===================================================================
(Binary files differ)
Modified: trunk/seam/docs/reference/en/images/testng/testng_2.png
===================================================================
(Binary files differ)
Modified: trunk/seam/docs/reference/en/images/testng/testng_3.png
===================================================================
(Binary files differ)
Modified: trunk/seam/docs/reference/en/images/testng/testng_4.png
===================================================================
(Binary files differ)
Modified: trunk/seam/docs/reference/en/images/testng/testng_7.png
===================================================================
(Binary files differ)
Modified: trunk/seam/docs/reference/en/modules/crud_database_application.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/crud_database_application.xml 2007-11-21 15:23:34 UTC (rev 5014)
+++ trunk/seam/docs/reference/en/modules/crud_database_application.xml 2007-11-21 16:17:46 UTC (rev 5015)
@@ -45,7 +45,7 @@
<itemizedlist>
<listitem>
<para>Name your project as <emphasis><property>crudapp</property></emphasis> and follow the next wizard steps keeping default settings.</para>
- <para>Please have a look to previous chapters how to create <emphasis><property>Target Runtime</property></emphasis> and <emphasis><property>Seam Runtime</property></emphasis>.</para>
+ <para>Please have a look <link linkend="create_seam">here</link> how to create <emphasis><property>Target Runtime</property></emphasis> and <emphasis><property>Seam Runtime</property></emphasis>.</para>
</listitem>
</itemizedlist>
<figure>
Modified: trunk/seam/docs/reference/en/modules/testng.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/testng.xml 2007-11-21 15:23:34 UTC (rev 5014)
+++ trunk/seam/docs/reference/en/modules/testng.xml 2007-11-21 16:17:46 UTC (rev 5015)
@@ -38,7 +38,7 @@
<para><ulink url="http://www-128.ibm.com/developerworks/java/library/j-cq08296/index.html">In pursuit of code quality: JUnit 4 vs. TestNG</ulink></para>
</section>
<section>
- <title>How to use the generated Seam-test project to run Seam tests in Red Hat Developer Studio</title>
+ <title>How to use the generated Seam-test project to run Seam tests</title>
<itemizedlist>
<listitem><para>Create a new Seam Web Project using New Project wizard or main menu <emphasis><property>File > New > Seam Web Project</property>.</emphasis></para></listitem>
17 years, 2 months