Skip to content

Commit

Permalink
Increment to version 1.0.14: Embedding the external poster package to…
Browse files Browse the repository at this point in the history
… avoid pip 1.5.x errors. Add support for direction in resource listing.
  • Loading branch information
nadavs committed Feb 11, 2014
1 parent 0cbabb9 commit b7f68c3
Show file tree
Hide file tree
Showing 13 changed files with 671 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ v1.0.10, 2013-08-07 -- Support ping to Admin API, Support folder and proxy uploa
v1.0.11, 2013-10-20 -- Fix issue when CloudinaryInput with options is rendered twice.
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.
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.
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.
3 changes: 3 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
Released under the MIT license.

Contains MIT licensed code from https://bitbucket.org/chrisatlee/poster


3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,3 +254,6 @@ Stay tuned for updates, tips and tutorials: [Blog](http://cloudinary.com/blog),
## License #######################################################################

Released under the MIT license.

Contains MIT licensed code from [poster](https://bitbucket.org/chrisatlee/poster).

2 changes: 1 addition & 1 deletion cloudinary.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: cloudinary
Version: 1.0.13
Version: 1.0.14
Summary: Python interface to Cloudinary
Home-page: http://cloudinary.com
Author: Cloudinary
Expand Down
4 changes: 3 additions & 1 deletion cloudinary.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ cloudinary.egg-info/PKG-INFO
cloudinary.egg-info/SOURCES.txt
cloudinary.egg-info/dependency_links.txt
cloudinary.egg-info/not-zip-safe
cloudinary.egg-info/requires.txt
cloudinary.egg-info/top_level.txt
cloudinary/poster/__init__.py
cloudinary/poster/encode.py
cloudinary/poster/streaminghttp.py
cloudinary/static/html/cloudinary_cors.html
cloudinary/static/js/canvas-to-blob.min.js
cloudinary/static/js/jquery.cloudinary.js
Expand Down
2 changes: 1 addition & 1 deletion cloudinary.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://bitbucket.org/cloudinary/poster/get/97d3c6fcb877.tar.gz#egg=poster-0.8.2

1 change: 0 additions & 1 deletion cloudinary.egg-info/requires.txt

This file was deleted.

2 changes: 1 addition & 1 deletion cloudinary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
AKAMAI_SHARED_CDN = "res.cloudinary.com"
SHARED_CDN = AKAMAI_SHARED_CDN

VERSION = "1.0.13"
VERSION = "1.0.14"
USER_AGENT = "cld-python-" + VERSION

from cloudinary import utils
Expand Down
34 changes: 34 additions & 0 deletions cloudinary/poster/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# MIT licensed code copied from https://bitbucket.org/chrisatlee/poster
#
# Copyright (c) 2011 Chris AtLee
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""poster module
Support for streaming HTTP uploads, and multipart/form-data encoding
```poster.version``` is a 3-tuple of integers representing the version number.
New releases of poster will always have a version number that compares greater
than an older version of poster.
New in version 0.6."""

import cloudinary.poster.streaminghttp
import cloudinary.poster.encode

version = (0, 8, 2) # Thanks JP!
Loading

0 comments on commit b7f68c3

Please sign in to comment.