Author: orudyy
Date: Fri May 24 12:16:53 2013
New Revision: 1486031

URL: http://svn.apache.org/r1486031
Log:
QPID-4881: update docs/help to use quotes for the config property argument, as 
will be required when using the startup script on Windows

merged from trunk r1486017

Modified:
    qpid/branches/0.22/qpid/   (props changed)
    qpid/branches/0.22/qpid/doc/   (props changed)
    qpid/branches/0.22/qpid/doc/book/   (props changed)
    qpid/branches/0.22/qpid/doc/book/src/java-broker/   (props changed)
    
qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml
    
qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Getting-Started.xml
    qpid/branches/0.22/qpid/java/   (props changed)
    qpid/branches/0.22/qpid/java/broker/   (props changed)
    
qpid/branches/0.22/qpid/java/broker/src/main/java/org/apache/qpid/server/Main.java

Propchange: qpid/branches/0.22/qpid/
------------------------------------------------------------------------------
  Merged /qpid/trunk/qpid:r1486017

Propchange: qpid/branches/0.22/qpid/doc/
------------------------------------------------------------------------------
  Merged /qpid/trunk/qpid/doc:r1486017

Propchange: qpid/branches/0.22/qpid/doc/book/
------------------------------------------------------------------------------
  Merged /qpid/trunk/qpid/doc/book:r1486017

Propchange: qpid/branches/0.22/qpid/doc/book/src/java-broker/
------------------------------------------------------------------------------
  Merged /qpid/trunk/qpid/doc/book/src/java-broker:r1486017

Modified: 
qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml
URL: 
http://svn.apache.org/viewvc/qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml?rev=1486031&r1=1486030&r2=1486031&view=diff
==============================================================================
--- 
qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml
 (original)
+++ 
qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Configuring-And-Managing-Config-Files.xml
 Fri May 24 12:16:53 2013
@@ -278,7 +278,7 @@ $ ./qpid-server -st memory
         </para>
 
         <screen>
-$ ./qpid-server -prop qpid.amqp_port=10000 -prop qpid.http_port=10001
+$ ./qpid-server -prop "qpid.amqp_port=10000" -prop "qpid.http_port=10001"
         </screen>
         <para>
             In the example above, property used to set the port number of the 
default AMQP port is specified with the value 10000, overriding the default 
value of 5672, and similarly the vlaue 10001 is used to override the default 
HTTP port number of 8080.
@@ -289,10 +289,9 @@ $ ./qpid-server -prop qpid.amqp_port=100
             NOTE: when saving the broker Configuration Store, either during 
initialisation when generating any required IDs for the 'Initial 
Configuration', or when required following user-prompted change via the 
managmenet interface, values are
             stored in their resolved state. As such, if a Configuration Store 
already exists when the broker is started, it is likely that setting a 
Configuration Property to a value different than it was previously set could 
have no effect.
         </para>
-
-
-
-
+        <para>
+            NOTE: When running the broker on Windows and starting it via the 
qpid-server.bat file, the "name=value" argument MUST be quoted.
+        </para>
 
     </section>
 

Modified: 
qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Getting-Started.xml
URL: 
http://svn.apache.org/viewvc/qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Getting-Started.xml?rev=1486031&r1=1486030&r2=1486031&view=diff
==============================================================================
--- 
qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Getting-Started.xml
 (original)
+++ 
qpid/branches/0.22/qpid/doc/book/src/java-broker/Java-Broker-Getting-Started.xml
 Fri May 24 12:16:53 2013
@@ -152,10 +152,10 @@
  -os                                            Overwrite the broker 
configuration store
  --overwrite-store                              with the current initial 
configuration
 
- -prop <name=value>                             Set a configuration property 
to use when
- --config-property <name=value>                 resolving variables in the 
broker
+ -prop "<name=value>"                           Set a configuration property 
to use when
+ --config-property "<name=value>"               resolving variables in the 
broker
                                                 configuration store, with 
format
-                                                'name=value'
+                                                "name=value"
 
  -sp <path>                                     Use given configuration store 
location
  --store-path <path>

Propchange: qpid/branches/0.22/qpid/java/
------------------------------------------------------------------------------
  Merged /qpid/trunk/qpid/java:r1486017

Propchange: qpid/branches/0.22/qpid/java/broker/
------------------------------------------------------------------------------
  Merged /qpid/trunk/qpid/java/broker:r1486017

Modified: 
qpid/branches/0.22/qpid/java/broker/src/main/java/org/apache/qpid/server/Main.java
URL: 
http://svn.apache.org/viewvc/qpid/branches/0.22/qpid/java/broker/src/main/java/org/apache/qpid/server/Main.java?rev=1486031&r1=1486030&r2=1486031&view=diff
==============================================================================
--- 
qpid/branches/0.22/qpid/java/broker/src/main/java/org/apache/qpid/server/Main.java
 (original)
+++ 
qpid/branches/0.22/qpid/java/broker/src/main/java/org/apache/qpid/server/Main.java
 Fri May 24 12:16:53 2013
@@ -61,7 +61,7 @@ public class Main
             .withLongOpt("create-initial-config").create("cic");
 
     private static final Option OPTION_CONFIGURATION_PROPERTY = 
OptionBuilder.withArgName("name=value").hasArg()
-            .withDescription("set a configuration property to use when 
resolving variables in the broker configuration store, with format 
'name=value'")
+            .withDescription("set a configuration property to use when 
resolving variables in the broker configuration store, with format 
\"name=value\"")
             .withLongOpt("config-property").create("prop");
 
     private static final Option OPTION_LOG_CONFIG_FILE =



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to