JBoss Tools SVN: r3721 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-09-19 14:38:26 -0400 (Wed, 19 Sep 2007)
New Revision: 3721
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/TaggedComboFieldEditor.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-919
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/TaggedComboFieldEditor.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/TaggedComboFieldEditor.java 2007-09-19 18:38:23 UTC (rev 3720)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/TaggedComboFieldEditor.java 2007-09-19 18:38:26 UTC (rev 3721)
@@ -30,11 +30,11 @@
public TaggedComboFieldEditor(String name, String label, List values,
Object defaultValue, boolean floatStyle) {
- super(name, label, defaultValue);
+ super(name, label, defaultValue==null?"":defaultValue.toString());
this.values = Collections.unmodifiableList(values);
this.floatStyle = floatStyle;
combo = new ComboFieldEditor(
- name,label,values,defaultValue,floatStyle);
+ name,label,values,getValue(),floatStyle);
addFieldEditors(new IFieldEditor[]{new LabelFieldEditor(name,label),
combo});
}
17 years, 1 month
JBoss Tools SVN: r3720 - trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-09-19 14:38:23 -0400 (Wed, 19 Sep 2007)
New Revision: 3720
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetFilterSetFactory.java
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetInstallDelegete.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-919
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetFilterSetFactory.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetFilterSetFactory.java 2007-09-19 18:26:04 UTC (rev 3719)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetFilterSetFactory.java 2007-09-19 18:38:23 UTC (rev 3720)
@@ -41,8 +41,6 @@
PROJECT_TEMPLATE.addFilter("jbossHome","${jboss.home}");
PROJECT_TEMPLATE.addFilter("hbm2ddl","${hibernate.hbm2ddl.auto}");
PROJECT_TEMPLATE.addFilter("driverJar","${driver.file}");
- PROJECT_TEMPLATE.addFilter("jndiPattern","#{ejbName}/local");
- PROJECT_TEMPLATE.addFilter("embeddedEjb","false");
PROJECT_TEMPLATE.addFilter("debug","true");
FILTERS_TEMPLATE = new FilterSet();
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetInstallDelegete.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetInstallDelegete.java 2007-09-19 18:26:04 UTC (rev 3719)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/SeamFacetInstallDelegete.java 2007-09-19 18:38:23 UTC (rev 3720)
@@ -334,7 +334,7 @@
AntCopyUtils.copyFileToFile(
hibernateConsoleLaunchFile,
new File(project.getLocation().toFile(),project.getName()+".launch"),
- new FilterSetCollection(projectFilterSet), true);
+ viewFilterSetCollection, true);
AntCopyUtils.copyFileToFolder(
hibernateConsolePropsFile,
17 years, 1 month
JBoss Tools SVN: r3719 - trunk/documentation/qa.
by jbosstools-commits@lists.jboss.org
Author: anis
Date: 2007-09-19 14:26:04 -0400 (Wed, 19 Sep 2007)
New Revision: 3719
Added:
trunk/documentation/qa/RHDS Testcases 19092007.doc
Log:
Added a file remotely
Added: trunk/documentation/qa/RHDS Testcases 19092007.doc
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/qa/RHDS Testcases 19092007.doc
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 1 month
JBoss Tools SVN: r3718 - trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/META-INF.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-09-19 14:17:07 -0400 (Wed, 19 Sep 2007)
New Revision: 3718
Modified:
trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/META-INF/MANIFEST.MF
Log:
fixing compile error as per max's request
Modified: trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/META-INF/MANIFEST.MF 2007-09-19 18:15:15 UTC (rev 3717)
+++ trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/META-INF/MANIFEST.MF 2007-09-19 18:17:07 UTC (rev 3718)
@@ -44,5 +44,6 @@
org.eclipse.ui.ide,
org.eclipse.jface.databinding,
org.jboss.ide.eclipse.ejb3.wizards.core,
- org.jboss.ide.eclipse.as.core
+ org.jboss.ide.eclipse.as.core,
+ org.jboss.ide.eclipse.as.classpath.core
Eclipse-LazyStart: true
17 years, 1 month
JBoss Tools SVN: r3717 - trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/src/main/org/jboss/ide/eclipse/ejb3/ui/wizards.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-09-19 14:15:15 -0400 (Wed, 19 Sep 2007)
New Revision: 3717
Modified:
trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/src/main/org/jboss/ide/eclipse/ejb3/ui/wizards/Ejb30ProjectFirstPage.java
Log:
fixing compile error as per max's request
Modified: trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/src/main/org/jboss/ide/eclipse/ejb3/ui/wizards/Ejb30ProjectFirstPage.java
===================================================================
--- trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/src/main/org/jboss/ide/eclipse/ejb3/ui/wizards/Ejb30ProjectFirstPage.java 2007-09-19 17:05:42 UTC (rev 3716)
+++ trunk/legacy/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/src/main/org/jboss/ide/eclipse/ejb3/ui/wizards/Ejb30ProjectFirstPage.java 2007-09-19 18:15:15 UTC (rev 3717)
@@ -26,8 +26,7 @@
import org.eclipse.wst.project.facet.ProductManager;
import org.eclipse.wst.server.core.ServerCore;
import org.eclipse.wst.web.internal.ResourceHandler;
-import org.jboss.ide.eclipse.as.core.runtime.EJB30SupportVerifier;
-import org.jboss.ide.eclipse.as.core.runtime.server.AbstractJBossServerRuntime;
+import org.jboss.ide.eclipse.as.classpath.core.ejb3.EJB30SupportVerifier;
public class Ejb30ProjectFirstPage extends J2EEComponentFacetCreationWizardPage {
public static final String EJB30_FACET_ID = "jbide.ejb30";
17 years, 1 month
JBoss Tools SVN: r3716 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/extensions/jmx.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-09-19 13:05:42 -0400 (Wed, 19 Sep 2007)
New Revision: 3716
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/extensions/jmx/JMXModel.java
Log:
Ensured singleton (re: email uncompiling classes, forgot to commit)
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/extensions/jmx/JMXModel.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/extensions/jmx/JMXModel.java 2007-09-19 16:28:29 UTC (rev 3715)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/extensions/jmx/JMXModel.java 2007-09-19 17:05:42 UTC (rev 3716)
@@ -2,6 +2,7 @@
import java.io.IOException;
import java.lang.reflect.UndeclaredThrowableException;
+import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Properties;
@@ -22,9 +23,17 @@
import org.eclipse.wst.server.core.IServer;
public class JMXModel {
+ protected static JMXModel instance;
+ public static JMXModel getDefault() {
+ if( instance == null )
+ instance = new JMXModel();
+ return instance;
+ }
+
+
protected HashMap<String, JMXModelRoot> root;
- public JMXModel() {
+ protected JMXModel() {
root = new HashMap<String, JMXModelRoot>();
}
@@ -138,6 +147,9 @@
protected String clazz;
protected IServer server;
protected MBeanInfo info;
+ protected WrappedMBeanOperationInfo[] operations;
+ protected WrappedMBeanAttributeInfo[] attributes;
+
protected JMXException exception;
public JMXBean(IServer server, ObjectInstance instance) {
@@ -169,19 +181,12 @@
}
public WrappedMBeanOperationInfo[] getOperations() {
- if (info == null)
- return null;
- MBeanOperationInfo[] ops = info.getOperations();
- WrappedMBeanOperationInfo[] wrappedOps = new WrappedMBeanOperationInfo[ops.length];
- for (int i = 0; i < ops.length; i++) {
- wrappedOps[i] = new WrappedMBeanOperationInfo(server, this,
- ops[i]);
- }
- return wrappedOps;
+ return operations;
}
+
- public MBeanAttributeInfo[] getAttributes() {
- return info == null ? null : info.getAttributes();
+ public WrappedMBeanAttributeInfo[] getAttributes() {
+ return attributes;
}
public JMXException getException() {
@@ -195,6 +200,8 @@
Exception tmp = null;
try {
info = connection.getMBeanInfo(new ObjectName(name));
+ loadAttributes(connection);
+ loadOperations(connection);
} catch (InstanceNotFoundException e) {
tmp = e;
} catch (IntrospectionException e) {
@@ -217,7 +224,39 @@
};
JMXSafeRunner.run(server, run);
}
+
+ protected void loadOperations(MBeanServerConnection connection) {
+ if (info == null)
+ return;
+ MBeanOperationInfo[] ops = info.getOperations();
+ WrappedMBeanOperationInfo[] wrappedOps = new WrappedMBeanOperationInfo[ops.length];
+ for (int i = 0; i < ops.length; i++) {
+ wrappedOps[i] = new WrappedMBeanOperationInfo(server, this,
+ ops[i]);
+ }
+ operations = wrappedOps;
+ }
+
+ protected void loadAttributes(MBeanServerConnection connection) {
+ if (info == null)
+ return;
+ MBeanAttributeInfo[] atts = info.getAttributes();
+ ArrayList wrapped = new ArrayList();
+ WrappedMBeanAttributeInfo tmp;
+ for (int i = 0; i < atts.length; i++) {
+ try {
+ tmp = new WrappedMBeanAttributeInfo(server, this, atts[i]);
+ tmp.loadValue(connection);
+ wrapped.add(tmp);
+ } catch( Exception e ) {
+ }
+ }
+ attributes = (WrappedMBeanAttributeInfo[]) wrapped.toArray(new WrappedMBeanAttributeInfo[wrapped.size()]);
+ }
+
+
+
}
public static class WrappedMBeanOperationInfo {
@@ -239,6 +278,35 @@
}
}
+
+ public static class WrappedMBeanAttributeInfo {
+ protected IServer server;
+ protected JMXBean bean;
+ protected MBeanAttributeInfo info;
+ protected Object value;
+
+ public WrappedMBeanAttributeInfo(IServer server, JMXBean bean,
+ MBeanAttributeInfo info) {
+ this.server = server;
+ this.bean = bean;
+ this.info = info;
+ }
+ public MBeanAttributeInfo getInfo() {
+ return info;
+ }
+ public JMXBean getBean() {
+ return bean;
+ }
+ public void loadValue(MBeanServerConnection connection) throws Exception {
+ value = connection.getAttribute(
+ new ObjectName(bean.getName()), info.getName());
+ }
+ public Object getValue() {
+ return value;
+ }
+ }
+
+
public static class JMXException extends Exception {
private static final long serialVersionUID = 1L;
private Exception exception;
@@ -252,7 +320,7 @@
}
}
- protected interface JMXRunnable {
+ public interface JMXRunnable {
public void run(MBeanServerConnection connection);
}
17 years, 1 month
JBoss Tools SVN: r3715 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-09-19 12:28:29 -0400 (Wed, 19 Sep 2007)
New Revision: 3715
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-913
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java 2007-09-19 15:15:16 UTC (rev 3714)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java 2007-09-19 16:28:29 UTC (rev 3715)
@@ -350,8 +350,8 @@
return;
}
- if(!name.getValueAsString().matches("[a-zA-Z_][a-zA-Z0-9_\\-\\.]*")) {
- setErrorMessage("Runtime name contain invalid characters, e.g. space is not allowed");
+ if(!name.getValueAsString().matches("[a-zA-Z_][a-zA-Z0-9_\\-\\. ]*")) {
+ setErrorMessage("Runtime name is not correct");
setPageComplete(false);
return;
}
17 years, 1 month
JBoss Tools SVN: r3714 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2007-09-19 11:15:16 -0400 (Wed, 19 Sep 2007)
New Revision: 3714
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamGenerateEnitiesWizardPage.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-916 Handle when project=null
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamGenerateEnitiesWizardPage.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamGenerateEnitiesWizardPage.java 2007-09-19 15:09:08 UTC (rev 3713)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamGenerateEnitiesWizardPage.java 2007-09-19 15:15:16 UTC (rev 3714)
@@ -60,6 +60,9 @@
} else {
setMessage(null);
}
+ } else {
+ setMessage(SeamUIMessages.GENERATE_SEAM_ENTITIES_WIZARD_PAGE_MESSAGE);
+ setPageComplete(false);
}
Composite top = new GridLayoutComposite(parent);
17 years, 1 month
JBoss Tools SVN: r3713 - trunk/documentation/GettingStartedGuide/docs/userguide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2007-09-19 11:09:08 -0400 (Wed, 19 Sep 2007)
New Revision: 3713
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/AddBusinessProcess.xml
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GetStartSeamGen.xml
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-174
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/AddBusinessProcess.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/AddBusinessProcess.xml 2007-09-19 13:45:05 UTC (rev 3712)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/AddBusinessProcess.xml 2007-09-19 15:09:08 UTC (rev 3713)
@@ -181,7 +181,7 @@
]]></programlisting>
<para>Notice that the IDE automatically highlights the syntax and provides auto-completion help.
You may wonder how Seam knows to load the process-order.drl file for the application.</para>
- <para>If you look in the <emphasis>resources/WEB-INF/components.xml</emphasis> file we copied from the imported
+ <para>If you look in the <emphasis><property>resources/WEB-INF/components.xml</property></emphasis> file we copied from the imported
rules-bpm project. It has an element pointing to the process-order.drl file.</para>
<programlisting role="XML"><![CDATA[<drools:rule-base name="securityRules">
<drools:rule-files>
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml 2007-09-19 13:45:05 UTC (rev 3712)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml 2007-09-19 15:09:08 UTC (rev 3713)
@@ -11,16 +11,16 @@
<title>Developing a simple JSP web application</title>
<para>In this you'll find out how to create a simple JSP application using the Red Hat Developer Studio. The application will show a classic "Hello World!" on the page.</para>
<para>We'll assume that you have already launched Red Hat Developer Studio and
-also that the Red Hat perspective is the current perspective. (If not, make it active by selecting <emphasis>Window/Open Perspective/Red Hat Developer Studio</emphasis> from the menu bar or by selecting <emphasis>Window/
-Open Perspective/Other...</emphasis> from the menu bar and then selecting Red Hat Developer Studio from
+also that the Red Hat perspective is the current perspective. (If not, make it active by selecting <emphasis><property>Window/Open Perspective/Red Hat Developer Studio</property></emphasis> from the menu bar or by selecting <emphasis><property>Window/
+Open Perspective/Other...</property></emphasis> from the menu bar and then selecting Red Hat Developer Studio from
the Select Perspective dialog box.)</para>
<section id="SettingUpTheProject">
<?dbhtml filename="SettingUpTheProject.html"?>
<title>Setting Up the Project</title>
<para>At first a new project for the application will be created.</para>
<itemizedlist>
- <listitem><para>Go to the menu bar and select <emphasis>File/New/Project...</emphasis></para></listitem>
- <listitem><para>Select <emphasis>Web/Dynamic Web Project</emphasis> in the New Project dialog box</para></listitem>
+ <listitem><para>Go to the menu bar and select <emphasis><property>File/New/Project...</property></emphasis></para></listitem>
+ <listitem><para>Select <emphasis><property>Web/Dynamic Web Project</property></emphasis> in the New Project dialog box</para></listitem>
<listitem><para>Click Next ></para></listitem>
<listitem><para>Enter "jspHello" as the project name</para></listitem>
<listitem><para>Leave everything else as is, and click Finish</para></listitem>
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GetStartSeamGen.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GetStartSeamGen.xml 2007-09-19 13:45:05 UTC (rev 3712)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GetStartSeamGen.xml 2007-09-19 15:09:08 UTC (rev 3713)
@@ -157,7 +157,7 @@
</mediaobject>
</figure>
- <para>To make simple changes to the page, you just need to double click on the <emphasis>WebContent/home.xhtml file</emphasis> and edit it in the visual editor. Notice that the visual editor lets you both the XHTML code and the rendered page. The rendered view is designed to make it easy to find stuff in a complex XHTML page.</para>
+ <para>To make simple changes to the page, you just need to double click on the <emphasis><property>WebContent/home.xhtml file</property></emphasis> and edit it in the visual editor. Notice that the visual editor lets you both the XHTML code and the rendered page. The rendered view is designed to make it easy to find stuff in a complex XHTML page.</para>
<figure>
<title>Making changes in the visual editor</title>
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml 2007-09-19 13:45:05 UTC (rev 3712)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml 2007-09-19 15:09:08 UTC (rev 3713)
@@ -23,7 +23,7 @@
In that case you can skip the next step mentioned here. But it is recommended to use the SysV service scripts for production servers.</para></listitem>
<listitem><para>Download and install the appropriate -compat RPM from JPackage <ulink url="ftp://jpackage.hmdc.harvard.edu/JPackage/1.7/generic/RPMS.non-free/">here</ulink>.
Please ensure you choose a matching version of the -compat package to the JDK you installed.</para></listitem>
- <listitem><para>Create an environment variable that points to the JDK installation directory and call it JAVA_HOME. Add <emphasis>$JAVA_HOME/bin</emphasis> to the system path to be able to run java from the
+ <listitem><para>Create an environment variable that points to the JDK installation directory and call it JAVA_HOME. Add <emphasis><property>$JAVA_HOME/bin</property></emphasis> to the system path to be able to run java from the
command line. You can do this by adding the following lines to the .bashrc file in your home directory.</para>
<programlisting role="JAVA"><![CDATA[#In this example /usr/java/jdk1.5.0_11 is the JDK installation directory.
export JAVA_HOME=/usr/java/jdk1.5.0_11
17 years, 1 month
JBoss Tools SVN: r3712 - trunk/documentation/GettingStartedGuide/docs/userguide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2007-09-19 09:45:05 -0400 (Wed, 19 Sep 2007)
New Revision: 3712
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/ManageJBossAS.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-173
Ordered lists were redone into itemized list
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml 2007-09-19 12:26:36 UTC (rev 3711)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml 2007-09-19 13:45:05 UTC (rev 3712)
@@ -18,13 +18,13 @@
<?dbhtml filename="SettingUpTheProject.html"?>
<title>Setting Up the Project</title>
<para>At first a new project for the application will be created.</para>
- <orderedlist>
+ <itemizedlist>
<listitem><para>Go to the menu bar and select <emphasis>File/New/Project...</emphasis></para></listitem>
<listitem><para>Select <emphasis>Web/Dynamic Web Project</emphasis> in the New Project dialog box</para></listitem>
<listitem><para>Click Next ></para></listitem>
<listitem><para>Enter "jspHello" as the project name</para></listitem>
<listitem><para>Leave everything else as is, and click Finish</para></listitem>
- </orderedlist>
+ </itemizedlist>
<figure>
<title>Create New Web Project</title>
<mediaobject>
@@ -48,14 +48,14 @@
<?dbhtml filename="CreatingJSPPage.html"?>
<title>Creating JSP Page</title>
<para>In our simple application we need to create only one JSP page which displays a "Hello World!" message.</para>
- <orderedlist continuation="continues">
+ <itemizedlist continuation="continues">
<listitem><para>Right click <emphasis>WebContent > New > JSP.</emphasis></para></listitem>
<listitem><para>Type "hello.jsp" for file name and click Next button.</para></listitem>
-</orderedlist>
+</itemizedlist>
<para>In the next window you can choose a template for your jsp page and see its preview.</para>
-<orderedlist continuation="continues">
+<itemizedlist continuation="continues">
<listitem><para>Select "New JSP File (xhtml)" template and click Finish button.</para></listitem>
-</orderedlist>
+</itemizedlist>
<figure>
<title>Create JSP Page</title>
<mediaobject>
@@ -69,10 +69,10 @@
<?dbhtml filename="EditingJSPPage.html"?>
<title>Editing a JSP Page</title>
<para>Let's now make a little change so that a jsp page displays "Hello World!" message.</para>
- <orderedlist continuation="continues">
+ <itemizedlist continuation="continues">
<listitem><para>Insert this line inside the <emphasis role="bold"><property><body></property></emphasis><emphasis role="bold"><property></body></property></emphasis> tag:
</para></listitem>
-</orderedlist>
+</itemizedlist>
<programlisting role="XML"><![CDATA[<% out.println("Hello World!"); %>]]>
</programlisting>
@@ -172,9 +172,9 @@
<?dbhtml filename="LaunchingTheProject.html"?>
<title>Launch JSP Project</title>
<para>Let's now launch our project on server. We'll use JBoss server that is shiped with Red Hat Developer Studio.</para>
- <orderedlist continuation="continues">
+ <itemizedlist continuation="continues">
<listitem><para>Start JBoss server from JBoss Server view by clicking the Start icon.</para></listitem>
-</orderedlist>
+</itemizedlist>
<figure>
<title>Starting server</title>
<mediaobject>
@@ -183,9 +183,9 @@
</imageobject>
</mediaobject>
</figure>
- <orderedlist continuation="continues">
+ <itemizedlist continuation="continues">
<listitem><para>Click the Run icon or right click your project folder and select <emphasis>Run on Server</emphasis>. If you haven't made any changes in web.xml file or cleared it out you can launch the application by right clicking the hello.jsp page and selecting <emphasis>Run on the Server</emphasis>.</para></listitem>
-</orderedlist>
+</itemizedlist>
<figure>
<title>Run project</title>
<mediaobject>
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/ManageJBossAS.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/ManageJBossAS.xml 2007-09-19 12:26:36 UTC (rev 3711)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/ManageJBossAS.xml 2007-09-19 13:45:05 UTC (rev 3712)
@@ -20,9 +20,9 @@
<?dbhtml filename="StartingServer.html"?>
<title>Starting JBoss server</title>
<para>Starting <property>JBoss server</property> is quite simple. Red Hat Developer Studio allows you control its behaviour through a special toolbar: start it in a regular or debug mode, stop it, or restart it.</para>
- <orderedlist>
+ <itemizedlist>
<listitem><para>To launch the server click the green-with-white-arrow icon on the <property>JBoss Server</property> View or right click server name in this view and select "Start". If this view is not open select <emphasis>Window > Show View > Other > Server > JBoss Server View</emphasis></para></listitem>
- </orderedlist>
+ </itemizedlist>
<figure>
<title>Starting from icon</title>
<mediaobject>
@@ -116,25 +116,25 @@
<section id="JBossInstalling">
<?dbhtml filename="JBossInstalling.html"?>
<title>JBoss AS Installation</title>
- <orderedlist>
+ <itemizedlist>
<listitem><para>Download the binary package of <property>JBoss 4.2.1</property> and save it on your computer: <ulink url="http://labs.jboss.com/jbossas/downloads">http://labs.jboss.com/jbossas/downloads</ulink></para></listitem>
-</orderedlist>
+</itemizedlist>
<para>It does not matter where on your system you install <property>JBoss</property>. Note, however, that installing <property>JBoss</property> into a directory that has a name containing spaces causes problems in some situations with Sun-based VMs. So try to avoid using installation folders that have spaces in their names.</para>
<para>There is no requirement for root access to run <property>JBoss</property> on UNIX/Linux systems because none of the default ports are within the 0-1023 privileged port range.</para>
-<orderedlist continuation="continues">
+<itemizedlist continuation="continues">
<listitem><para>After you have the binary archive you want to install, use the JDK jar tool (or any other ZIP extraction tool) to extract the jboss-4.2.1.zip archive contents into a location of your choice. The jboss-4.2.1.tgz archive is a gzipped tar file that requires a gnutar compatible tar which can handle the long pathnames in the archive. The extraction process will create a jboss-4.2.1 directory. </para></listitem>
-</orderedlist>
+</itemizedlist>
</section>
<section id="AddingJBossServer">
<?dbhtml filename="AddingJBossServer.html"?>
<title>Adding and configuring JBoss server</title>
<para>Now we should add just installed server into server manager in Red Hat Developer Studio.</para>
- <orderedlist>
+ <itemizedlist>
<listitem><para>Open the <property>JBoss Server</property> View by selecting <emphasis>Window > Show View > Other > Server > JBoss Server View</emphasis>. You will see <property>JBoss Server</property> view.</para></listitem>
<listitem><para>Right click anywhere in this view and select New Server.</para></listitem>
<listitem><para>Select <emphasis>JBoss, a division of Red Hat > JBoss v4.2</emphasis> and click the "Installed Runtimes" button to select a new installed runtime.</para></listitem>
-</orderedlist>
+</itemizedlist>
<figure>
<title>Selecting server type</title>
<mediaobject>
@@ -144,10 +144,10 @@
</mediaobject>
</figure>
- <orderedlist continuation="continues">
+ <itemizedlist continuation="continues">
<listitem><para>Click "Add" button to add a new jboss runtime.</para></listitem>
<listitem><para>Select <emphasis>JBoss, a division of Red Hat > JBoss v4.2</emphasis> and press Next.</para></listitem>
- </orderedlist>
+ </itemizedlist>
<figure>
<title>Installed Runtimes</title>
@@ -160,9 +160,9 @@
-<orderedlist continuation="continues">
+<itemizedlist continuation="continues">
<listitem><para>In the next step make Red Hat Developer Studio to know where you have installed the server and define JRE.</para></listitem>
-</orderedlist>
+</itemizedlist>
<figure>
<title>Defining JBoss Runtime</title>
<mediaobject>
@@ -175,9 +175,9 @@
<title>Note:</title>
<para>When adding a new server you will need to specify what JRE to use. It is important to set this value to a full JDK, not JRE. Again, you need a full JDK to run Web applications, JRE will not be enough.</para>
</note>
-<orderedlist continuation="continues">
+<itemizedlist continuation="continues">
<listitem><para>In the following window leave all settings default or give your name to a new jboss server and press Finish.</para></listitem>
-</orderedlist>
+</itemizedlist>
<figure>
<title>Adding new runtime</title>
<mediaobject>
@@ -196,9 +196,9 @@
</mediaobject>
</figure>
-<orderedlist continuation="continues">
+<itemizedlist continuation="continues">
<listitem><para>Click OK. Then select a new added runtime in Server runtime drop down list and click Next button twice.</para></listitem>
-</orderedlist>
+</itemizedlist>
<figure>
<title>Choosing runtime</title>
<mediaobject>
@@ -207,9 +207,9 @@
</imageobject>
</mediaobject>
</figure>
- <orderedlist continuation="continues">
+ <itemizedlist continuation="continues">
<listitem><para>In the last wizard's dialog modify the projects that are configured on the server and click Finish.</para></listitem>
- </orderedlist>
+ </itemizedlist>
<figure>
<title>Configuring Projects</title>
<mediaobject>
17 years, 1 month