summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2010-07-281-4/+24
|\
| * abrt_curl: discard headers from HTTP redirectionDenys Vlasenko2010-07-281-4/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 <vda.linux@googlemail.com>
* | made some more strings translatable rhbz#574693Jiri Moskovcak2010-07-2813-13/+13
| |
* | rename *.GTKBuilder to *.gladeJiri Moskovcak2010-07-2813-14/+14
|/ | | | | | - it seems that intltool ignores the GTKBuilder suffix, so the strings from our plugin settings dialog were not translatable, renaming to .glade seems to fix this
* style fixes, no code changesDenys Vlasenko2010-07-221-3/+3
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* wire up SSLVerify in RHTSupport.conf to actually have the desired effectDenys Vlasenko2010-07-215-9/+25
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* dumpoops/KerneloopsScanner: add pid to crashdump nameDenys Vlasenko2010-07-151-2/+3
| | | | | | | Otherwise dumpoops -d cut_here.test; dumpoops -d cut_here.test; dumpoops -d cut_here.test aborts Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* The Logger plugin returns a message as the result of Report() call instead ↵Karel Klic2010-07-141-3/+4
| | | | of a file URL.
* s^http://api.access.redhat.com/rs^https://api.access.redhat.com/rsDenys Vlasenko2010-07-142-2/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fix my C++ error (need to cast result of malloc)Denys Vlasenko2010-07-141-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* CCpp: abrt-debuginfo-install output lines can be long, accomodate themDenys Vlasenko2010-07-141-2/+7
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* changing NoSSLVerify to SSLVerify in bugzilla pluginMichal Toman2010-07-135-19/+19
|
* RHTSupport: set default URL to api.access.redhat.com/rsDenys Vlasenko2010-07-132-2/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Make an error message translatable.Karel Klic2010-07-121-1/+1
| | | | Can't -> Cannot.
* CCpp: give zero rating to an empty backtraceKarel Klic2010-07-121-1/+7
| | | | From: Jiri Moskovcak <jmoskovc@redhat.com>
* remove rating for python crashesKarel Klic2010-07-122-9/+1
| | | | From: Jiri Moskovcak <jmoskovc@redhat.com>
* List allowed items in RHTSupport.confKarel Klic2010-07-121-0/+8
|
* String updatesKarel Klic2010-07-124-7/+7
|
* lower-case devel headersNikola Pajkovsky2010-07-0939-82/+82
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* mv devel header files to inc/ and install themJiri Moskovcak2010-07-0912-733/+9
| | | | | | - header files are required to write the custom plugins plugins without downloading the whole git tree, user just need to install abrt-devel package
* fedora bugs should not depend on rhel bugsNikola Pajkovsky2010-07-081-4/+10
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* Jiri forgot "git add abrt_packages.cpp" :DDenys Vlasenko2010-07-011-0/+26
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* add rating to python crashesJiri Moskovcak2010-06-302-1/+9
|
* added support for package specific actionsJiri Moskovcak2010-06-301-0/+1
|
* renamed TicketUploader to ReportUploaderJiri Moskovcak2010-06-306-32/+32
|
* Denys's verbose comment on BacktraceRemotesKarel Klic2010-06-301-1/+5
|
* Merge branch 'remote2'Karel Klic2010-06-303-0/+20
|\
| * Added BacktraceRemotes option.Karel Klic2010-06-303-0/+20
| |
* | English and message format fixesDenys Vlasenko2010-06-305-13/+12
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | abrt_rh_support: improve error messages a bit more.Denys Vlasenko2010-06-302-5/+3
| | | | | | | | | | | | Also, allow " in saved messages. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | abrt_rh_support: improve error messageDenys Vlasenko2010-06-301-25/+24
|/ | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* remove obsolete Catcut and rhfastcheck reportersDenys Vlasenko2010-06-299-1075/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt_rh_support: change message so that URL does not have comma added to itDenys Vlasenko2010-06-291-1/+3
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* make rhel bug point to correct placeNikola Pajkovsky2010-06-251-31/+138
| | | | | | | rhbz578397 - abrt should not point to Fedora bugs but create new RHEL bug instead Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* don't show global uuid in reportNikola Pajkovsky2010-06-231-0/+1
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* Revert "rhel bug points to correct place"Nikola Pajkovsky2010-06-232-136/+32
| | | | This reverts commit c3660d4092f337a12cd32c95aae94f8b2db0200e.
* Revert "remove extra assignement"Nikola Pajkovsky2010-06-231-2/+2
| | | | This reverts commit 553fe6a2b575ec5556c0c0c32410ac9a6562eb8a.
* remove extra assignementNikola Pajkovsky2010-06-211-2/+2
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* rhel bug points to correct placeNikola Pajkovsky2010-06-212-32/+136
| | | | | | | rhbz578397 - abrt should not point to Fedora bugs but create new RHEL bug instead. Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* Fixed a flaw in strbuf_prepend_str (affecting duplicate checker)Karel Klic2010-06-171-0/+1
|
* TicketUploader: do not add '\n' to text files in crashdumpDenys Vlasenko2010-06-171-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt_rh_support: handle 404 errors betterDenys Vlasenko2010-06-173-11/+20
| | | | | | Also remove unused class memeber in CCpp analyser Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* GUI: don't require the rating for all reportersJiri Moskovcak2010-06-162-1/+4
| | | | | | - some reporters (logger, RHTSupport) doesn't require a good backtrace (so far only bz does) so gui shouldn't force user to have a good backtrace everytime
* RHTSupport: actually use settings; report curl errors betterDenys Vlasenko2010-06-157-15/+37
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* revert accidental changes to Bugzilla.GTKBuilderDenys Vlasenko2010-06-151-2/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Add a GUI config dialog for RHTSupport pluginDenys Vlasenko2010-06-154-3/+217
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* abrt_curl: fix a problem with incorrect content-length on 32-bit archesDenys Vlasenko2010-06-152-2/+7
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* sosreport: save the dump directly to crashdump directoryDenys Vlasenko2010-06-141-10/+26
| | | | | | | Old code was using intermediate file in /tmp. selinux was unhappy. Run-tested. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* plugin rename: rhticket -> RHTSupportDenys Vlasenko2010-06-143-8/+8
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Move hooklib from src/Hooks to lib/Utilskarel2010-06-093-1/+156
|