Skip to content

Commit

Permalink
Fix violations in the richfaces quickstart README files
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilda committed Feb 7, 2014
1 parent f8de064 commit ccaa157
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 44 deletions.
28 changes: 14 additions & 14 deletions helloworld-rf/README.md
@@ -1,12 +1,12 @@
helloworld-rf: Helloworld with a JSF (JavaServer Faces) Front End
==================================================================
Author: Brian Leathem
Level: Beginner
Technologies: CDI, JSF, RichFaces
Summary: Similar to the helloworld quickstart, but with a JSF and RichFaces front end
Target Product: WFK
Product Versions: EAP 6.1, EAP 6.2, WFK 2.4
Source: <https://github.com/jboss-developer/jboss-wfk-quickstarts/>
Author: Brian Leathem
Level: Beginner
Technologies: CDI, JSF, RichFaces
Summary: Similar to the helloworld quickstart, but with a JSF and RichFaces front end
Target Product: WFK
Product Versions: EAP 6.1, EAP 6.2, WFK 2.4
Source: <https://github.com/jboss-developer/jboss-wfk-quickstarts/>

What is it?
-----------
Expand All @@ -29,11 +29,11 @@ Configure Maven
If you have not yet done so, you must [Configure Maven](../README.md#configure-maven) before testing the quickstarts.


Start the JBoss Server
Start the JBoss EAP Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server with the web profile:
1. Open a command line and navigate to the root of the JBoss EAP directory.
2. The following shows the command line to start the server with the default profile:

For Linux: JBOSS_HOME/bin/standalone.sh
For Windows: JBOSS_HOME\bin\standalone.bat
Expand All @@ -44,7 +44,7 @@ Build and Deploy the Quickstart

_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
1. Make sure you have started the JBoss EAP server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

Expand All @@ -62,7 +62,7 @@ The application will be running at the following URL: <http://localhost:8080/jb
Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
1. Make sure you have started the JBoss EAP server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

Expand All @@ -82,11 +82,11 @@ To run these tests, you must build the main project as described above.
mvn clean package

3. Navigate to the functional-tests/ directory in this quickstart.
4. If you have a running instance of the JBoss Server, as described above, run the remote tests by typing the following command:
4. If you have a running instance of the JBoss EAP server, as described above, run the remote tests by typing the following command:

mvn clean verify -Parq-jbossas-remote

5. If you prefer to run the functional tests using managed instance of the JBoss server, meaning the tests will start the server for you, type fhe following command:
5. If you prefer to run the functional tests using managed instance of the JBoss EAP server, meaning the tests will start the server for you, type fhe following command:

mvn clean verify -Parq-jbossas-managed

Expand Down
30 changes: 15 additions & 15 deletions kitchensink-rf/README.md
@@ -1,12 +1,12 @@
kitchensink-rf: Example Using Multiple Java EE 6 Technologies with RichFaces
========================
Author: Pete Muir, Brian Leathem
Level: Intermediate
Technologies: CDI, JSF, JPA, EJB, JPA, JAX-RS, BV, RichFaces
Summary: The canonical JSF kitchensink quickstart implemented with JSF and RichFaces
Target Product: WFK
Product Versions: EAP 6.1, EAP 6.2, WFK 2.4
Source: <https://github.com/jboss-developer/jboss-wfk-quickstarts/>
Author: Pete Muir, Brian Leathem
Level: Intermediate
Technologies: CDI, JSF, JPA, EJB, JPA, JAX-RS, BV, RichFaces
Summary: The canonical JSF kitchensink quickstart implemented with JSF and RichFaces
Target Product: WFK
Product Versions: EAP 6.1, EAP 6.2, WFK 2.4
Source: <https://github.com/jboss-developer/jboss-wfk-quickstarts/>

What is it?
-----------
Expand Down Expand Up @@ -45,11 +45,11 @@ Configure Maven
If you have not yet done so, you must [Configure Maven](../README.md#configure-maven) before testing the quickstarts.


Start the JBoss Server
Start the JBoss EAP Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server with the web profile:
1. Open a command line and navigate to the root of the JBoss EAP directory.
2. The following shows the command line to start the server with the default profile:

For Linux: JBOSS_HOME/bin/standalone.sh
For Windows: JBOSS_HOME\bin\standalone.bat
Expand All @@ -60,7 +60,7 @@ Build and Deploy the Quickstart

_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
1. Make sure you have started the JBoss EAP server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

Expand All @@ -78,7 +78,7 @@ The application will be running at the following URL: <http://localhost:8080/jbo
Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
1. Make sure you have started the JBoss EAP server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

Expand All @@ -92,7 +92,7 @@ This quickstart provides Arquillian tests. By default, these tests are configure

_NOTE: The following commands assume you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Run the Arquillian Tests](../README.md#run-the-arquillian-tests) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
1. Make sure you have started the JBoss EAP server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
3. Type the following command to run the test goal with the following profile activated:

Expand All @@ -113,11 +113,11 @@ To run these tests, you must build the main project as described above.
mvn clean package

3. Navigate to the functional-tests/ directory in this quickstart.
4. If you have a running instance of the JBoss Server, as described above, run the remote tests by typing the following command:
4. If you have a running instance of the JBoss EAP server, as described above, run the remote tests by typing the following command:

mvn clean verify -Parq-jbossas-remote

5. If you prefer to run the functional tests using managed instance of the JBoss server, meaning the tests will start the server for you, type fhe following command:
5. If you prefer to run the functional tests using managed instance of the JBoss EAP server, meaning the tests will start the server for you, type fhe following command:

mvn clean verify -Parq-jbossas-managed

Expand Down
30 changes: 15 additions & 15 deletions richfaces-validation/README.md
@@ -1,12 +1,12 @@
richfaces-validation: RichFaces and Bean Validation
=======================================================
Author: Lukas Fryc
Level: Beginner
Technologies: RichFaces
Summary: Demonstrates RichFaces and bean validation
Target Product: WFK
Product Versions: EAP 6.1, EAP 6.2, WFK 2.4
Source: <https://github.com/jboss-developer/jboss-wfk-quickstarts/>
Author: Lukas Fryc
Level: Beginner
Technologies: RichFaces
Summary: Demonstrates RichFaces and bean validation
Target Product: WFK
Product Versions: EAP 6.1, EAP 6.2, WFK 2.4
Source: <https://github.com/jboss-developer/jboss-wfk-quickstarts/>

What is it?
-----------
Expand Down Expand Up @@ -49,11 +49,11 @@ Configure Maven
If you have not yet done so, you must [Configure Maven](../README.md#configure-maven) before testing the quickstarts.


Start the JBoss Server with the Web Profile
Start the JBoss EAP Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server with the web profile:
1. Open a command line and navigate to the root of the JBoss EAP directory.
2. The following shows the command line to start the server with the default profile:

For Linux: JBOSS_HOME/bin/standalone.sh
For Windows: JBOSS_HOME\bin\standalone.bat
Expand All @@ -64,7 +64,7 @@ Build and Deploy the Quickstart

_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
1. Make sure you have started the JBoss EAP server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

Expand All @@ -88,7 +88,7 @@ You will be provided with form to enter member information.
Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
1. Make sure you have started the JBoss EAP server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

Expand All @@ -102,7 +102,7 @@ This quickstart provides Arquillian tests. By default, these tests are configure

_NOTE: The following commands assume you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Run the Arquillian Tests](../README.md#run-the-arquillian-tests) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
1. Make sure you have started the JBoss EAP server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
3. Type the following command to run the test goal with the following profile activated:

Expand Down Expand Up @@ -141,11 +141,11 @@ To run these tests, you must build the main project as described above.
mvn clean package

3. Navigate to the functional-tests/ directory in this quickstart.
4. If you have a running instance of the JBoss Server, as described above, run the remote tests by typing the following command:
4. If you have a running instance of the JBoss EAP server, as described above, run the remote tests by typing the following command:

mvn clean verify -Parq-jbossas-remote

5. If you prefer to run the functional tests using managed instance of the JBoss server, meaning the tests will start the server for you, type fhe following command:
5. If you prefer to run the functional tests using managed instance of the JBoss EAP server, meaning the tests will start the server for you, type fhe following command:

mvn clean verify -Parq-jbossas-managed

Expand Down

0 comments on commit ccaa157

Please sign in to comment.