[Python-modules-commits] r24684 - in packages/stomper/trunk/debian/patches (fix_typos)

laarmen-guest at users.alioth.debian.org laarmen-guest at users.alioth.debian.org
Thu Jun 6 18:30:21 UTC 2013


    Date: Thursday, June 6, 2013 @ 18:30:04
  Author: laarmen-guest
Revision: 24684

Refresh typo patch

Modified:
  packages/stomper/trunk/debian/patches/fix_typos

Modified: packages/stomper/trunk/debian/patches/fix_typos
===================================================================
--- packages/stomper/trunk/debian/patches/fix_typos	2013-06-06 17:57:00 UTC (rev 24683)
+++ packages/stomper/trunk/debian/patches/fix_typos	2013-06-06 18:30:04 UTC (rev 24684)
@@ -3,61 +3,6 @@
 Subject: Fix various typos
 Forwarded: https://github.com/oisinmulvihill/stomper/pull/2
 
-diff --git a/README.md b/README.md
-index ae4e5c1..b2eb900 100644
---- a/README.md
-+++ b/README.md
-@@ -20,7 +20,7 @@ Introduction
- This is a python client implementation of the STOMP protocol.
- 
- The client is attempting to be transport layer neutral. This module provides
--functions to create and parse STOMP messages in a programatic fashion. The
-+functions to create and parse STOMP messages in a programmatic fashion. The
- messages can be easily generated and parsed, however its up to the user to do
- the sending and receiving. The STOMP protocol specification can be found here:
- 
-@@ -28,7 +28,7 @@ the sending and receiving. The STOMP protocol specification can be found here:
- 
- I've looked at the stomp client by Jason R. Briggs. I've based some of the
- 'function to message' generation on how his client does it. The client can
--be found at the follow address however it isn't a dependancy.
-+be found at the follow address however it isn't a dependency.
- 
- - `stompy <http://www.briggs.net.nz/log/projects/stomppy>`_
- 
-@@ -83,7 +83,7 @@ Roger Hoover. This removes the extra line ending which can cause problems.
- 0.2.4
- ~~~~~
- 
--OM: A minor relase fixing the problem whereby uuid would be installed on python2.5+. It
-+OM: A minor release fixing the problem whereby uuid would be installed on python2.5+. It
- is not needed after python2.4 as it comes with python. Arfrever Frehtes Taifersar Arahesis
- contributed the fix for this.
- 
-diff --git a/lib/stomper.egg-info/PKG-INFO b/lib/stomper.egg-info/PKG-INFO
-index f73cfc2..6a87896 100644
---- a/lib/stomper.egg-info/PKG-INFO
-+++ b/lib/stomper.egg-info/PKG-INFO
-@@ -26,7 +26,7 @@ Description: =======
-         This is a python client implementation of the STOMP protocol. 
-         
-         The client is attempting to be transport layer neutral. This module provides 
--        functions to create and parse STOMP messages in a programatic fashion. The 
-+        functions to create and parse STOMP messages in a programmatic fashion. The 
-         messages can be easily generated and parsed, however its up to the user to do
-         the sending and receiving. The STOMP protocol specification can be found here:
-         
-@@ -82,7 +82,7 @@ Description: =======
-         0.2.4
-         ~~~~~
-         
--        OM: A minor relase fixing the problem whereby uuid would be installed on python2.5+. It 
-+        OM: A minor release fixing the problem whereby uuid would be installed on python2.5+. It 
-         is not needed after python2.4 as it comes with python. Arfrever Frehtes Taifersar Arahesis 
-         contributed the fix for this.
-         
-diff --git a/lib/stomper/__init__.py b/lib/stomper/__init__.py
-index ee98b1f..ebfab22 100644
 --- a/lib/stomper/__init__.py
 +++ b/lib/stomper/__init__.py
 @@ -2,7 +2,7 @@
@@ -69,7 +14,7 @@
  
  The examples package contains two examples using twisted as the transport
  framework. Other frameworks can be used and I may add other examples as
-@@ -39,7 +39,7 @@ import doc
+@@ -39,7 +39,7 @@
  import utils
  import stompbuffer
  
@@ -78,7 +23,7 @@
  # It is used more for readability more then anything or reason.
  NO_RESPONSE_NEEDED = ''
  
-@@ -79,7 +79,7 @@ class Frame(object):
+@@ -79,7 +79,7 @@
  
      The method unpack() is used to read a STOMP message into
      a frame instance. It uses the unpack_frame(...) function
@@ -87,7 +32,7 @@
  
      The frame has three important member variables:
  
-@@ -128,12 +128,12 @@ class Frame(object):
+@@ -128,12 +128,12 @@
          headers = ''.join(
              ['%s:%s\n' % (f, v) for f, v in self.headers.items()]
          )
@@ -103,7 +48,7 @@
  
  
      def unpack(self, message):
