[jboss-cvs] JBoss Messaging SVN: r6241 - in trunk/examples/jms: durable and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Mar 31 11:46:47 EDT 2009


Author: jmesnil
Date: 2009-03-31 11:46:46 -0400 (Tue, 31 Mar 2009)
New Revision: 6241

Added:
   trunk/examples/jms/common/common.css
Modified:
   trunk/examples/jms/durable/readme.html
   trunk/examples/jms/queue/readme.html
   trunk/examples/jms/topic/readme.html
Log:
in the example READMEs, added some styling to make the code stand out 

Added: trunk/examples/jms/common/common.css
===================================================================
--- trunk/examples/jms/common/common.css	                        (rev 0)
+++ trunk/examples/jms/common/common.css	2009-03-31 15:46:46 UTC (rev 6241)
@@ -0,0 +1,2 @@
+pre, code { background-color: lightgrey;}
+pre { border: dotted grey 1px;}

Modified: trunk/examples/jms/durable/readme.html
===================================================================
--- trunk/examples/jms/durable/readme.html	2009-03-31 15:08:37 UTC (rev 6240)
+++ trunk/examples/jms/durable/readme.html	2009-03-31 15:46:46 UTC (rev 6241)
@@ -1,6 +1,7 @@
 <html>
   <head>
     <title>JBoss Messaging JMS Durable Subscription Example</title>
+    <link rel="stylesheet" type="text/css" href="../common/common.css">
   </head>
   <body>
      <h1>JMS Durable Subscription Example</h1>

Modified: trunk/examples/jms/queue/readme.html
===================================================================
--- trunk/examples/jms/queue/readme.html	2009-03-31 15:08:37 UTC (rev 6240)
+++ trunk/examples/jms/queue/readme.html	2009-03-31 15:46:46 UTC (rev 6241)
@@ -1,17 +1,14 @@
 <html>
   <head>
     <title>JBoss Messaging JMS Queue Example</title>
-    <style type="text/css">
-    pre, code { background-color: lightgrey;}
-    pre { border: dotted grey 1px;}
-    </style>
+    <link rel="stylesheet" type="text/css" href="../common/common.css">
   </head>
   <body>
      <h1>JMS Queue Example</h1>
      <br>
      <p>This example shows you how to send and receive a message to a JMS Queue with JBoss Messaging.</p>
      <p>Queues are a standard part of JMS, please consult the JMS 1.1 specification for full details.</p>
-     <p>A Queue is used to send messages point to point, from a producer to a consumer. The queue gaurauntees message ordering between these 2 points.</p>
+     <p>A Queue is used to send messages point to point, from a producer to a consumer. The queue guarantees message ordering between these 2 points.</p>
      <br>
      <h2>Example step-by-step</h2>
      <p><i>To run the example, simply type <code>ant</code> from this directory</i></p>

Modified: trunk/examples/jms/topic/readme.html
===================================================================
--- trunk/examples/jms/topic/readme.html	2009-03-31 15:08:37 UTC (rev 6240)
+++ trunk/examples/jms/topic/readme.html	2009-03-31 15:46:46 UTC (rev 6241)
@@ -1,6 +1,7 @@
 <html>
   <head>
     <title>JBoss Messaging JMS Topic Example</title>
+    <link rel="stylesheet" type="text/css" href="../common/common.css">
   </head>
   <body>
      <h1>JMS Topic Example</h1>




More information about the jboss-cvs-commits mailing list