<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-swiftclient.git/doc, branch queens-eol</title>
<subtitle>opendev.org: openstack/python-swiftclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/'/>
<entry>
<title>Allow for uploads from standard input.</title>
<updated>2017-07-27T00:04:19+00:00</updated>
<author>
<name>Timur Alperovich</name>
<email>timuralp@swiftstack.com</email>
</author>
<published>2017-06-16T03:53:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=0982791db2ccb851f277ffa653065e4021e52b3f'/>
<id>0982791db2ccb851f277ffa653065e4021e52b3f</id>
<content type='text'>
If "-" is passed in for the source, python-swiftclient will upload
the object by reading the contents of the standard input. The object
name option must be set, as well, and this cannot be used in
conjunction with other files.

This approach stores the entire contents as one object. A follow on
patch will change this behavior to upload from standard input as SLO,
unless the segment size is larger than the content size.

Change-Id: I1a8be6377de06f702e0f336a5a593408ed49be02
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If "-" is passed in for the source, python-swiftclient will upload
the object by reading the contents of the standard input. The object
name option must be set, as well, and this cannot be used in
conjunction with other files.

This approach stores the entire contents as one object. A follow on
patch will change this behavior to upload from standard input as SLO,
unless the segment size is larger than the content size.

Change-Id: I1a8be6377de06f702e0f336a5a593408ed49be02
</pre>
</div>
</content>
</entry>
<entry>
<title>moved cli doc to the right place for new links process</title>
<updated>2017-07-26T20:49:55+00:00</updated>
<author>
<name>John Dickinson</name>
<email>me@not.mn</email>
</author>
<published>2017-07-26T20:47:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=124c7de67669ad314f7357a2d845c2bf4e2397ca'/>
<id>124c7de67669ad314f7357a2d845c2bf4e2397ca</id>
<content type='text'>
Change-Id: I5d2f681ba5ce1f95d006eb7208cdb388a64811c9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I5d2f681ba5ce1f95d006eb7208cdb388a64811c9
</pre>
</div>
</content>
</entry>
<entry>
<title>Update the documentation link for doc migration</title>
<updated>2017-07-24T16:49:59+00:00</updated>
<author>
<name>Hangdong Zhang</name>
<email>hdzhang@fiberhome.com</email>
</author>
<published>2017-07-21T07:42:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=3db6ddd6e480a7cb45e947290816f3dd42ac66c5'/>
<id>3db6ddd6e480a7cb45e947290816f3dd42ac66c5</id>
<content type='text'>
Change-Id: I1a5a354675b3ca6a7dbb5ab2dc78bf60209fa2b5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I1a5a354675b3ca6a7dbb5ab2dc78bf60209fa2b5
</pre>
</div>
</content>
</entry>
<entry>
<title>merged openstack-manuals content with existing content</title>
<updated>2017-07-21T18:09:15+00:00</updated>
<author>
<name>John Dickinson</name>
<email>me@not.mn</email>
</author>
<published>2017-07-21T18:09:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=487b5a1ce479c12fc47673f3c8cd3259082dce6a'/>
<id>487b5a1ce479c12fc47673f3c8cd3259082dce6a</id>
<content type='text'>
Change-Id: I05bc8f80daefbb32f32727550a9cbe43e9754e2f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I05bc8f80daefbb32f32727550a9cbe43e9754e2f
</pre>
</div>
</content>
</entry>
<entry>
<title>Option to ignore mtime metadata entry.</title>
<updated>2017-07-06T17:19:12+00:00</updated>
<author>
<name>Christopher Bartz</name>
<email>bartz@dkrz.de</email>
</author>
<published>2017-07-06T15:30:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=cde73c196d4f161b227fb924cd59cf02eaa33c03'/>
<id>cde73c196d4f161b227fb924cd59cf02eaa33c03</id>
<content type='text'>
Currently, the swiftclient upload command passes a custom metadata
header for each object (called object-meta-mtime), whose value is
the current UNIX timestamp. When downloading such an object with the
swiftclient, the mtime header is parsed and passed as the atime and
mtime for the newly created file.

There are use-cases where this is not desired, for example when using
tmp or scratch directories in which files older than a specific date
are deleted. This commit provides a boolean option for ignoring the
mtime header.

Change-Id: If60b389aa910c6f1969b999b5d3b6d0940375686
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, the swiftclient upload command passes a custom metadata
header for each object (called object-meta-mtime), whose value is
the current UNIX timestamp. When downloading such an object with the
swiftclient, the mtime header is parsed and passed as the atime and
mtime for the newly created file.

There are use-cases where this is not desired, for example when using
tmp or scratch directories in which files older than a specific date
are deleted. This commit provides a boolean option for ignoring the
mtime header.

Change-Id: If60b389aa910c6f1969b999b5d3b6d0940375686
</pre>
</div>
</content>
</entry>
<entry>
<title>ISO 8601 timestamps for tempurl</title>
<updated>2017-03-29T18:27:39+00:00</updated>
<author>
<name>Christopher Bartz</name>
<email>bartz@dkrz.de</email>
</author>
<published>2017-01-20T17:04:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=8e08931b9ffd872a2b5537149a5d3b9f3e9bb5d4'/>
<id>8e08931b9ffd872a2b5537149a5d3b9f3e9bb5d4</id>
<content type='text'>
Client-side implementation for ISO 8601 timestamp
support of tempurl middleware. Please see

https://review.openstack.org/#/c/422679/

Change-Id: I76da28b48948475ec1bae5258e0b39a316553fb7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Client-side implementation for ISO 8601 timestamp
support of tempurl middleware. Please see

https://review.openstack.org/#/c/422679/

Change-Id: I76da28b48948475ec1bae5258e0b39a316553fb7
</pre>
</div>
</content>
</entry>
<entry>
<title>Removing duplicated doc from client-api</title>
<updated>2017-03-27T19:23:16+00:00</updated>
<author>
<name>Nelson Marcos</name>
<email>nelsonmarcos@gmail.com</email>
</author>
<published>2017-03-27T19:23:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=b404df9abad6d2c4611adee17fd9c33599cd6903'/>
<id>b404df9abad6d2c4611adee17fd9c33599cd6903</id>
<content type='text'>
Change-Id: I1a9ef0c33c68a32808686194c74c27d66d2617e0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I1a9ef0c33c68a32808686194c74c27d66d2617e0
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "[trivial] Be consistent in using example.com"</title>
<updated>2017-03-22T17:46:16+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-03-22T17:46:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=94db1f2551ac5036dc39f4ce00332334e57c0ab1'/>
<id>94db1f2551ac5036dc39f4ce00332334e57c0ab1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Don't recommend to overwrite imported `session` variable"</title>
<updated>2017-03-17T18:55:39+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-03-17T18:55:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=8aae889f26ea0abe38d5dc0cb340bc0096a75f9c'/>
<id>8aae889f26ea0abe38d5dc0cb340bc0096a75f9c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't recommend to overwrite imported `session` variable</title>
<updated>2017-03-17T05:26:29+00:00</updated>
<author>
<name>Kota Tsuyuzaki</name>
<email>tsuyuzaki.kota@lab.ntt.co.jp</email>
</author>
<published>2017-03-17T05:26:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-swiftclient.git/commit/?id=e684913489e84a1e70a9ffa4149dd6e94da71db9'/>
<id>e684913489e84a1e70a9ffa4149dd6e94da71db9</id>
<content type='text'>
Change-Id: I34e25e674aac3a85a4702779053d95962b292281
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I34e25e674aac3a85a4702779053d95962b292281
</pre>
</div>
</content>
</entry>
</feed>
