~ubuntu-branches/ubuntu/lucid/python-boto/lucid

« back to all changes in this revision

Viewing changes to debian/NEWS

  • Committer: Bazaar Package Importer
  • Author(s): Eric Evans
  • Date: 2008-04-20 04:41:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080420044152-trgt1ygxt1yumbg4
Tags: 1.2a-1
New Upstream Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
python-boto (1.1c-1) unstable; urgency=low
 
2
 
 
3
  Boto now defaults to using the virtual bucket hosting server API for
 
4
  Amazon S3. A by-product of this is that bucket names must adhere to the
 
5
  same rules as host names in DNS, most notably that they are treated as
 
6
  case-insensitive. This means that it is impossible to access existing
 
7
  buckets which have names containing upper-case characters without
 
8
  resorting to the old-style calling format.
 
9
  
 
10
  You can enable the older calling format by passing an instance of
 
11
  boto.s3.connection.OrdinaryCallingFormat when creating connection 
 
12
  objects using the "calling_format" keyword. For example:
 
13
 
 
14
    from boto.s3.connection import OrdinaryCallingFormat
 
15
    from boto import connect_s3
 
16
  
 
17
    con = connect_s3(key, secret, calling_format=OrdinaryCallingFormat())
 
18
 
 
19
 -- Eric Evans <eevans@debian.org>  Thu, 03 Apr 2008 11:19:38 -0500