You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2008/05/15 23:46:14 UTC

svn commit: r656859 - in /incubator/qpid/trunk/qpid/python/examples: direct/ fanout/ pubsub/ request-response/ xml-exchange/

Author: aconway
Date: Thu May 15 14:46:14 2008
New Revision: 656859

URL: http://svn.apache.org/viewvc?rev=656859&view=rev
Log:

- Remove redundant comments about AMQP_SPEC

Modified:
    incubator/qpid/trunk/qpid/python/examples/direct/declare_queues.py
    incubator/qpid/trunk/qpid/python/examples/direct/direct_consumer.py
    incubator/qpid/trunk/qpid/python/examples/direct/direct_producer.py
    incubator/qpid/trunk/qpid/python/examples/direct/listener.py
    incubator/qpid/trunk/qpid/python/examples/fanout/fanout_consumer.py
    incubator/qpid/trunk/qpid/python/examples/fanout/fanout_producer.py
    incubator/qpid/trunk/qpid/python/examples/fanout/listener.py
    incubator/qpid/trunk/qpid/python/examples/pubsub/topic_publisher.py
    incubator/qpid/trunk/qpid/python/examples/pubsub/topic_subscriber.py
    incubator/qpid/trunk/qpid/python/examples/request-response/client.py
    incubator/qpid/trunk/qpid/python/examples/request-response/server.py
    incubator/qpid/trunk/qpid/python/examples/xml-exchange/declare_queues.py
    incubator/qpid/trunk/qpid/python/examples/xml-exchange/listener.py
    incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_consumer.py
    incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_producer.py

Modified: incubator/qpid/trunk/qpid/python/examples/direct/declare_queues.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/direct/declare_queues.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/direct/declare_queues.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/direct/declare_queues.py Thu May 15 14:46:14 2008
@@ -29,10 +29,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/direct/direct_consumer.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/direct/direct_consumer.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/direct/direct_consumer.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/direct/direct_consumer.py Thu May 15 14:46:14 2008
@@ -27,10 +27,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/direct/direct_producer.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/direct/direct_producer.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/direct/direct_producer.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/direct/direct_producer.py Thu May 15 14:46:14 2008
@@ -27,10 +27,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/direct/listener.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/direct/listener.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/direct/listener.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/direct/listener.py Thu May 15 14:46:14 2008
@@ -48,10 +48,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/fanout/fanout_consumer.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/fanout/fanout_consumer.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/fanout/fanout_consumer.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/fanout/fanout_consumer.py Thu May 15 14:46:14 2008
@@ -25,10 +25,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
      host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/fanout/fanout_producer.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/fanout/fanout_producer.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/fanout/fanout_producer.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/fanout/fanout_producer.py Thu May 15 14:46:14 2008
@@ -24,10 +24,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
      host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/fanout/listener.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/fanout/listener.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/fanout/listener.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/fanout/listener.py Thu May 15 14:46:14 2008
@@ -45,10 +45,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/pubsub/topic_publisher.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/pubsub/topic_publisher.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/pubsub/topic_publisher.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/pubsub/topic_publisher.py Thu May 15 14:46:14 2008
@@ -33,10 +33,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/pubsub/topic_subscriber.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/pubsub/topic_subscriber.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/pubsub/topic_subscriber.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/pubsub/topic_subscriber.py Thu May 15 14:46:14 2008
@@ -57,10 +57,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/request-response/client.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/request-response/client.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/request-response/client.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/request-response/client.py Thu May 15 14:46:14 2008
@@ -48,10 +48,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/request-response/server.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/request-response/server.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/request-response/server.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/request-response/server.py Thu May 15 14:46:14 2008
@@ -40,10 +40,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/xml-exchange/declare_queues.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/xml-exchange/declare_queues.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/xml-exchange/declare_queues.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/xml-exchange/declare_queues.py Thu May 15 14:46:14 2008
@@ -28,10 +28,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/xml-exchange/listener.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/xml-exchange/listener.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/xml-exchange/listener.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/xml-exchange/listener.py Thu May 15 14:46:14 2008
@@ -45,10 +45,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_consumer.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_consumer.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_consumer.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_consumer.py Thu May 15 14:46:14 2008
@@ -27,10 +27,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :

Modified: incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_producer.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_producer.py?rev=656859&r1=656858&r2=656859&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_producer.py (original)
+++ incubator/qpid/trunk/qpid/python/examples/xml-exchange/xml_producer.py Thu May 15 14:46:14 2008
@@ -45,10 +45,6 @@
 
 # If an alternate host or port has been specified, use that instead
 # (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
 if len(sys.argv) > 1 :
   host=sys.argv[1]
 if len(sys.argv) > 2 :