<feed xmlns='http://www.w3.org/2005/Atom'>
<title>abrt.git/lib/Utils/abrt_curl.cpp, branch 1.1.17</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/'/>
<entry>
<title>add "Accept: text/plain" header to our HTTP transactions</title>
<updated>2011-02-04T14:18:00+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-02-04T14:18:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=f46513d79dd6e1feb5c00dc5fae32d1a7fc10ab8'/>
<id>f46513d79dd6e1feb5c00dc5fae32d1a7fc10ab8</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>abrt_curl: fflush http body stream</title>
<updated>2011-02-03T15:24:27+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-02-03T15:24:27+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=079ea1c88ff9e3022499b7382452b6c7b0ab61c8'/>
<id>079ea1c88ff9e3022499b7382452b6c7b0ab61c8</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>curl: emit "Uploaded: %llu of %llu kbytes" messages</title>
<updated>2011-01-12T14:32:40+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-01-12T14:32:40+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=8d03d7468bd082e3ea9d063cfcb864f7567c7356'/>
<id>8d03d7468bd082e3ea9d063cfcb864f7567c7356</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix HTTP redirect support</title>
<updated>2011-01-12T14:30:27+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>dvlasenk@redhat.com</email>
</author>
<published>2011-01-12T14:30:27+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=2e822f8fc8b3c9274f862865d44b97ac89deb111'/>
<id>2e822f8fc8b3c9274f862865d44b97ac89deb111</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;dvlasenk@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>abrt_curl: discard headers from HTTP redirection</title>
<updated>2010-07-28T13:43:08+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2010-07-28T13:43:08+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=7203b782cdaec2ffa00ce201eb833bc2e7b2e918'/>
<id>7203b782cdaec2ffa00ce201eb833bc2e7b2e918</id>
<content type='text'>
Example where it is needed:

abrtd: save_headers: header 0: 'HTTP/1.1 301 Moved Permanently'
abrtd: save_headers: header 1: 'Connection: close'
abrtd: save_headers: header 2: 'Location: NEW_URL'
abrtd: save_headers: header 3: ''
...
    If we will continue collecting headers, we might be fooled to think
    that the following transaction had "Location: NEW_URL" header.
    This patch discards headers when it sees new "HTTP/..." line
    (note the count restarting from 0):
...
abrtd: save_headers: header 0: 'HTTP/1.1 200 OK'
abrtd: save_headers: header 1: 'Date: Wed, 28 Jul 2010 13:33:55 GMT'
abrtd: save_headers: header 2: 'Server: Apache'
abrtd: save_headers: header 3: 'Cache-Control: no-cache'
abrtd: save_headers: header 4: 'Pragma: no-cache'
abrtd: save_headers: header 5: 'Content-Type: text/html; charset=UTF-8'
abrtd: save_headers: header 6: 'Connection: close'
abrtd: save_headers: header 7: 'Transfer-Encoding: chunked'
abrtd: save_headers: header 8: ''

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Example where it is needed:

abrtd: save_headers: header 0: 'HTTP/1.1 301 Moved Permanently'
abrtd: save_headers: header 1: 'Connection: close'
abrtd: save_headers: header 2: 'Location: NEW_URL'
abrtd: save_headers: header 3: ''
...
    If we will continue collecting headers, we might be fooled to think
    that the following transaction had "Location: NEW_URL" header.
    This patch discards headers when it sees new "HTTP/..." line
    (note the count restarting from 0):
...
abrtd: save_headers: header 0: 'HTTP/1.1 200 OK'
abrtd: save_headers: header 1: 'Date: Wed, 28 Jul 2010 13:33:55 GMT'
abrtd: save_headers: header 2: 'Server: Apache'
abrtd: save_headers: header 3: 'Cache-Control: no-cache'
abrtd: save_headers: header 4: 'Pragma: no-cache'
abrtd: save_headers: header 5: 'Content-Type: text/html; charset=UTF-8'
abrtd: save_headers: header 6: 'Connection: close'
abrtd: save_headers: header 7: 'Transfer-Encoding: chunked'
abrtd: save_headers: header 8: ''

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>wire up SSLVerify in RHTSupport.conf to actually have the desired effect</title>
<updated>2010-07-21T11:13:34+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2010-07-21T11:13:34+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=cb025a34191b7dbfdfa754bb46152ce2ec70b738'/>
<id>cb025a34191b7dbfdfa754bb46152ce2ec70b738</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lower-case devel headers</title>
<updated>2010-07-09T09:42:46+00:00</updated>
<author>
<name>Nikola Pajkovsky</name>
<email>npajkovs@redhat.com</email>
</author>
<published>2010-07-08T14:38:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=7c8467db240180d4d4fba9701eac1c4b07466d6b'/>
<id>7c8467db240180d4d4fba9701eac1c4b07466d6b</id>
<content type='text'>
Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Nikola Pajkovsky &lt;npajkovs@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>abrt_curl: fix a problem with incorrect content-length on 32-bit arches</title>
<updated>2010-06-15T09:23:53+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2010-06-15T09:23:53+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=f2b9b027b6ccb888829197c4b037077d5017d8eb'/>
<id>f2b9b027b6ccb888829197c4b037077d5017d8eb</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>take file upload POST code from gavin's lib. Adapt rhfastcheck to use changed API</title>
<updated>2010-05-28T13:41:19+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2010-05-28T13:41:19+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=8bb5261cef1a4079aad422aa8cf1c9aa9b895a1a'/>
<id>8bb5261cef1a4079aad422aa8cf1c9aa9b895a1a</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>trivial: better HTTP/curl error reporting</title>
<updated>2010-03-30T12:15:07+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2010-03-30T12:15:07+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/mnowak/public_git/abrt.git/commit/?id=5abfb9ab5749676bc41e9babe3f734dc6e9a12be'/>
<id>5abfb9ab5749676bc41e9babe3f734dc6e9a12be</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
