Skip to content

Commit b7f68c3

Browse files
committed
Increment to version 1.0.14: Embedding the external poster package to avoid pip 1.5.x errors. Add support for direction in resource listing.
1 parent 0cbabb9 commit b7f68c3

13 files changed

+671
-11
lines changed

CHANGES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ v1.0.10, 2013-08-07 -- Support ping to Admin API, Support folder and proxy uploa
2020
v1.0.11, 2013-10-20 -- Fix issue when CloudinaryInput with options is rendered twice.
2121
v1.0.12, 2013-11-04 -- CloudinaryJsFileField - Handle validation errors in form by redering hidden field with previous upload result. Support unique_filename. Support color transformation parameter.
2222
v1.0.13, 2014-01-09 -- Support overwrite upload parameter. Support tags in admin API resource listing. Support specifying face coordinates in upload API. Support specifying context (currently alt and caption) in upload API and returning context in API. Support specifying allowed image formats in upload API. Support listing resources in admin API by multiple public IDs. Send User-Agent header with client library version in API request. Support for signed-URLs to override restricted dynamic URLs. Use api.Error instead of Exception in uploader module. Support deleting all resources in Admin API.
23+
v1.0.14, 2014-02-11 -- Embedding the external poster package to avoid pip 1.5.x errors. Add support for direction in resource listing.

LICENSE.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
Released under the MIT license.
22

3+
Contains MIT licensed code from https://bitbucket.org/chrisatlee/poster
4+
5+

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -254,3 +254,6 @@ Stay tuned for updates, tips and tutorials: [Blog](http://cloudinary.com/blog),
254254
## License #######################################################################
255255

256256
Released under the MIT license.
257+
258+
Contains MIT licensed code from [poster](https://bitbucket.org/chrisatlee/poster).
259+

cloudinary.egg-info/PKG-INFO

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.1
22
Name: cloudinary
3-
Version: 1.0.13
3+
Version: 1.0.14
44
Summary: Python interface to Cloudinary
55
Home-page: http://cloudinary.com
66
Author: Cloudinary

cloudinary.egg-info/SOURCES.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ cloudinary.egg-info/PKG-INFO
1313
cloudinary.egg-info/SOURCES.txt
1414
cloudinary.egg-info/dependency_links.txt
1515
cloudinary.egg-info/not-zip-safe
16-
cloudinary.egg-info/requires.txt
1716
cloudinary.egg-info/top_level.txt
17+
cloudinary/poster/__init__.py
18+
cloudinary/poster/encode.py
19+
cloudinary/poster/streaminghttp.py
1820
cloudinary/static/html/cloudinary_cors.html
1921
cloudinary/static/js/canvas-to-blob.min.js
2022
cloudinary/static/js/jquery.cloudinary.js
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://bitbucket.org/cloudinary/poster/get/97d3c6fcb877.tar.gz#egg=poster-0.8.2
1+

cloudinary.egg-info/requires.txt

-1
This file was deleted.

cloudinary/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
AKAMAI_SHARED_CDN = "res.cloudinary.com"
99
SHARED_CDN = AKAMAI_SHARED_CDN
1010

11-
VERSION = "1.0.13"
11+
VERSION = "1.0.14"
1212
USER_AGENT = "cld-python-" + VERSION
1313

1414
from cloudinary import utils

cloudinary/poster/__init__.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# MIT licensed code copied from https://bitbucket.org/chrisatlee/poster
2+
#
3+
# Copyright (c) 2011 Chris AtLee
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to deal
7+
# in the Software without restriction, including without limitation the rights
8+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
# copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in
13+
# all copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
# THE SOFTWARE.
22+
"""poster module
23+
24+
Support for streaming HTTP uploads, and multipart/form-data encoding
25+
26+
```poster.version``` is a 3-tuple of integers representing the version number.
27+
New releases of poster will always have a version number that compares greater
28+
than an older version of poster.
29+
New in version 0.6."""
30+
31+
import cloudinary.poster.streaminghttp
32+
import cloudinary.poster.encode
33+
34+
version = (0, 8, 2) # Thanks JP!

0 commit comments

Comments
 (0)