Skip to content

Commit

Permalink
Use <kbd> tag for keyboard shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
astefanutti authored and davsclaus committed Jan 28, 2016
1 parent f52a464 commit 15af9f0
Show file tree
Hide file tree
Showing 40 changed files with 54 additions and 51 deletions.
4 changes: 2 additions & 2 deletions examples/camel-example-aggregate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ To run the example type:

mvn camel:run

To stop the example hit `Ctrl-C`. If you restart it and resume entering numbers
you should see that it remembered previously entered values, as it
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>. If you restart it and resume
entering numbers you should see that it remembered previously entered values, as it
uses a persistent store.

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-bam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To run the example with Maven, type
You can see the BAM activies defined in
`src/main/java/org/apache/camel/example/bam/MyActivites.java`

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-cafe/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ You can see the routing rules by looking at the java code in the
`src/main/java directory` and the Spring XML configuration lives in
`src/main/resources/META-INF/spring`

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-cdi-metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ And every 10 seconds, the metrics report, e.g.:
2016-01-18 15:19:14,361 [rter-1-thread-1] INFO metrics - type=METER, name=success, count=12, mean_rate=0.5768131773739456, m1=0.6012785791263936, m5=0.6000546385677541, m15=0.6000061386568257, rate_unit=events/second
```

The Camel application can be stopped pressing `ctrl + c` in the shell.
The Camel application can be stopped pressing <kbd>ctrl</kbd>+<kbd>c</kbd> in the shell.

### Forum, Help, etc

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-cdi-properties/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ being logged to the console, e.g.:
2016-01-28 15:02:46,661 [cdi.Main.main()] INFO route1 - Hello from CamelContext (hello)
```

The Camel application can be stopped pressing `ctrl + c` in the shell.
The Camel application can be stopped pressing <kbd>ctrl</kbd>+<kbd>c</kbd> in the shell.

### Forum, Help, etc

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-cdi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ To run the example type
You can see the routing rules by looking at the java code in the
`src/main/java` directory

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

When we launch the example using the camel maven plugin, a local CDI container
is created and started.
Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To run the example type
You can see the routing rules by looking at the XML in the directory:
`src/main/resources/META-INF/spring`

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

You can also run the example from your editor such as Eclipse, IDEA etc,
by opening the org.apache.camel.example.console.CamelConsoleMain class
Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-cxf-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The webservice WSDL is exposed at:
<http://localhost:9080/camel-example-cxf-proxy/webservices/incident?wsdl>

Because we use dynamic port numbers, you have to check the console to get the used one.
To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

To make a SOAP call open soapUI or another SOAP query tool and create a new
project w/WSDL of <http://localhost:${proxy.port}/camel-example-cxf-proxy/webservices/incident?wsdl>.
Expand Down
10 changes: 5 additions & 5 deletions examples/camel-example-etl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You can see the routing rules by looking at the java code in the src/main/java
directory and the Spring XML configuration lives in
`src/main/resources/META-INF/spring`

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Build and Run inside OSGi container

Expand All @@ -39,10 +39,10 @@ from the shell using this example's "features.xml" for easy provisioning.
features:addUrl mvn:org.apache.camel/camel-example-etl/${version}/xml/features
features:install camel-example-etl

The example outputs logs into the console. When you're done just hit `ctrl + d` to exit the container.
Next time you start the container again use the 'clean' option so that this example's bundle gets
removed and you don't see the logs anymore written into the console, e.g. in case of Karaf start it
again using:
The example outputs logs into the console. When you're done just hit <kbd>ctrl</kbd>+<kbd>d</kbd>
to exit the container. Next time you start the container again use the 'clean' option so that
this example's bundle gets removed and you don't see the logs anymore written into the console,
e.g. in case of Karaf start it again using:

karaf clean

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-guice-jms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ You can see the routing rules by looking at the java code in the
`src/main/java directory` and the `guicejndi.properties` file lives in
`src/main/resources/guicejndi.properties`

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-jdbc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Now to run the example type

mvn camel:run

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Configuration

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-jmx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ You can see the routing rules by looking at the java code in the
`src/main/java` directory and the Spring XML configuration lives in
`src/main/resources/META-INF/spring`

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-loan-broker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The example of web services version
mvn exec:java -PWS.LoanBroker
mvn exec:java -PWS.Client

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-management/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ You can see the routing rules by looking at the java code in the
`src/main/java directory` and the Spring XML configuration lives in
`src/main/resources/META-INF/spring`

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-mybatis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ And you can see the application running by tailing the logs

log:tail

And you can use `ctrl + c` to stop tailing the log.
And you can use <kbd>ctrl</kbd>+<kbd>c</kbd> to stop tailing the log.

### Configuration

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-osgi-rmi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To run the client

mvn exec:java -PClient

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>


### Run inside OSGi container
Expand Down
4 changes: 2 additions & 2 deletions examples/camel-example-osgi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To run the example using Maven type

mvn camel:run

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Run inside OSGi container
You will need to compile and install this example first:
Expand All @@ -35,7 +35,7 @@ The example outputs to the log, which you can see using

log:tail

And use `ctrl+c` to break the tail.
And use <kbd>ctrl</kbd>+<kbd>c</kbd> to break the tail.

