JBoss Tools SVN: r8222 - tags.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2008-05-20 13:07:39 -0400 (Tue, 20 May 2008)
New Revision: 8222
Added:
tags/jbosstools-2.1.0.GA/
Log:
tagging jbosstools-2.1.0.GA
17 years, 11 months
JBoss Tools SVN: r8221 - tags.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2008-05-20 13:07:33 -0400 (Tue, 20 May 2008)
New Revision: 8221
Removed:
tags/jbosstools-2.1.0.GA/
Log:
starting over
17 years, 11 months
JBoss Tools SVN: r8220 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2008-05-20 13:00:37 -0400 (Tue, 20 May 2008)
New Revision: 8220
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-2238 Fixed
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java 2008-05-20 16:58:36 UTC (rev 8219)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java 2008-05-20 17:00:37 UTC (rev 8220)
@@ -679,15 +679,16 @@
}
private void storeSettigs() {
- IScopeContext projectScope = new ProjectScope(project);
- IEclipsePreferences prefs = projectScope.getNode(SeamCorePlugin.PLUGIN_ID);
+ IEclipsePreferences prefs = preferences;
+ if(prefs==null) {
+ IScopeContext projectScope = new ProjectScope(project);
+ prefs = projectScope.getNode(SeamCorePlugin.PLUGIN_ID);
+ }
prefs.put(ISeamFacetDataModelProperties.SEAM_SETTINGS_VERSION,
ISeamFacetDataModelProperties.SEAM_SETTINGS_VERSION_1_1);
-
prefs.put(ISeamFacetDataModelProperties.JBOSS_AS_DEPLOY_AS,
getValue(ISeamFacetDataModelProperties.JBOSS_AS_DEPLOY_AS));
-
prefs.put(ISeamFacetDataModelProperties.SEAM_RUNTIME_NAME,
getValue(ISeamFacetDataModelProperties.SEAM_RUNTIME_NAME));
prefs.put(ISeamFacetDataModelProperties.SEAM_CONNECTION_PROFILE,
17 years, 11 months
JBoss Tools SVN: r8219 - branches/jbosstools-2.1.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2008-05-20 12:58:36 -0400 (Tue, 20 May 2008)
New Revision: 8219
Modified:
branches/jbosstools-2.1.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-2238 Fixed
Modified: branches/jbosstools-2.1.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java
===================================================================
--- branches/jbosstools-2.1.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java 2008-05-20 16:50:22 UTC (rev 8218)
+++ branches/jbosstools-2.1.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java 2008-05-20 16:58:36 UTC (rev 8219)
@@ -679,15 +679,16 @@
}
private void storeSettigs() {
- IScopeContext projectScope = new ProjectScope(project);
- IEclipsePreferences prefs = projectScope.getNode(SeamCorePlugin.PLUGIN_ID);
+ IEclipsePreferences prefs = preferences;
+ if(prefs==null) {
+ IScopeContext projectScope = new ProjectScope(project);
+ prefs = projectScope.getNode(SeamCorePlugin.PLUGIN_ID);
+ }
prefs.put(ISeamFacetDataModelProperties.SEAM_SETTINGS_VERSION,
ISeamFacetDataModelProperties.SEAM_SETTINGS_VERSION_1_1);
-
prefs.put(ISeamFacetDataModelProperties.JBOSS_AS_DEPLOY_AS,
getValue(ISeamFacetDataModelProperties.JBOSS_AS_DEPLOY_AS));
-
prefs.put(ISeamFacetDataModelProperties.SEAM_RUNTIME_NAME,
getValue(ISeamFacetDataModelProperties.SEAM_RUNTIME_NAME));
prefs.put(ISeamFacetDataModelProperties.SEAM_CONNECTION_PROFILE,
17 years, 11 months
JBoss Tools SVN: r8218 - trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/ant/model.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2008-05-20 12:50:22 -0400 (Tue, 20 May 2008)
New Revision: 8218
Modified:
trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/ant/model/AntEntityRecognizer.java
Log:
Removed System.out.println()
Modified: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/ant/model/AntEntityRecognizer.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/ant/model/AntEntityRecognizer.java 2008-05-20 16:39:02 UTC (rev 8217)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/ant/model/AntEntityRecognizer.java 2008-05-20 16:50:22 UTC (rev 8218)
@@ -35,7 +35,6 @@
i = d.describe(new StringReader(body), null);
if(i == 2) {
IContentDescription aa = cd.getDescriptionFor(new StringReader(body), SUPPORTED_OPTIONS);
- System.out.println("aaa");
}
} catch (IOException e) {
ModelPlugin.getPluginLog().logError(e);
17 years, 11 months
JBoss Tools SVN: r8217 - tags/jbosstools-2.1.0.GA.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2008-05-20 12:39:02 -0400 (Tue, 20 May 2008)
New Revision: 8217
Added:
tags/jbosstools-2.1.0.GA/as/
Log:
tagging for 2.1.0.GA
Copied: tags/jbosstools-2.1.0.GA/as (from rev 8216, branches/jbosstools-2.1.x/as)
17 years, 11 months
JBoss Tools SVN: r8216 - tags.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2008-05-20 12:37:57 -0400 (Tue, 20 May 2008)
New Revision: 8216
Added:
tags/jbosstools-2.1.0.GA/
Log:
tagging for GA
17 years, 11 months
JBoss Tools SVN: r8215 - trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test.
by jbosstools-commits@lists.jboss.org
Author: vrubezhny
Date: 2008-05-20 11:24:15 -0400 (Tue, 20 May 2008)
New Revision: 8215
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-2004 Create JUnit tests for New Seam Action/Form/Conversation/Entity wizards. It should invoke seam-gen and check results of its work.
Test Cases are created for the Seam 1.2
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java 2008-05-20 15:21:45 UTC (rev 8214)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java 2008-05-20 15:24:15 UTC (rev 8215)
@@ -38,7 +38,7 @@
public static Test suite() {
TestSuite suite = new TestSuite("Seam UI tests");
-/*
+
suite.addTestSuite(OpenSeamComponentDialogTest.class);
suite.addTest(SeamComponentsViewAllTests.suite());
suite.addTestSuite(SeamProjectNewWizardTest.class);
@@ -49,7 +49,7 @@
suite.addTestSuite(SeamELContentAssistJbide1676Test.class);
suite.addTestSuite(SeamELContentAssistJbide1645Test.class);
suite.addTest(new ProjectImportTestSetup(new TestSuite(SeamSettingsPreferencesPageTest.class), "org.jboss.tools.seam.ui.test", "projects/TestSeamSettingsPreferencesPage", "TestSeamSettingsPreferencesPage"));
-*/
+
suite.addTest(new ProjectImportTestSetup(new TestSuite(Seam12EARNewOperationTest.class),
"org.jboss.tools.seam.ui.test",
new String[]{"projects/seam_ear", "projects/seam_ear-ejb", "projects/seam_ear-test"},
@@ -59,15 +59,6 @@
new String[]{"projects/seam_war", "projects/seam_war-test"},
new String[]{"seam_war-war", "seam_war-test"}));
-//suite.addTest(new ProjectImportTestSetup(new TestSuite(Seam20EARNewOperationTest.class),
-//"org.jboss.tools.seam.ui.test",
-//new String[]{"projects/seam_ear", "projects/seam_ear-ejb", "projects/seam_ear-test"},
-//new String[]{"seam_ear-war", "seam_ear-ejb", "seam_ear-test"}));
-//suite.addTest(new ProjectImportTestSetup(new TestSuite(Seam20WARNewOperationTest.class),
-//"org.jboss.tools.seam.ui.test",
-//new String[]{"projects/seam_war", "projects/seam_war-test"},
-//new String[]{"seam_war-war", "seam_war-test"}));
-
return suite;
}
}
\ No newline at end of file
17 years, 11 months
JBoss Tools SVN: r8214 - in trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test: wizard and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: vrubezhny
Date: 2008-05-20 11:21:45 -0400 (Tue, 20 May 2008)
New Revision: 8214
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/AbstractSeamNewOperationTest.java
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/Seam12EARNewOperationTest.java
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/Seam12WARNewOperationTest.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-2004 Create JUnit tests for New Seam Action/Form/Conversation/Entity wizards. It should invoke seam-gen and check results of its work.
Test Cases are created for the Seam 1.2
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java 2008-05-20 14:54:26 UTC (rev 8213)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/SeamUiAllTests.java 2008-05-20 15:21:45 UTC (rev 8214)
@@ -23,6 +23,7 @@
import org.jboss.tools.seam.ui.test.preferences.SeamSettingsPreferencesPageTest;
import org.jboss.tools.seam.ui.test.view.SeamComponentsViewAllTests;
import org.jboss.tools.seam.ui.test.wizard.OpenSeamComponentDialogTest;
+import org.jboss.tools.seam.ui.test.wizard.Seam12EARNewOperationTest;
import org.jboss.tools.seam.ui.test.wizard.Seam12WARNewOperationTest;
import org.jboss.tools.seam.ui.test.wizard.SeamFormNewWizardTest;
import org.jboss.tools.seam.ui.test.wizard.SeamProjectNewWizardTest;
@@ -37,6 +38,7 @@
public static Test suite() {
TestSuite suite = new TestSuite("Seam UI tests");
+/*
suite.addTestSuite(OpenSeamComponentDialogTest.class);
suite.addTest(SeamComponentsViewAllTests.suite());
suite.addTestSuite(SeamProjectNewWizardTest.class);
@@ -47,12 +49,25 @@
suite.addTestSuite(SeamELContentAssistJbide1676Test.class);
suite.addTestSuite(SeamELContentAssistJbide1645Test.class);
suite.addTest(new ProjectImportTestSetup(new TestSuite(SeamSettingsPreferencesPageTest.class), "org.jboss.tools.seam.ui.test", "projects/TestSeamSettingsPreferencesPage", "TestSeamSettingsPreferencesPage"));
-
+*/
+ suite.addTest(new ProjectImportTestSetup(new TestSuite(Seam12EARNewOperationTest.class),
+ "org.jboss.tools.seam.ui.test",
+ new String[]{"projects/seam_ear", "projects/seam_ear-ejb", "projects/seam_ear-test"},
+ new String[]{"seam_ear-war", "seam_ear-ejb", "seam_ear-test"}));
suite.addTest(new ProjectImportTestSetup(new TestSuite(Seam12WARNewOperationTest.class),
"org.jboss.tools.seam.ui.test",
new String[]{"projects/seam_war", "projects/seam_war-test"},
new String[]{"seam_war-war", "seam_war-test"}));
+//suite.addTest(new ProjectImportTestSetup(new TestSuite(Seam20EARNewOperationTest.class),
+//"org.jboss.tools.seam.ui.test",
+//new String[]{"projects/seam_ear", "projects/seam_ear-ejb", "projects/seam_ear-test"},
+//new String[]{"seam_ear-war", "seam_ear-ejb", "seam_ear-test"}));
+//suite.addTest(new ProjectImportTestSetup(new TestSuite(Seam20WARNewOperationTest.class),
+//"org.jboss.tools.seam.ui.test",
+//new String[]{"projects/seam_war", "projects/seam_war-test"},
+//new String[]{"seam_war-war", "seam_war-test"}));
+
return suite;
}
}
\ No newline at end of file
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/AbstractSeamNewOperationTest.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/AbstractSeamNewOperationTest.java 2008-05-20 14:54:26 UTC (rev 8213)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/AbstractSeamNewOperationTest.java 2008-05-20 15:21:45 UTC (rev 8214)
@@ -102,13 +102,13 @@
assertNotNull("Resource isn't created: " + path, resource);
assertTrue("Resource isn't created: " + path, resource.exists());
- IMarker[] markers = null;
+ int maxSevarityMarkersCount = -1;
try {
- markers = resource.findMarkers(IMarker.PROBLEM, true, IResource.DEPTH_INFINITE);
+ maxSevarityMarkersCount = resource.findMaxProblemSeverity(IMarker.PROBLEM, false, IResource.DEPTH_INFINITE);
} catch (CoreException e) {
JUnitUtils.fail(e.getMessage(), e);
}
- assertFalse("At least one problem markar exists on resource: " + path, (markers != null && markers.length > 0));
+ assertFalse("At least one problem marker exists on resource: " + path, (maxSevarityMarkersCount >= 0));
}
@@ -224,6 +224,8 @@
} catch (Exception e) {
JUnitUtils.fail(e.getMessage(), e);
}
+
+ assertNewFormFilesAreCreatedSuccessfully(registry);
}
/**
* Test Seam Action for http://jira.jboss.com/jira/browse/JBIDE-2004
@@ -242,6 +244,13 @@
registry.createData();
registry.fillDataDefaults(SEAM_CONVERSATION_COMPONENT_NAME, getProject().getName());
performOperation(CREATE_SEAM_CONVERSATION, registry);
+ try {
+ EditorTestHelper.joinBackgroundActivities();
+ } catch (Exception e) {
+ JUnitUtils.fail(e.getMessage(), e);
+ }
+
+ assertNewConversationFilesAreCreatedSuccessfully(registry);
}
/**
@@ -258,12 +267,36 @@
setUpSeamProjects();
- AdaptableRegistry registry = new AdaptableRegistry();
+ AdaptableRegistry registry = new AdaptableRegistry() {
+ protected void fillDataDefaults(String componentName, String projectName) {
+ super.fillDataDefaults(componentName, projectName);
+ setDefaultValue(IParameter.SEAM_PACKAGE_NAME, getEntityBeanPackageName(getSeamFacetPreferences(projectName)));
+ }
+
+ };
registry.createData();
registry.fillDataDefaults(SEAM_ENTITY_COMPONENT_NAME, getProject().getName());
performOperation(CREATE_SEAM_ENTITY, registry);
+ try {
+ EditorTestHelper.joinBackgroundActivities();
+ } catch (Exception e) {
+ JUnitUtils.fail(e.getMessage(), e);
+ }
+
+ assertNewEntityFilesAreCreatedSuccessfully(registry);
}
-
+
+ protected IEclipsePreferences getSeamFacetPreferences(String selectedProject) {
+ if(selectedProject!=null && selectedProject.length()>0) {
+ IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(selectedProject);
+ if(project!=null) {
+ return SeamCorePlugin.getSeamPreferences(project);
+ }
+ }
+
+ return null;
+ }
+
protected String getDefaultPackageName(String selectedProject) {
String packageName = "";
if(selectedProject!=null && selectedProject.length()>0) {
@@ -339,7 +372,7 @@
add(SeamWizardFactory.createSeamMethodNameFieldEditor());
add(SeamWizardFactory.createSeamMasterPageNameFieldEditor());
add(SeamWizardFactory.createSeamPageNameFieldEditor());
-
+ add(SeamWizardFactory.createSeamEntityClasNameFieldEditor());
IProject rootSeamProject = SeamWizardUtils.getRootSeamProject(getProject());
String selectedProject = (rootSeamProject == null) ? "" : rootSeamProject.getName();
String packageName = getDefaultPackageName(selectedProject);
@@ -352,6 +385,7 @@
setDefaultValue(IParameter.SEAM_COMPONENT_NAME, valueU); //$NON-NLS-1$
setDefaultValue(IParameter.SEAM_LOCAL_INTERFACE_NAME, valueU); //$NON-NLS-1$
setDefaultValue(IParameter.SEAM_BEAN_NAME, valueU+"Bean"); //$NON-NLS-1$
+ setDefaultValue(IParameter.SEAM_ENTITY_CLASS_NAME, valueU); //$NON-NLS-1$
setDefaultValue(IParameter.SEAM_METHOD_NAME, valueL); //$NON-NLS-1$
setDefaultValue(IParameter.SEAM_MASTER_PAGE_NAME, valueL+"List");
setDefaultValue(IParameter.SEAM_PAGE_NAME, valueL); //$NON-NLS-1$
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/Seam12EARNewOperationTest.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/Seam12EARNewOperationTest.java 2008-05-20 14:54:26 UTC (rev 8213)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/Seam12EARNewOperationTest.java 2008-05-20 15:21:45 UTC (rev 8214)
@@ -42,7 +42,7 @@
earProject = ProjectImportTestSetup.loadProject(SEAM_EAR_PROJECTNAME);
}
if(earEjbProject==null) {
- earProject = ProjectImportTestSetup.loadProject(SEAM_EAR_EJB_PROJECTNAME);
+ earEjbProject = ProjectImportTestSetup.loadProject(SEAM_EAR_EJB_PROJECTNAME);
}
if(testProject==null) {
testProject = ProjectImportTestSetup.loadProject(SEAM_EAR_TEST_PROJECTNAME);
@@ -93,52 +93,58 @@
String seamLocalInterfaceName = data.getValue(IParameter.SEAM_LOCAL_INTERFACE_NAME);
String seamBeanName = data.getValue(IParameter.SEAM_BEAN_NAME);
+//
+// "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
+// ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
+// ${" + IParameter.SEAM_BEAN_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+
+ IResource beanJava = seamProjectSrcActionFolder.findMember(
+ sessionBeanPackagePath + "/" + seamBeanName + ".java");
+ assertResourceIsCreatedAndHasNoProblems(beanJava,
+ seamProjectSrcActionFolder.toString() + "/" +
+ sessionBeanPackagePath + "/" + seamBeanName + ".java");
+
+//
+// "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
+// ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
+// ${" + IParameter.SEAM_LOCAL_INTERFACE_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+
IResource localInterfaceJava = seamProjectSrcActionFolder.findMember(
sessionBeanPackagePath + "/" + seamLocalInterfaceName + ".java");
assertResourceIsCreatedAndHasNoProblems(localInterfaceJava,
seamProjectSrcActionFolder.toString() + "/" +
sessionBeanPackagePath + "/" + seamLocalInterfaceName + ".java");
- IResource beanJava = seamProjectSrcActionFolder.findMember(
- sessionBeanPackagePath + "/" + seamBeanName + ".java");
- assertResourceIsCreatedAndHasNoProblems(beanJava,
- seamProjectSrcActionFolder.toString() + "/" +
- sessionBeanPackagePath + "/" + seamBeanName + ".java");
+//
+// "${" + IParameter.TEST_SOURCE_FOLDER + "}/
+// ${" + ISeamFacetDataModelProperties.TEST_CASES_PACKAGE_PATH + "}/
+// ${"+ IParameter.SEAM_LOCAL_INTERFACE_NAME +"}Test.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
IResource localInterfaceTestJava = testSourceFolder.findMember(
testCasesPackagePath + "/" + seamLocalInterfaceName + "Test.java");
assertResourceIsCreatedAndHasNoProblems(localInterfaceTestJava,
testSourceFolder.toString() + "/" +
- sessionBeanPackagePath + "/" + seamLocalInterfaceName + ".java");
+ testCasesPackagePath + "/" + seamLocalInterfaceName + "Test.java");
+// "${" + IParameter.TEST_SOURCE_FOLDER + "}/
+// ${" + ISeamFacetDataModelProperties.TEST_CASES_PACKAGE_PATH + "}/
+// ${"+ IParameter.SEAM_LOCAL_INTERFACE_NAME +"}Test.xml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+
IResource localInterfaceTestXml = testSourceFolder.findMember(
testCasesPackagePath + "/" + seamLocalInterfaceName + "Test.xml");
assertResourceIsCreatedAndHasNoProblems(localInterfaceTestXml,
testSourceFolder.toString() + "/" +
- sessionBeanPackagePath + "/" + seamLocalInterfaceName + ".java");
+ testCasesPackagePath + "/" + seamLocalInterfaceName + "Test.xml");
+//
+// "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
+// ${" + IParameter.SEAM_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+
IResource seamPageNameXhtml = seamProjectWebContentFolder.findMember(
seamPageName + ".xhtml");
assertResourceIsCreatedAndHasNoProblems(seamPageNameXhtml,
seamProjectWebContentFolder.toString() + "/" +
seamPageName + ".xhtml");
-
-/*
- "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
- ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
- ${" + IParameter.SEAM_BEAN_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
- ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
- ${" + IParameter.SEAM_LOCAL_INTERFACE_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.TEST_SOURCE_FOLDER + "}/
- ${" + ISeamFacetDataModelProperties.TEST_CASES_PACKAGE_PATH + "}/
- ${"+ IParameter.SEAM_LOCAL_INTERFACE_NAME +"}Test.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.TEST_SOURCE_FOLDER + "}/
- ${" + ISeamFacetDataModelProperties.TEST_CASES_PACKAGE_PATH + "}/
- ${"+ IParameter.SEAM_LOCAL_INTERFACE_NAME +"}Test.xml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
- ${" + IParameter.SEAM_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
-*/
}
@Override
@@ -155,34 +161,37 @@
String seamLocalInterfaceName = data.getValue(IParameter.SEAM_LOCAL_INTERFACE_NAME);
String seamBeanName = data.getValue(IParameter.SEAM_BEAN_NAME);
+//
+// "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
+// ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
+// ${" + IParameter.SEAM_BEAN_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+
IResource beanJava = seamProjectSrcActionFolder.findMember(
sessionBeanPackagePath + "/" + seamBeanName + ".java");
assertResourceIsCreatedAndHasNoProblems(beanJava,
seamProjectSrcActionFolder.toString() + "/" +
sessionBeanPackagePath + "/" + seamBeanName + ".java");
-
+
+//
+// "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
+// ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
+// ${" + IParameter.SEAM_LOCAL_INTERFACE_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+
IResource localInterfaceJava = seamProjectSrcActionFolder.findMember(
sessionBeanPackagePath + "/" + seamLocalInterfaceName + ".java");
assertResourceIsCreatedAndHasNoProblems(localInterfaceJava,
seamProjectSrcActionFolder.toString() + "/" +
sessionBeanPackagePath + "/" + seamLocalInterfaceName + ".java");
+//
+// "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
+// ${" + IParameter.SEAM_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+
IResource seamPageNameXhtml = seamProjectWebContentFolder.findMember(
seamPageName + ".xhtml");
assertResourceIsCreatedAndHasNoProblems(seamPageNameXhtml,
seamProjectWebContentFolder.toString() + "/" +
seamPageName + ".xhtml");
-
-/*
- "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
- ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
- ${" + IParameter.SEAM_BEAN_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
- ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
- ${" + IParameter.SEAM_LOCAL_INTERFACE_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
- ${" + IParameter.SEAM_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
-*/
}
@Override
@@ -201,71 +210,62 @@
String seamMasterPageName = data.getValue(IParameter.SEAM_MASTER_PAGE_NAME);
String seamEntityClassName = data.getValue(IParameter.SEAM_ENTITY_CLASS_NAME);
+//
+// "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
+// ${" + IParameter.SEAM_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+
+ IResource seamPageNameXhtml = seamProjectWebContentFolder.findMember(
+ seamPageName + ".xhtml");
+ assertResourceIsCreatedAndHasNoProblems(seamPageNameXhtml,
+ seamProjectWebContentFolder.toString() + "/" +
+ seamPageName + ".xhtml");
+
+//
+// "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
+// ${" + IParameter.SEAM_MASTER_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+
+ IResource seamMasterPageNameXhtml = seamProjectWebContentFolder.findMember(
+ seamMasterPageName + ".xhtml");
+ assertResourceIsCreatedAndHasNoProblems(seamMasterPageNameXhtml,
+ seamProjectWebContentFolder.toString() + "/" +
+ seamMasterPageName + ".xhtml");
+
+//
+// "${" + IParameter.SEAM_PROJECT_SRC_MODEL + "}/
+// ${" + ISeamFacetDataModelProperties.ENTITY_BEAN_PACKAGE_PATH + "}/
+// ${" + IParameter.SEAM_ENTITY_CLASS_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+
IResource entityClassJava = seamProjectSrcModelFolder.findMember(
entityBeanPackagePath + "/" + seamEntityClassName + ".java");
assertResourceIsCreatedAndHasNoProblems(entityClassJava,
seamProjectSrcModelFolder.toString() + "/" +
entityBeanPackagePath + "/" + seamEntityClassName + ".java");
+//
+// "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
+// ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
+// ${" + IParameter.SEAM_ENTITY_CLASS_NAME +"}Home.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+
IResource entityHomeJava = seamProjectSrcActionFolder.findMember(
sessionBeanPackagePath + "/" + seamEntityClassName + "Home.java");
assertResourceIsCreatedAndHasNoProblems(entityHomeJava,
seamProjectSrcActionFolder.toString() + "/" +
sessionBeanPackagePath + "/" + seamEntityClassName + "Home.java");
-
+
+//
+// "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
+// ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
+// ${" + IParameter.SEAM_ENTITY_CLASS_NAME +"}List.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+
IResource entityListJava = seamProjectSrcActionFolder.findMember(
sessionBeanPackagePath + "/" + seamEntityClassName + "List.java");
assertResourceIsCreatedAndHasNoProblems(entityListJava,
seamProjectSrcActionFolder.toString() + "/" +
sessionBeanPackagePath + "/" + seamEntityClassName + "List.java");
-
- IResource seamMasterPageNameXhtml = seamProjectWebContentFolder.findMember(
- seamMasterPageName + ".xhtml");
- assertResourceIsCreatedAndHasNoProblems(seamMasterPageNameXhtml,
- seamProjectWebContentFolder.toString() + "/" +
- seamMasterPageName + ".xhtml");
-
- IResource seamPageNameXhtml = seamProjectWebContentFolder.findMember(
- seamPageName + ".xhtml");
- assertResourceIsCreatedAndHasNoProblems(seamPageNameXhtml,
- seamProjectWebContentFolder.toString() + "/" +
- seamPageName + ".xhtml");
-
-/*
- "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
- ${" + IParameter.SEAM_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
- "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
- ${" + IParameter.SEAM_MASTER_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
- "${" + IParameter.SEAM_PROJECT_SRC_MODEL + "}/
- ${" + ISeamFacetDataModelProperties.ENTITY_BEAN_PACKAGE_PATH + "}/
- ${" + IParameter.SEAM_ENTITY_CLASS_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
- ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
- ${" + IParameter.SEAM_ENTITY_CLASS_NAME +"}Home.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
- ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
- ${" + IParameter.SEAM_ENTITY_CLASS_NAME +"}List.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
-*/
}
@Override
void assertNewFormFilesAreCreatedSuccessfully(AdaptableRegistry data) {
assertNewActionFilesAreCreatedSuccessfully(data);
-/*
- "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
- ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
- ${" + IParameter.SEAM_BEAN_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.SEAM_PROJECT_SRC_ACTION + "}/
- ${" + ISeamFacetDataModelProperties.SESSION_BEAN_PACKAGE_PATH + "}/
- ${" + IParameter.SEAM_LOCAL_INTERFACE_NAME +"}.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.TEST_SOURCE_FOLDER + "}/
- ${" + ISeamFacetDataModelProperties.TEST_CASES_PACKAGE_PATH + "}/
- ${"+ IParameter.SEAM_LOCAL_INTERFACE_NAME +"}Test.java", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.TEST_SOURCE_FOLDER + "}/
- ${" + ISeamFacetDataModelProperties.TEST_CASES_PACKAGE_PATH + "}/
- ${"+ IParameter.SEAM_LOCAL_INTERFACE_NAME +"}Test.xml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
- ${" + IParameter.SEAM_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
-*/
}
}
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/Seam12WARNewOperationTest.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/Seam12WARNewOperationTest.java 2008-05-20 14:54:26 UTC (rev 8213)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/wizard/Seam12WARNewOperationTest.java 2008-05-20 15:21:45 UTC (rev 8214)
@@ -132,13 +132,13 @@
IContainer seamProjectWebContentFolder = seamPrjSet.getViewsFolder();
String seamPageName = data.getValue(IParameter.SEAM_PAGE_NAME);
- String seamLocalInterfaceName = data.getValue(IParameter.SEAM_LOCAL_INTERFACE_NAME);
-
- IResource localInterfaceJava = seamProjectSrcActionFolder.findMember(
- sessionBeanPackagePath + "/" + seamLocalInterfaceName + ".java");
- assertResourceIsCreatedAndHasNoProblems(localInterfaceJava,
+ String seamBeanName = data.getValue(IParameter.SEAM_BEAN_NAME);
+
+ IResource seamBeanJava = seamProjectSrcActionFolder.findMember(
+ sessionBeanPackagePath + "/" + seamBeanName + ".java");
+ assertResourceIsCreatedAndHasNoProblems(seamBeanJava,
seamProjectSrcActionFolder.toString() + "/" +
- sessionBeanPackagePath + "/" + seamLocalInterfaceName + ".java");
+ sessionBeanPackagePath + "/" + seamBeanName + ".java");
IResource seamPageNameXhtml = seamProjectWebContentFolder.findMember(
seamPageName + ".xhtml");
@@ -171,6 +171,18 @@
String seamMasterPageName = data.getValue(IParameter.SEAM_MASTER_PAGE_NAME);
String seamEntityClassName = data.getValue(IParameter.SEAM_ENTITY_CLASS_NAME);
+ IResource seamPageNameXhtml = seamProjectWebContentFolder.findMember(
+ seamPageName + ".xhtml");
+ assertResourceIsCreatedAndHasNoProblems(seamPageNameXhtml,
+ seamProjectWebContentFolder.toString() + "/" +
+ seamPageName + ".xhtml");
+
+ IResource seamMasterPageNameXhtml = seamProjectWebContentFolder.findMember(
+ seamMasterPageName + ".xhtml");
+ assertResourceIsCreatedAndHasNoProblems(seamMasterPageNameXhtml,
+ seamProjectWebContentFolder.toString() + "/" +
+ seamMasterPageName + ".xhtml");
+
IResource entityClassJava = seamProjectSrcModelFolder.findMember(
entityBeanPackagePath + "/" + seamEntityClassName + ".java");
assertResourceIsCreatedAndHasNoProblems(entityClassJava,
@@ -189,18 +201,6 @@
seamProjectSrcActionFolder.toString() + "/" +
sessionBeanPackagePath + "/" + seamEntityClassName + "List.java");
- IResource seamMasterPageNameXhtml = seamProjectWebContentFolder.findMember(
- seamMasterPageName + ".xhtml");
- assertResourceIsCreatedAndHasNoProblems(seamMasterPageNameXhtml,
- seamProjectWebContentFolder.toString() + "/" +
- seamMasterPageName + ".xhtml");
-
- IResource seamPageNameXhtml = seamProjectWebContentFolder.findMember(
- seamPageName + ".xhtml");
- assertResourceIsCreatedAndHasNoProblems(seamPageNameXhtml,
- seamProjectWebContentFolder.toString() + "/" +
- seamPageName + ".xhtml");
-
/*
"${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/
${" + IParameter.SEAM_PAGE_NAME +"}.xhtml", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
17 years, 11 months
JBoss Tools SVN: r8213 - in branches/jbosstools-2.1.x/jbpm/docs: reference and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2008-05-20 10:54:26 -0400 (Tue, 20 May 2008)
New Revision: 8213
Modified:
branches/jbosstools-2.1.x/jbpm/docs/
branches/jbosstools-2.1.x/jbpm/docs/reference/en/master.xml
branches/jbosstools-2.1.x/jbpm/docs/reference/en/modules/Quick_Howto_Guide.xml
branches/jbosstools-2.1.x/jbpm/docs/reference/pom.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-324
Merged revisions 8058,8083,8107,8113-8114,8141,8148 via svnmerge from
https://svn.jboss.org/repos/jbosstools/trunk/jbpm/docs
........
r8058 | ochikvina | 2008-05-13 16:04:23 +0300 (Tue, 13 May 2008) | 1 line
http://jira.jboss.com/jira/browse/JBDS-320 - marking the chapter as new
........
r8083 | smukhina | 2008-05-14 18:48:37 +0300 (Wed, 14 May 2008) | 2 lines
http://jira.jboss.com/jira/browse/JBDS-320
comments are corrected to the corresponding docbook tags with attributes
........
r8107 | ochikvina | 2008-05-15 18:28:43 +0300 (Thu, 15 May 2008) | 1 line
http://jira.jboss.com/jira/browse/JBDS-285 - authors info is added
........
r8113 | ochikvina | 2008-05-15 18:36:11 +0300 (Thu, 15 May 2008) | 1 line
http://jira.jboss.com/jira/browse/JBDS-285 - authors info is added
........
r8114 | smukhina | 2008-05-15 19:49:38 +0300 (Thu, 15 May 2008) | 2 lines
http://jira.jboss.com/jira/browse/JBDS-326
folders En-us and publish and staging are removed from nightly docs build, variables for links will be checked then
........
r8141 | smukhina | 2008-05-16 19:18:45 +0300 (Fri, 16 May 2008) | 1 line
new styles 1.1.0 and 1.0.0. are correspondingly added to the guides
........
r8148 | ochikvina | 2008-05-16 20:10:05 +0300 (Fri, 16 May 2008) | 1 line
http://jira.jboss.com/jira/browse/JBDS-286 - correcting errors found by XML validator
........
Property changes on: branches/jbosstools-2.1.x/jbpm/docs
___________________________________________________________________
Name: svnmerge-integrated
+ /trunk/jbpm/docs:1-7998,8058-8148
Modified: branches/jbosstools-2.1.x/jbpm/docs/reference/en/master.xml
===================================================================
--- branches/jbosstools-2.1.x/jbpm/docs/reference/en/master.xml 2008-05-20 14:50:47 UTC (rev 8212)
+++ branches/jbosstools-2.1.x/jbpm/docs/reference/en/master.xml 2008-05-20 14:54:26 UTC (rev 8213)
@@ -11,47 +11,64 @@
<!ENTITY The_JBoss_jBPM_Int_Mech SYSTEM "modules/The_JBoss_jBPM_Int_Mech.xml">
<!ENTITY Quick_Howto_Guide SYSTEM "modules/Quick_Howto_Guide.xml">
-<!ENTITY seamlink "../../../../seam/publish/en-US/html_single/index.html">
-<!ENTITY aslink "../../../../as/publish/en-US/html_single/index.html">
-<!ENTITY esblink "../../../../esb_ref_guide/publish/en-US/html_single/index.html">
-<!ENTITY gsglink "../../../../GettingStartedGuide/publish/en-US/html_single/index.html">
-<!ENTITY hibernatelink "../../../../hibernatetools/publish/en-US/html_single/index.html">
-<!ENTITY jbpmlink "../../../../jbpm/publish/en-US/html_single/index.html">
-<!ENTITY jsflink "../../../../jsf/publish/en-US/html_single/index.html">
-<!ENTITY jsfreflink "../../../../jsf_tools_ref_guide/publish/en-US/html_single/index.html">
-<!ENTITY jsftutoriallink "../../../../jsf_tools_tutorial/publish/en-US/html_single/index.html">
-<!ENTITY strutsreflink "../../../../struts_tools_ref_guide/publish/en-US/html_single/index.html">
-<!ENTITY strutstutoriallink "../../../../struts_tools_tutorial/publish/en-US/html_single/index.html">
+<!ENTITY seamlink "../../../../seam/html_single/index.html">
+<!ENTITY aslink "../../../../as/html_single/index.html">
+<!ENTITY esblink "../../../../esb_ref_guide/html_single/index.html">
+<!ENTITY gsglink "../../../../GettingStartedGuide/html_single/index.html">
+<!ENTITY hibernatelink "../../../../hibernatetools/html_single/index.html">
+<!ENTITY jbpmlink "../../../../jbpm/html_single/index.html">
+<!ENTITY jsflink "../../../../jsf/html_single/index.html">
+<!ENTITY jsfreflink "../../../../jsf_tools_ref_guide/html_single/index.html">
+<!ENTITY jsftutoriallink "../../../../jsf_tools_tutorial/html_single/index.html">
+<!ENTITY strutsreflink "../../../../struts_tools_ref_guide/html_single/index.html">
+<!ENTITY strutstutoriallink "../../../../struts_tools_tutorial/html_single/index.html">
]>
<book>
-
- <bookinfo>
- <title>jBPM Tools Reference Guide</title>
- <pubdate>April 2008</pubdate>
- <copyright>
- <year>2007</year>
- <year>2008</year>
- <holder>JBoss, a division of Red Hat Inc.</holder>
- </copyright>
- <releaseinfo>
-<para>Version: 3.1.2.GA</para>
-</releaseinfo>
+ <bookinfo>
+ <title>jBPM Tools Reference Guide</title>
+
+ <author>
+ <firstname>Anatoly</firstname>
+ <surname>Fedosik</surname>
+ </author>
+ <author>
+ <firstname>Koen</firstname>
+ <surname>Aers</surname>
+ <email>koen.aers(a)jboss.com</email>
+ </author>
+ <author>
+ <firstname>Olga</firstname>
+ <surname>Chikvina</surname>
+ </author>
+ <author>
+ <firstname>Svetlana</firstname>
+ <surname>Mukhina</surname>
+ <email>smukhina(a)exadel.com</email>
+ </author>
+ <author>
+ <firstname>Tom</firstname>
+ <surname>Baeyens</surname>
+ <email>tom.baeyens(a)jboss.com</email>
+ </author>
+
+
+ <pubdate>April 2008</pubdate>
+ <copyright>
+ <year>2007</year>
+ <year>2008</year>
+ <holder>JBoss, a division of Red Hat Inc.</holder>
+ </copyright>
+ <releaseinfo> Version: 3.1.2.GA </releaseinfo>
</bookinfo>
-
- <toc/>
-
-&introduction;
-&jboss_jbpm_runtime_installation;
-&guided_tour_jboss_jbpmgpd;
-&the_views;
-&Test_Drive_Proc;
-&The_JBoss_jBPM_Int_Mech;
-&Quick_Howto_Guide;
-
+ <toc/>
+ &introduction;
+ &jboss_jbpm_runtime_installation;
+ &guided_tour_jboss_jbpmgpd;
+ &the_views; &Test_Drive_Proc;
+ &The_JBoss_jBPM_Int_Mech;
+ &Quick_Howto_Guide;
+
<!-- TODO: drools used in this section is not available for eclipse .3.3 &AddBusinessProcess; -->
-
-
-
-</book>
+</book>
Modified: branches/jbosstools-2.1.x/jbpm/docs/reference/en/modules/Quick_Howto_Guide.xml
===================================================================
--- branches/jbosstools-2.1.x/jbpm/docs/reference/en/modules/Quick_Howto_Guide.xml 2008-05-20 14:50:47 UTC (rev 8212)
+++ branches/jbosstools-2.1.x/jbpm/docs/reference/en/modules/Quick_Howto_Guide.xml 2008-05-20 14:54:26 UTC (rev 8213)
@@ -42,7 +42,7 @@
</figure>
</section>
- <section>
+ <section revisionflag="added">
<title>Configuring Task Nodes</title>
<para>Here, we'll examine how you can configure the Task nodes in jBPM jPDL GPD.</para>
Modified: branches/jbosstools-2.1.x/jbpm/docs/reference/pom.xml
===================================================================
--- branches/jbosstools-2.1.x/jbpm/docs/reference/pom.xml 2008-05-20 14:50:47 UTC (rev 8212)
+++ branches/jbosstools-2.1.x/jbpm/docs/reference/pom.xml 2008-05-20 14:54:26 UTC (rev 8213)
@@ -21,12 +21,12 @@
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jbossorg-docbook-xslt</artifactId>
- <version>1.1.0.Beta1</version>
+ <version>1.1.0</version>
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jbossorg-jdocbook-style</artifactId>
- <version>1.1.0.Beta1</version>
+ <version>1.1.0</version>
<type>jdocbook-style</type>
</dependency>
</dependencies>
17 years, 11 months