Browse code

Released version 1.1.0-beta2

* S3/PkgInfo.py: Updated to 1.1.0-beta2
* NEWS: Updated.
* s3cmd.1: Regenerated.

Michal Ludvig authored on 2012/01/06 18:49:32
Showing 3 changed files
... ...
@@ -8,6 +8,8 @@ s3cmd 1.1.0   -   ???
8 8
   is now on by default, -M is no longer shorthand for --guess-mime-type
9 9
 * Allow parameters in MIME types, for example:
10 10
   --mime-type="text/plain; charset=utf-8"
11
+* MIME type can be guessed by python-magic which is a lot better than
12
+  relying on the extension. Contributed by Karsten Sperling.
11 13
 * Support for environment variables as config values. For instance
12 14
   in ~/.s3cmd put "access_key=$S3_ACCESS_KEY". Contributed by Ori Bar.
13 15
 * Support for --configure checking access to a specific bucket instead
... ...
@@ -1,5 +1,5 @@
1 1
 package = "s3cmd"
2
-version = "1.1.0-beta1"
2
+version = "1.1.0-beta2"
3 3
 url = "http://s3tools.org"
4 4
 license = "GPL version 2"
5 5
 short_description = "Command line tool for managing Amazon S3 and CloudFront services"
... ...
@@ -65,6 +65,10 @@ Sign arbitrary string using the secret key
65 65
 .TP
66 66
 s3cmd \fBfixbucket\fR \fIs3://BUCKET[/PREFIX]\fR
67 67
 Fix invalid file names in a bucket
68
+
69
+
70
+.PP
71
+Commands for static WebSites configuration
68 72
 .TP
69 73
 s3cmd \fBws-create\fR \fIs3://BUCKET\fR
70 74
 Create Website from bucket
... ...
@@ -112,7 +116,7 @@ show this help message and exit
112 112
 .TP
113 113
 \fB\-\-configure\fR
114 114
 Invoke interactive (re)configuration tool. Optionally
115
-use as '--configure s3://come-bucket' to test access
115
+use as '\fB--configure\fR s3://come-bucket' to test access
116 116
 to a specific bucket instead of attempting to list
117 117
 them all.
118 118
 .TP
... ...
@@ -206,8 +210,7 @@ Read --rexclude REGEXPs from FILE
206 206
 \fB\-\-include\fR=GLOB
207 207
 Filenames and paths matching GLOB will be included
208 208
 even if previously excluded by one of
209
-.TP
210
-\fB\-\-(r)exclude(\-from)\fR patterns
209
+\fB--(r)exclude(-from)\fR patterns
211 210
 .TP
212 211
 \fB\-\-include\-from\fR=FILE
213 212
 Read --include GLOBs from FILE
... ...
@@ -240,19 +243,18 @@ commands)
240 240
 Default MIME-type for stored objects. Application
241 241
 default is binary/octet-stream.
242 242
 .TP
243
-\fB\-M\fR, \fB\-\-guess\-mime\-type\fR
244
-Guess MIME-type of files by their extension. Fall back
245
-to default MIME-Type as specified by --default-mime-
246
-type option
243
+\fB\-\-guess\-mime\-type\fR
244
+Guess MIME-type of files by their extension or mime
245
+magic. Fall back to default MIME-Type as specified by
246
+\fB--default-mime-type\fR option
247 247
 .TP
248 248
 \fB\-\-no\-guess\-mime\-type\fR
249 249
 Don't guess MIME-type and use the default type
250 250
 instead.
251 251
 .TP
252 252
 \fB\-m\fR MIME/TYPE, \fB\-\-mime\-type\fR=MIME/TYPE
253
-Force MIME-type. Override both --default-mime-type and
254
-.TP
255
-\fB\-\-guess\-mime\-type.\fR
253
+Force MIME-type. Override both \fB--default-mime-type\fR and
254
+\fB--guess-mime-type\fR.
256 255
 .TP
257 256
 \fB\-\-add\-header\fR=NAME:VALUE
258 257
 Add a given HTTP header to the upload request. Can be
... ...
@@ -268,6 +270,18 @@ Override autodetected terminal and filesystem encoding
268 268
 Use the S3 name as given on the command line. No pre-
269 269
 processing, encoding, etc. Use with caution!
270 270
 .TP
271
+\fB\-\-disable\-multipart\fR
272
+Disable multipart upload on files bigger than
273
+\fB--multipart-chunk-size-mb\fR
274
+.TP
275
+\fB\-\-multipart\-chunk\-size\-mb\fR=SIZE
276
+Size of each chunk of a multipart upload. Files bigger
277
+than SIZE are automatically uploaded as multithreaded-
278
+multipart, smaller files are uploaded using the
279
+traditional method. SIZE is in Mega-Bytes, default
280
+chunk size is noneMB, minimum allowed chunk size is
281
+5MB, maximum is 5GB.
282
+.TP
271 283
 \fB\-\-list\-md5\fR
272 284
 Include MD5 sums in bucket listings (only for 'ls'
273 285
 command).
... ...
@@ -326,7 +340,7 @@ Enable verbose output.
326 326
 Enable debug output.
327 327
 .TP
328 328
 \fB\-\-version\fR
329
-Show s3cmd version (1.1.0-beta1) and exit.
329
+Show s3cmd version (1.1.0-beta2) and exit.
330 330
 .TP
331 331
 \fB\-F\fR, \fB\-\-follow\-symlinks\fR
332 332
 Follow symbolic links as if they are regular files
... ...
@@ -427,7 +441,7 @@ Prefered way to get support is our mailing list:
427 427
 Report bugs to 
428 428
 .I s3tools\-bugs@lists.sourceforge.net
429 429
 .SH COPYRIGHT
430
-Copyright \(co 2007,2008,2009,2010,2011 Michal Ludvig <http://www.logix.cz/michal>
430
+Copyright \(co 2007,2008,2009,2010,2011,2012 Michal Ludvig <http://www.logix.cz/michal>
431 431
 .br
432 432
 This is free software.  You may redistribute copies of it under the terms of
433 433
 the GNU General Public License version 2 <http://www.gnu.org/licenses/gpl.html>.