-@@ -287,7 +287,7 @@ def commit(transactionid):
+@@ -287,7 +287,7 @@
      """STOMP commit command.
  
      Do whatever is required to make the series of actions
@@ -112,7 +57,7 @@
  
      transactionid:
          This is the id that all actions in this transaction.
-@@ -425,9 +425,9 @@ class Engine(object):
+@@ -425,9 +425,9 @@
  
  
      def connected(self, msg):
@@ -124,7 +69,7 @@
          member sessionId for later use.
  
          returned:
-@@ -445,7 +445,7 @@ class Engine(object):
+@@ -445,7 +445,7 @@
  
          Override this method to handle received messages.
  
@@ -133,11 +78,9 @@
          for the given message and transaction (if present).
  
          """
-diff --git a/lib/stomper/doc/stomper.stx b/lib/stomper/doc/stomper.stx
-index 3a86140..c0c1235 100644
 --- a/lib/stomper/doc/stomper.stx
 +++ b/lib/stomper/doc/stomper.stx
-@@ -20,7 +20,7 @@ Introduction
+@@ -20,7 +20,7 @@
  This is a python client implementation of the STOMP protocol.
  
  The client is attempting to be transport layer neutral. This module provides
@@ -146,7 +89,7 @@
  messages can be easily generated and parsed, however its up to the user to do
  the sending and receiving. The STOMP protocol specification can be found here:
  
-@@ -83,7 +83,7 @@ Roger Hoover. This removes the extra line ending which can cause problems.
+@@ -83,7 +83,7 @@
  0.2.4
  ~~~~~
  
@@ -155,11 +98,9 @@
  is not needed after python2.4 as it comes with python. Arfrever Frehtes Taifersar Arahesis
  contributed the fix for this.
  
-diff --git a/lib/stomper/examples/sender.py b/lib/stomper/examples/sender.py
-index 63d7df0..a6b1aed 100644
 --- a/lib/stomper/examples/sender.py
 +++ b/lib/stomper/examples/sender.py
-@@ -57,7 +57,7 @@ class StompProtocol(Protocol, stomper.Engine):
+@@ -57,7 +57,7 @@
  
          # ActiveMQ specific headers:
          #
@@ -168,11 +109,9 @@
          f.headers['activemq.noLocal'] = 'true'
          
          return f.pack()
-diff --git a/lib/stomper/examples/stompbuffer-tx.py b/lib/stomper/examples/stompbuffer-tx.py
-index 38bb725..769f774 100644
 --- a/lib/stomper/examples/stompbuffer-tx.py
 +++ b/lib/stomper/examples/stompbuffer-tx.py
-@@ -36,7 +36,7 @@ class StompProtocol(Protocol, stomper.Engine):
+@@ -36,7 +36,7 @@
          """
          stomper.Engine.connected(self, msg)
  
@@ -181,11 +120,9 @@
          
          def setup_looping_call():
              lc = LoopingCall(self.send)
-diff --git a/lib/stomper/examples/stomper_usage.py b/lib/stomper/examples/stomper_usage.py
-index 266e6c8..8b0fd77 100644
 --- a/lib/stomper/examples/stomper_usage.py
 +++ b/lib/stomper/examples/stomper_usage.py
-@@ -44,7 +44,7 @@ resp = responder.react(stomper.unpack_frame(response))
+@@ -44,7 +44,7 @@
  # just returns an empty string.
  
  
@@ -194,11 +131,9 @@
  # for messages from a destination and tell the server you'll
  # acknowledge all messages.
  #
-diff --git a/lib/stomper/tests/teststompbuffer.py b/lib/stomper/tests/teststompbuffer.py
-index 4448c82..500dece 100644
 --- a/lib/stomper/tests/teststompbuffer.py
 +++ b/lib/stomper/tests/teststompbuffer.py
-@@ -128,7 +128,7 @@ class StompBufferTestCase ( unittest.TestCase ):
+@@ -128,7 +128,7 @@
          msg1 = self.putAndGetText()
          msg2 = self.sb.getOneMessage()
          self.failUnless ( msg2 is None )
@@ -207,7 +142,7 @@
          self.failUnless ( self.sb.bufferIsEmpty() )
  
  
-@@ -141,7 +141,7 @@ class StompBufferTestCase ( unittest.TestCase ):
+@@ -141,7 +141,7 @@
          msg1 = self.putAndGetBinary()
          msg2 = self.sb.getOneMessage()
          self.failUnless ( msg2 is None )
@@ -216,11 +151,9 @@
          self.failUnless ( self.sb.bufferIsEmpty() )
  
  
-diff --git a/lib/stomper/tests/teststomper.py b/lib/stomper/tests/teststomper.py
-index ed40b49..b6a8dc8 100644
 --- a/lib/stomper/tests/teststomper.py
 +++ b/lib/stomper/tests/teststomper.py
-@@ -70,7 +70,7 @@ class StomperTest(unittest.TestCase):
+@@ -70,7 +70,7 @@
          # React to an error:
          error = stomper.Frame()
          error.cmd = 'ERROR'
@@ -229,6 +162,3 @@
          error.body = """The message:
  -----
  MESSAGE
--- 
-1.7.10.4
-




More information about the Python-modules-commits mailing list