Hello community,

here is the log from the commit of package python-swift3 for openSUSE:Factory 
checked in at 2014-01-20 07:55:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-swift3 (Old)
 and      /work/SRC/openSUSE:Factory/.python-swift3.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-swift3"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-swift3/python-swift3.changes      
2013-11-15 13:30:48.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python-swift3.new/python-swift3.changes 
2014-01-23 15:54:51.000000000 +0100
@@ -1,0 +2,7 @@
+Thu Nov 21 01:23:43 UTC 2013 - [email protected]
+
+- Update to latest git (9a2ce5e):
+  + preven double-quoting object name
+  + fix requests without object_name
+
+-------------------------------------------------------------------

Old:
----
  swift3-1.7+git.1379116028.c367e2f.tar.gz

New:
----
  swift3-1.7+git.1384888344.9a2ce5e.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-swift3.spec ++++++
--- /var/tmp/diff_new_pack.UTsKvn/_old  2014-01-23 15:54:52.000000000 +0100
+++ /var/tmp/diff_new_pack.UTsKvn/_new  2014-01-23 15:54:52.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           python-swift3
-Version:        1.7+git.1379116028.c367e2f
+Version:        1.7+git.1384888344.9a2ce5e
 Release:        0
 Summary:        OpenStack Swift - Amazon S3 API Middleware
 License:        Apache-2.0

++++++ swift3-1.7+git.1379116028.c367e2f.tar.gz -> 
swift3-1.7+git.1384888344.9a2ce5e.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/swift3-1.7+git.1379116028.c367e2f/swift3/middleware.py 
new/swift3-1.7+git.1384888344.9a2ce5e/swift3/middleware.py
--- old/swift3-1.7+git.1379116028.c367e2f/swift3/middleware.py  2013-11-13 
10:26:36.000000000 +0100
+++ new/swift3-1.7+git.1384888344.9a2ce5e/swift3/middleware.py  2013-11-21 
02:16:24.000000000 +0100
@@ -852,7 +852,7 @@
 
     def get_controller(self, env, path):
         container, obj = split_path(path, 0, 2, True)
-        d = dict(container_name=container, object_name=obj)
+        d = dict(container_name=container, object_name=unquote(obj) if obj is 
not None else obj)
 
         if 'QUERY_STRING' in env:
             args = dict(urlparse.parse_qsl(env['QUERY_STRING'], 1))

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

Reply via email to