### Forum, Help, etc

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-pojo-messaging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To run the example type

mvn camel:run

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-reportincident/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The webservice WSDL is exposed at:

<http://localhost:9080/webservices/incident?wsdl>

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-route-throttling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The example should run if you type:

mvn exec:java -PCamelFileClient

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-servlet-rest-blueprint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ And you can see the application running by tailing the logs

log:tail

And you can use `ctrl + c` to stop tailing the log.
And you can use <kbd>ctrl</kbd>+<kbd>c</kbd> to stop tailing the log.

There is a user REST service that supports the following operations

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-simplejirabot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ You can see the routing rules by looking at the java code in the
`src/main/java` directory and the Spring XML configuration lives in
`src/main/resources/META-INF/spring` in each module

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-spring-boot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ You can also execute the fat WAR directly:

You will see the message printed to the console every second.

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-spring-javaconfig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To run the example type

mvn camel:run

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>


### Configuration
Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-spring-jms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The example should run if you type:
mvn exec:java -PCamelClientRemoting
mvn exec:java -PCamelClientEndpoint

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-spring-security/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To run the example, you need to start up the server by typing

mvn jetty:run

To stop the server hit `ctrl + c`
To stop the server hit <kbd>ctrl</kbd>+<kbd>c</kbd>

The example consumes messages from a servlet endpoint which is secured by Spring Security
with http basic authentication, there are two service:
Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-spring-ws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To run the example, you need to start up the server by typing

mvn jetty:run

To stop the server hit `ctrl + c`
To stop the server hit <kbd>ctrl</kbd>+<kbd>c</kbd>


The web service endpoint address is:
Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-spring-xquery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To run the example using Maven, type
You can see the routing rules by looking at the the Spring XML configuration
at `src/main/resources/META-INF/spring`

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation
This example is documented at <http://camel.apache.org/spring-xquery-example.html>
Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-spring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You can see the routing rules by looking at the java code in the
`src/main/java directory` and the Spring XML configuration lives in
`src/main/resources/META-INF/spring`

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
4 changes: 2 additions & 2 deletions examples/camel-example-sql-blueprint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To run the example type

mvn camel:run

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

This example uses Blueprint to setup and configure the database,
as well the CamelContext. You can see this in the following file:
Expand Down Expand Up @@ -55,7 +55,7 @@ And you can see the application running by tailing the logs

log:tail

And you can use `ctrl + c` to stop tailing the log.
And you can use <kbd>ctrl</kbd>+<kbd>c</kbd> to stop tailing the log.

### Documentation
This example is documented at <http://camel.apache.org/sql-example-blueprint.html>
Expand Down
4 changes: 2 additions & 2 deletions examples/camel-example-sql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ To run the example type

mvn camel:run

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

This example uses Spring to setup and configure the database,
as well the CamelContext. You can see this in the following file:
Expand Down Expand Up @@ -54,7 +54,7 @@ And you can see the application running by tailing the logs

log:tail

And you can use `ctrl + c` to stop tailing the log.
And you can use <kbd>ctrl</kbd>+<kbd>c</kbd> to stop tailing the log.

### Documentation
This example is documented at <http://camel.apache.org/sql-example.html>
Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-ssh-security/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ To test locally, assuming you have Setup Karaf and have it running, run the foll

mvn camel:run

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Run with Karaf

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-ssh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To run the example using Maven type

mvn camel:run

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Run with Karaf

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-swagger-cdi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The rest services provides Swagger API which can be accessed from the following

<http://localhost:8080/api-doc>

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Forum, Help, etc

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-swagger-java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The example has documentation in the home.html page which you can access using t
This example implements the rest-dsl in XML in the camel-config.xml file. For an example that
is using Java code, see the `camel-example-swagger-cdi`.

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Forum, Help, etc

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-tracer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ In the console you can enter some words separated with space. Try to enter:
This example will based on the input get some quotes from the input and select the best quote
to return as response in the console.

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/camel-example-twitter-websocket/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Then open a browser to see live twitter updates in the web page
http://localhost:9090
<http://localhost:9090>

To stop the example hit `ctrl + c`
To stop the example hit <kbd>ctrl</kbd>+<kbd>c</kbd>


### Documentation
Expand Down
5 changes: 3 additions & 2 deletions examples/camel-example-widget-gadget-cdi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ Then the broker can be started with
cd apache-activemq-5.13.0
bin/activemq console

And then Broker is running (you can press `ctrl + c` in the shell to stop the broker).
And then Broker is running (you can press <kbd>ctrl</kbd>+<kbd>c</kbd> in the shell
to stop the broker).

The Camel application connects to the remote broker on url: `tcp://localhost:61616`.
The url can be changed in the `WidgetMain.java` source code.
Expand All @@ -60,7 +61,7 @@ and then browse the queues. You should see the three queues:
- widget
- gadget

The Camel application can be stopped pressing `ctrl + c` in the shell.
The Camel application can be stopped pressing <kbd>ctrl</kbd>+<kbd>c</kbd> in the shell.

### Configuration

Expand Down
Loading

0 comments on commit 15af9f0

Please sign in to comment.