├── .dir-locals.el ├── .git-commit-template ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .packit.yml ├── .tito ├── custom │ └── abrt │ │ └── __init__.py ├── packages │ ├── .readme │ └── libreport ├── releasers.conf └── tito.props ├── CHANGELOG.md ├── COPYING ├── HACKING.md ├── INSTALL ├── Makefile.am ├── README.md ├── apidoc ├── Doxyfile.in ├── Makefile.am └── html │ └── Makefile.am ├── asciidoc.conf ├── autogen.sh ├── configure.ac ├── data ├── Makefile.am └── augeas │ ├── Makefile.am │ ├── libreport.aug │ └── test_libreport.aug ├── doc ├── Makefile.am ├── anaconda_event.conf.txt ├── bugzilla.conf.txt ├── bugzilla_anaconda_event.conf.txt ├── bugzilla_event.conf.txt ├── bugzilla_format.conf.txt ├── bugzilla_format_anaconda.conf.txt ├── bugzilla_format_analyzer_libreport.conf.txt ├── bugzilla_format_kernel.conf.txt ├── bugzilla_formatdup.conf.txt ├── bugzilla_formatdup_anaconda.conf.txt ├── bugzilla_formatdup_analyzer_libreport.conf.txt ├── centos_report_event.conf.5 ├── forbidden_words.conf.txt ├── ignored_elements.conf.txt ├── ignored_words.conf.txt ├── libreport.conf.txt ├── mailx.conf.txt ├── mailx_event.conf.txt ├── mantisbt.conf.txt ├── mantisbt_format.conf.txt ├── mantisbt_format_analyzer_libreport.conf.txt ├── mantisbt_formatdup.conf.txt ├── mantisbt_formatdup_analyzer_libreport.conf.txt ├── print_event.conf.txt ├── report-cli.txt ├── report-gtk.txt ├── report-newt.txt ├── report_Bugzilla.conf.txt ├── report_CentOSBugTracker.conf.txt ├── report_Logger.conf.txt ├── report_Uploader.conf.txt ├── report_centos.conf.txt ├── report_event.conf.txt ├── report_fedora.conf.txt ├── report_logger.conf.txt ├── report_mailx.conf.txt ├── report_rhel_bugzilla.conf.txt ├── report_uReport.conf.txt ├── report_uploader.conf.txt ├── reporter-bugzilla.txt ├── reporter-kerneloops.txt ├── reporter-mailx.txt ├── reporter-mantisbt.txt ├── reporter-print.txt ├── reporter-systemd-journal.txt ├── reporter-upload.txt ├── reporter-ureport.txt ├── upload.conf.txt ├── uploader_event.conf.txt └── ureport.conf.txt ├── gen-version ├── libreport-web.pc.in ├── libreport.pc.in ├── libreport.spec ├── m4 └── ld-version-script.m4 ├── po ├── ChangeLog ├── LINGUAS ├── Makefile.in.in ├── Makevars.template ├── POTFILES.in ├── POTFILES.skip ├── af.po ├── ar.po ├── as.po ├── ast.po ├── bg.po ├── bn.po ├── bn_IN.po ├── bs.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fur.po ├── gl.po ├── gu.po ├── he.po ├── hi.po ├── hu.po ├── ia.po ├── id.po ├── it.po ├── ja.po ├── ka.po ├── kk.po ├── km.po ├── kn.po ├── ko.po ├── libreport.pot ├── lt.po ├── lv.po ├── ml.po ├── mr.po ├── nb.po ├── nds.po ├── nl.po ├── nn.po ├── or.po ├── pa.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ru.po ├── si.po ├── sk.po ├── sq.po ├── sr.po ├── sr_Latn.po ├── sv.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── tr.po ├── uk.po ├── ur.po ├── vi.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── src ├── Makefile.am ├── cli │ ├── Makefile.am │ ├── cli-report.c │ ├── cli-report.h │ ├── cli.c │ ├── run-command.c │ └── run-command.h ├── client-python │ ├── Makefile.am │ └── reportclient │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── client.c │ │ ├── clientmodule.c │ │ ├── common.h │ │ ├── debuginfo.py │ │ ├── dnfdebuginfo.py │ │ └── internal │ │ ├── Makefile.am │ │ ├── bz_connection.py │ │ ├── configuration_files.py │ │ ├── const.py │ │ ├── dump_dir.py │ │ ├── global_configuration.py │ │ ├── iso_date_string.py │ │ ├── problem_data.py │ │ ├── problem_formatter.py │ │ ├── problem_utils.py │ │ ├── report_result.py │ │ ├── reported_to.py │ │ └── utils.py ├── gtk-helpers │ ├── Makefile.am │ ├── ask_dialogs.c │ ├── autowrapped_label.c │ ├── config_dialog.c │ ├── desktop-utils.c │ ├── event_config_dialog.c │ ├── hyperlinks.c │ ├── internal_libreport_gtk.h │ ├── libreport-gtk.pc.in │ ├── libreport-gtk.sym │ ├── problem_details_dialog.c │ ├── problem_details_dialog.h │ ├── problem_details_widget.c │ ├── problem_details_widget.h │ ├── problem_utils.h │ ├── search_item.c │ ├── search_item.h │ ├── secrets.c │ ├── test-desktop-utils.c │ ├── utils.c │ └── workflow_config_dialog.c ├── gui-wizard-gtk │ ├── Makefile.am │ ├── forbidden_words.conf │ ├── ignored_elements.conf │ ├── ignored_words.conf │ ├── main.c │ ├── wizard.c │ ├── wizard.glade │ └── wizard.h ├── include │ ├── Makefile.am │ ├── client.h │ ├── config_item_info.h │ ├── dump_dir.h │ ├── event_config.h │ ├── file_obj.h │ ├── global_configuration.h │ ├── internal_libreport.h │ ├── libreport_curl.h │ ├── libreport_types.h │ ├── problem_data.h │ ├── problem_report.h │ ├── report.h │ ├── report_result.h │ ├── reporters.h │ ├── run_event.h │ ├── ureport.h │ ├── workflow.h │ └── xml_parser.h ├── lib │ ├── Makefile.am │ ├── abrt_sock.c │ ├── abrt_types.c │ ├── abrt_xmlrpc.c │ ├── abrt_xmlrpc.h │ ├── append_to_malloced_string.c │ ├── client.c │ ├── compress.c │ ├── concat_path_file.c │ ├── config_item_info.c │ ├── configuration_files.c │ ├── copy_file_recursive.c │ ├── copyfd.c │ ├── create_dump_dir.c │ ├── curl.c │ ├── dirsize.c │ ├── dump_dir.c │ ├── encbase64.c │ ├── event_config.c │ ├── event_xml_parser.c │ ├── file_list.c │ ├── file_obj.c │ ├── get_cmdline.c │ ├── glib_support.c │ ├── global_configuration.c │ ├── is_in_comma_separated_list.c │ ├── is_in_string_list.c │ ├── iso_date_string.c │ ├── libreport-web.sym │ ├── libreport.conf │ ├── libreport.sym │ ├── libreport_init.c │ ├── logging.c │ ├── make_descr.c │ ├── overlapping_strcpy.c │ ├── parse_options.c │ ├── parse_release.c │ ├── problem_data.c │ ├── problem_report.c │ ├── proxies.c │ ├── proxies.h │ ├── read_write.c │ ├── report.c │ ├── report_event.conf │ ├── report_result.c │ ├── reported_to.c │ ├── reporters.c │ ├── run_event.c │ ├── skip_whitespace.c │ ├── spawn.c │ ├── stdio_helpers.c │ ├── steal_directory.c │ ├── strbuf.c │ ├── ureport.c │ ├── uriparser.c │ ├── user_settings.c │ ├── utf8.c │ ├── workflow.c │ ├── workflow_xml_parser.c │ ├── xfuncs.c │ └── xml_parser.c ├── plugins │ ├── Makefile.am │ ├── bugzilla.conf │ ├── bugzilla_anaconda_event.conf │ ├── bugzilla_event.conf │ ├── bugzilla_format.conf │ ├── bugzilla_format_anaconda.conf │ ├── bugzilla_format_analyzer_libreport.conf │ ├── bugzilla_format_kernel.conf │ ├── bugzilla_formatdup.conf │ ├── bugzilla_formatdup_anaconda.conf │ ├── bugzilla_formatdup_analyzer_libreport.conf │ ├── centos_report_event.conf │ ├── mailx.conf │ ├── mailx_event.conf │ ├── mantisbt.c │ ├── mantisbt.conf │ ├── mantisbt.h │ ├── mantisbt_format.conf │ ├── mantisbt_format_analyzer_libreport.conf │ ├── mantisbt_formatdup.conf │ ├── mantisbt_formatdup_analyzer_libreport.conf │ ├── print_event.conf │ ├── python │ │ ├── Makefile.am │ │ ├── fixtures │ │ │ ├── bugzilla.conf │ │ │ ├── bugzilla_format.conf │ │ │ ├── dummy_attachment │ │ │ ├── sample_problem │ │ │ │ ├── .libreport │ │ │ │ │ └── owner │ │ │ │ ├── abrt_version │ │ │ │ ├── analyzer │ │ │ │ ├── architecture │ │ │ │ ├── cgroup │ │ │ │ ├── cmdline │ │ │ │ ├── component │ │ │ │ ├── core_backtrace │ │ │ │ ├── coredump │ │ │ │ ├── count │ │ │ │ ├── cpuinfo │ │ │ │ ├── crash_function │ │ │ │ ├── dso_list │ │ │ │ ├── executable │ │ │ │ ├── journald_cursor │ │ │ │ ├── kernel │ │ │ │ ├── last_occurrence │ │ │ │ ├── limits │ │ │ │ ├── maps │ │ │ │ ├── open_fds │ │ │ │ ├── os_info │ │ │ │ ├── os_release │ │ │ │ ├── package │ │ │ │ ├── pid │ │ │ │ ├── pkg_arch │ │ │ │ ├── pkg_epoch │ │ │ │ ├── pkg_fingerprint │ │ │ │ ├── pkg_name │ │ │ │ ├── pkg_release │ │ │ │ ├── pkg_vendor │ │ │ │ ├── pkg_version │ │ │ │ ├── proc_pid_status │ │ │ │ ├── reason │ │ │ │ ├── rootdir │ │ │ │ ├── runlevel │ │ │ │ ├── time │ │ │ │ ├── type │ │ │ │ ├── uid │ │ │ │ └── uuid │ │ │ └── vcr_cassettes │ │ │ │ ├── add_attachment.yaml │ │ │ │ ├── create_bug.yaml │ │ │ │ └── get_bug.yaml │ │ ├── reporter_bugzilla.py │ │ └── test_reporter_bugzilla.py │ ├── report_Bugzilla.conf │ ├── report_Bugzilla.xml.in.in │ ├── report_CentOSBugTracker.conf │ ├── report_CentOSBugTracker.xml.in │ ├── report_Kerneloops.xml.in │ ├── report_Logger.conf │ ├── report_Logger.xml.in │ ├── report_Mailx.xml.in │ ├── report_Uploader.conf │ ├── report_Uploader.xml.in │ ├── report_uReport.xml.in │ ├── reporter-bugzilla.c │ ├── reporter-kerneloops.c │ ├── reporter-mailx.c │ ├── reporter-mantisbt.c │ ├── reporter-print.c │ ├── reporter-systemd-journal.c │ ├── reporter-upload.c │ ├── reporter-ureport.c │ ├── rhbz.c │ ├── rhbz.h │ ├── upload.conf │ ├── uploader_event.conf │ ├── ureport.conf │ └── watch_Bugzilla.xml.in ├── report-newt │ ├── Makefile.am │ └── report-newt.c ├── report-python │ ├── Makefile.am │ └── report │ │ ├── Makefile.am │ │ ├── README │ │ ├── __init__.py │ │ ├── accountmanager.py │ │ ├── common.h │ │ ├── dump_dir.c │ │ ├── io │ │ ├── GTKIO.py │ │ ├── NewtIO.py │ │ ├── TextIO.py │ │ └── __init__.py │ │ ├── libreport-meh-test.py │ │ ├── problem_data.c │ │ ├── py_report_test.py │ │ ├── pyreport.c │ │ ├── report.c │ │ ├── reportmodule.c │ │ ├── run_event.c │ │ ├── test_dd_create │ │ ├── test_full │ │ ├── test_full2 │ │ ├── test_problem_data │ │ ├── test_problem_data2 │ │ ├── test_run_event_state │ │ ├── test_run_event_state1 │ │ ├── test_setroubleshoot_example │ │ └── test_setroubleshoot_example2 └── workflows │ ├── Makefile.am │ ├── anaconda_event.conf │ ├── report_centos.conf │ ├── report_fedora.conf │ ├── report_logger.conf │ ├── report_mailx.conf │ ├── report_rhel_bugzilla.conf │ ├── report_uReport.conf │ ├── report_uploader.conf │ ├── workflow_AnacondaFedora.xml.in │ ├── workflow_AnacondaRHELBugzilla.xml.in │ ├── workflow_AnacondaUpload.xml.in │ ├── workflow_CentOSCCpp.xml.in │ ├── workflow_CentOSJava.xml.in │ ├── workflow_CentOSJavaScript.xml.in │ ├── workflow_CentOSKerneloops.xml.in │ ├── workflow_CentOSLibreport.xml.in │ ├── workflow_CentOSPython.xml.in │ ├── workflow_CentOSPython3.xml.in │ ├── workflow_CentOSVmcore.xml.in │ ├── workflow_CentOSXorg.xml.in │ ├── workflow_FedoraCCpp.xml.in │ ├── workflow_FedoraJava.xml.in │ ├── workflow_FedoraJavaScript.xml.in │ ├── workflow_FedoraKerneloops.xml.in │ ├── workflow_FedoraLibreport.xml.in │ ├── workflow_FedoraPython.xml.in │ ├── workflow_FedoraPython3.xml.in │ ├── workflow_FedoraVmcore.xml.in │ ├── workflow_FedoraXorg.xml.in │ ├── workflow_Logger.xml.in │ ├── workflow_LoggerCCpp.xml.in │ ├── workflow_Mailx.xml.in │ ├── workflow_MailxCCpp.xml.in │ ├── workflow_RHELBugzillaCCpp.xml.in │ ├── workflow_RHELBugzillaJava.xml.in │ ├── workflow_RHELBugzillaJavaScript.xml.in │ ├── workflow_RHELBugzillaKerneloops.xml.in │ ├── workflow_RHELBugzillaLibreport.xml.in │ ├── workflow_RHELBugzillaPython.xml.in │ ├── workflow_RHELBugzillaVmcore.xml.in │ ├── workflow_RHELBugzillaXorg.xml.in │ ├── workflow_Upload.xml.in │ ├── workflow_UploadCCpp.xml.in │ └── workflow_uReport.xml.in └── tests ├── Makefile.am ├── atlocal.in ├── bugzilla_plugin.at.in ├── client.at ├── client_python.at ├── compress.c ├── conf ├── default │ ├── file.conf │ └── test_ignored.conf ├── event_implicit_no_support_restricted.xml ├── event_no_support_restricted.xml ├── event_support_restricted_no_option.xml ├── event_support_restricted_with_option.xml ├── event_test_definition.xml ├── first │ └── file.conf ├── second │ └── file.conf └── workflow_test_definition.xml ├── configuration_files.at ├── data ├── compressed-file ├── compressed-file.lz4 ├── compressed-file.xz └── compressed-file.zst ├── dump_dir.at ├── event_config.at ├── forbidden_words.at ├── glib_helpers.at ├── global_config.at ├── gtk-meh-test.py ├── helpers ├── testsuite.h └── testsuite_tools.h ├── is_text_file.at ├── iso_date.at ├── libreport_types.at ├── load_rule_list.at ├── local.at ├── make_description.at ├── mock_bugzilla_server ├── mock_bugzilla_server.py └── products.json ├── newt-meh-test.py ├── osinfo.at ├── osrelease.at ├── problem_data.at ├── problem_report.at ├── proc_helpers.at ├── report_python.at ├── report_result.at ├── reported_to.at ├── rules ├── comments ├── conditions ├── consecutive_events ├── empty ├── include_multiple ├── include_right_after_event ├── include_simple ├── newline_condition ├── newline_in_event ├── oneline ├── only_comments └── simple ├── sample_problems ├── 1 │ ├── architecture │ ├── backtrace │ ├── component │ ├── time │ └── type ├── 2 │ ├── architecture │ ├── component │ ├── time │ └── type └── 3 │ ├── architecture │ ├── component │ ├── time │ └── type ├── sitem.at ├── strbuf.at ├── string_list.at ├── taghyperlinks.at ├── testsuite.at ├── ureport.at ├── ureport └── certs │ ├── correct │ ├── cert.pem │ └── key.pem │ ├── only_cert │ └── cert.pem │ └── only_key │ └── key.pem ├── uriparser.at ├── valgrind.supp ├── xfuncs.at └── xml_definition.at /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.git-commit-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/.git-commit-template -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/.gitignore -------------------------------------------------------------------------------- /.packit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/.packit.yml -------------------------------------------------------------------------------- /.tito/custom/abrt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/.tito/custom/abrt/__init__.py -------------------------------------------------------------------------------- /.tito/packages/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/.tito/packages/.readme -------------------------------------------------------------------------------- /.tito/packages/libreport: -------------------------------------------------------------------------------- 1 | 2.17.15 ./ 2 | -------------------------------------------------------------------------------- /.tito/releasers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/.tito/releasers.conf -------------------------------------------------------------------------------- /.tito/tito.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/.tito/tito.props -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/COPYING -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/HACKING.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/README.md -------------------------------------------------------------------------------- /apidoc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/apidoc/Doxyfile.in -------------------------------------------------------------------------------- /apidoc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/apidoc/Makefile.am -------------------------------------------------------------------------------- /apidoc/html/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/apidoc/html/Makefile.am -------------------------------------------------------------------------------- /asciidoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/asciidoc.conf -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/configure.ac -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = augeas 2 | -------------------------------------------------------------------------------- /data/augeas/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/data/augeas/Makefile.am -------------------------------------------------------------------------------- /data/augeas/libreport.aug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/data/augeas/libreport.aug -------------------------------------------------------------------------------- /data/augeas/test_libreport.aug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/data/augeas/test_libreport.aug -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/anaconda_event.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/anaconda_event.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla_anaconda_event.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla_anaconda_event.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla_event.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla_event.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla_format.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla_format.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla_format_anaconda.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla_format_anaconda.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla_format_analyzer_libreport.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla_format_analyzer_libreport.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla_format_kernel.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla_format_kernel.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla_formatdup.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla_formatdup.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla_formatdup_anaconda.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla_formatdup_anaconda.conf.txt -------------------------------------------------------------------------------- /doc/bugzilla_formatdup_analyzer_libreport.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/bugzilla_formatdup_analyzer_libreport.conf.txt -------------------------------------------------------------------------------- /doc/centos_report_event.conf.5: -------------------------------------------------------------------------------- 1 | .so man5/report_event.conf.5 2 | -------------------------------------------------------------------------------- /doc/forbidden_words.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/forbidden_words.conf.txt -------------------------------------------------------------------------------- /doc/ignored_elements.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/ignored_elements.conf.txt -------------------------------------------------------------------------------- /doc/ignored_words.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/ignored_words.conf.txt -------------------------------------------------------------------------------- /doc/libreport.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/libreport.conf.txt -------------------------------------------------------------------------------- /doc/mailx.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/mailx.conf.txt -------------------------------------------------------------------------------- /doc/mailx_event.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/mailx_event.conf.txt -------------------------------------------------------------------------------- /doc/mantisbt.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/mantisbt.conf.txt -------------------------------------------------------------------------------- /doc/mantisbt_format.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/mantisbt_format.conf.txt -------------------------------------------------------------------------------- /doc/mantisbt_format_analyzer_libreport.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/mantisbt_format_analyzer_libreport.conf.txt -------------------------------------------------------------------------------- /doc/mantisbt_formatdup.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/mantisbt_formatdup.conf.txt -------------------------------------------------------------------------------- /doc/mantisbt_formatdup_analyzer_libreport.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/mantisbt_formatdup_analyzer_libreport.conf.txt -------------------------------------------------------------------------------- /doc/print_event.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/print_event.conf.txt -------------------------------------------------------------------------------- /doc/report-cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report-cli.txt -------------------------------------------------------------------------------- /doc/report-gtk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report-gtk.txt -------------------------------------------------------------------------------- /doc/report-newt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report-newt.txt -------------------------------------------------------------------------------- /doc/report_Bugzilla.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_Bugzilla.conf.txt -------------------------------------------------------------------------------- /doc/report_CentOSBugTracker.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_CentOSBugTracker.conf.txt -------------------------------------------------------------------------------- /doc/report_Logger.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_Logger.conf.txt -------------------------------------------------------------------------------- /doc/report_Uploader.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_Uploader.conf.txt -------------------------------------------------------------------------------- /doc/report_centos.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_centos.conf.txt -------------------------------------------------------------------------------- /doc/report_event.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_event.conf.txt -------------------------------------------------------------------------------- /doc/report_fedora.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_fedora.conf.txt -------------------------------------------------------------------------------- /doc/report_logger.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_logger.conf.txt -------------------------------------------------------------------------------- /doc/report_mailx.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_mailx.conf.txt -------------------------------------------------------------------------------- /doc/report_rhel_bugzilla.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_rhel_bugzilla.conf.txt -------------------------------------------------------------------------------- /doc/report_uReport.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_uReport.conf.txt -------------------------------------------------------------------------------- /doc/report_uploader.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/report_uploader.conf.txt -------------------------------------------------------------------------------- /doc/reporter-bugzilla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/reporter-bugzilla.txt -------------------------------------------------------------------------------- /doc/reporter-kerneloops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/reporter-kerneloops.txt -------------------------------------------------------------------------------- /doc/reporter-mailx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/reporter-mailx.txt -------------------------------------------------------------------------------- /doc/reporter-mantisbt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/reporter-mantisbt.txt -------------------------------------------------------------------------------- /doc/reporter-print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/reporter-print.txt -------------------------------------------------------------------------------- /doc/reporter-systemd-journal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/reporter-systemd-journal.txt -------------------------------------------------------------------------------- /doc/reporter-upload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/reporter-upload.txt -------------------------------------------------------------------------------- /doc/reporter-ureport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/reporter-ureport.txt -------------------------------------------------------------------------------- /doc/upload.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/upload.conf.txt -------------------------------------------------------------------------------- /doc/uploader_event.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/uploader_event.conf.txt -------------------------------------------------------------------------------- /doc/ureport.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/doc/ureport.conf.txt -------------------------------------------------------------------------------- /gen-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/gen-version -------------------------------------------------------------------------------- /libreport-web.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/libreport-web.pc.in -------------------------------------------------------------------------------- /libreport.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/libreport.pc.in -------------------------------------------------------------------------------- /libreport.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/libreport.spec -------------------------------------------------------------------------------- /m4/ld-version-script.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/m4/ld-version-script.m4 -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/Makefile.in.in -------------------------------------------------------------------------------- /po/Makevars.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/Makevars.template -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/af.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/as.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/fur.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/gu.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ia.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/km.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/libreport.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/libreport.pot -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/nds.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr_Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/sr_Latn.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/te.po -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/tg.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/ur.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/cli/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/cli/Makefile.am -------------------------------------------------------------------------------- /src/cli/cli-report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/cli/cli-report.c -------------------------------------------------------------------------------- /src/cli/cli-report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/cli/cli-report.h -------------------------------------------------------------------------------- /src/cli/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/cli/cli.c -------------------------------------------------------------------------------- /src/cli/run-command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/cli/run-command.c -------------------------------------------------------------------------------- /src/cli/run-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/cli/run-command.h -------------------------------------------------------------------------------- /src/client-python/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = reportclient 2 | -------------------------------------------------------------------------------- /src/client-python/reportclient/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/Makefile.am -------------------------------------------------------------------------------- /src/client-python/reportclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/__init__.py -------------------------------------------------------------------------------- /src/client-python/reportclient/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/client.c -------------------------------------------------------------------------------- /src/client-python/reportclient/clientmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/clientmodule.c -------------------------------------------------------------------------------- /src/client-python/reportclient/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/common.h -------------------------------------------------------------------------------- /src/client-python/reportclient/debuginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/debuginfo.py -------------------------------------------------------------------------------- /src/client-python/reportclient/dnfdebuginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/dnfdebuginfo.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/Makefile.am -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/bz_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/bz_connection.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/configuration_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/configuration_files.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/const.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/dump_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/dump_dir.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/global_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/global_configuration.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/iso_date_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/iso_date_string.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/problem_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/problem_data.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/problem_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/problem_formatter.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/problem_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/problem_utils.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/report_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/report_result.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/reported_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/reported_to.py -------------------------------------------------------------------------------- /src/client-python/reportclient/internal/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/client-python/reportclient/internal/utils.py -------------------------------------------------------------------------------- /src/gtk-helpers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/Makefile.am -------------------------------------------------------------------------------- /src/gtk-helpers/ask_dialogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/ask_dialogs.c -------------------------------------------------------------------------------- /src/gtk-helpers/autowrapped_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/autowrapped_label.c -------------------------------------------------------------------------------- /src/gtk-helpers/config_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/config_dialog.c -------------------------------------------------------------------------------- /src/gtk-helpers/desktop-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/desktop-utils.c -------------------------------------------------------------------------------- /src/gtk-helpers/event_config_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/event_config_dialog.c -------------------------------------------------------------------------------- /src/gtk-helpers/hyperlinks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/hyperlinks.c -------------------------------------------------------------------------------- /src/gtk-helpers/internal_libreport_gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/internal_libreport_gtk.h -------------------------------------------------------------------------------- /src/gtk-helpers/libreport-gtk.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/libreport-gtk.pc.in -------------------------------------------------------------------------------- /src/gtk-helpers/libreport-gtk.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/libreport-gtk.sym -------------------------------------------------------------------------------- /src/gtk-helpers/problem_details_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/problem_details_dialog.c -------------------------------------------------------------------------------- /src/gtk-helpers/problem_details_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/problem_details_dialog.h -------------------------------------------------------------------------------- /src/gtk-helpers/problem_details_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/problem_details_widget.c -------------------------------------------------------------------------------- /src/gtk-helpers/problem_details_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/problem_details_widget.h -------------------------------------------------------------------------------- /src/gtk-helpers/problem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/problem_utils.h -------------------------------------------------------------------------------- /src/gtk-helpers/search_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/search_item.c -------------------------------------------------------------------------------- /src/gtk-helpers/search_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/search_item.h -------------------------------------------------------------------------------- /src/gtk-helpers/secrets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/secrets.c -------------------------------------------------------------------------------- /src/gtk-helpers/test-desktop-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/test-desktop-utils.c -------------------------------------------------------------------------------- /src/gtk-helpers/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/utils.c -------------------------------------------------------------------------------- /src/gtk-helpers/workflow_config_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gtk-helpers/workflow_config_dialog.c -------------------------------------------------------------------------------- /src/gui-wizard-gtk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gui-wizard-gtk/Makefile.am -------------------------------------------------------------------------------- /src/gui-wizard-gtk/forbidden_words.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gui-wizard-gtk/forbidden_words.conf -------------------------------------------------------------------------------- /src/gui-wizard-gtk/ignored_elements.conf: -------------------------------------------------------------------------------- 1 | cpuinfo 2 | open_fds -------------------------------------------------------------------------------- /src/gui-wizard-gtk/ignored_words.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gui-wizard-gtk/ignored_words.conf -------------------------------------------------------------------------------- /src/gui-wizard-gtk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gui-wizard-gtk/main.c -------------------------------------------------------------------------------- /src/gui-wizard-gtk/wizard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gui-wizard-gtk/wizard.c -------------------------------------------------------------------------------- /src/gui-wizard-gtk/wizard.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gui-wizard-gtk/wizard.glade -------------------------------------------------------------------------------- /src/gui-wizard-gtk/wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/gui-wizard-gtk/wizard.h -------------------------------------------------------------------------------- /src/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/Makefile.am -------------------------------------------------------------------------------- /src/include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/client.h -------------------------------------------------------------------------------- /src/include/config_item_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/config_item_info.h -------------------------------------------------------------------------------- /src/include/dump_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/dump_dir.h -------------------------------------------------------------------------------- /src/include/event_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/event_config.h -------------------------------------------------------------------------------- /src/include/file_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/file_obj.h -------------------------------------------------------------------------------- /src/include/global_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/global_configuration.h -------------------------------------------------------------------------------- /src/include/internal_libreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/internal_libreport.h -------------------------------------------------------------------------------- /src/include/libreport_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/libreport_curl.h -------------------------------------------------------------------------------- /src/include/libreport_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/libreport_types.h -------------------------------------------------------------------------------- /src/include/problem_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/problem_data.h -------------------------------------------------------------------------------- /src/include/problem_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/problem_report.h -------------------------------------------------------------------------------- /src/include/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/report.h -------------------------------------------------------------------------------- /src/include/report_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/report_result.h -------------------------------------------------------------------------------- /src/include/reporters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/reporters.h -------------------------------------------------------------------------------- /src/include/run_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/run_event.h -------------------------------------------------------------------------------- /src/include/ureport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/ureport.h -------------------------------------------------------------------------------- /src/include/workflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/workflow.h -------------------------------------------------------------------------------- /src/include/xml_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/include/xml_parser.h -------------------------------------------------------------------------------- /src/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/Makefile.am -------------------------------------------------------------------------------- /src/lib/abrt_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/abrt_sock.c -------------------------------------------------------------------------------- /src/lib/abrt_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/abrt_types.c -------------------------------------------------------------------------------- /src/lib/abrt_xmlrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/abrt_xmlrpc.c -------------------------------------------------------------------------------- /src/lib/abrt_xmlrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/abrt_xmlrpc.h -------------------------------------------------------------------------------- /src/lib/append_to_malloced_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/append_to_malloced_string.c -------------------------------------------------------------------------------- /src/lib/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/client.c -------------------------------------------------------------------------------- /src/lib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/compress.c -------------------------------------------------------------------------------- /src/lib/concat_path_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/concat_path_file.c -------------------------------------------------------------------------------- /src/lib/config_item_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/config_item_info.c -------------------------------------------------------------------------------- /src/lib/configuration_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/configuration_files.c -------------------------------------------------------------------------------- /src/lib/copy_file_recursive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/copy_file_recursive.c -------------------------------------------------------------------------------- /src/lib/copyfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/copyfd.c -------------------------------------------------------------------------------- /src/lib/create_dump_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/create_dump_dir.c -------------------------------------------------------------------------------- /src/lib/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/curl.c -------------------------------------------------------------------------------- /src/lib/dirsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/dirsize.c -------------------------------------------------------------------------------- /src/lib/dump_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/dump_dir.c -------------------------------------------------------------------------------- /src/lib/encbase64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/encbase64.c -------------------------------------------------------------------------------- /src/lib/event_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/event_config.c -------------------------------------------------------------------------------- /src/lib/event_xml_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/event_xml_parser.c -------------------------------------------------------------------------------- /src/lib/file_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/file_list.c -------------------------------------------------------------------------------- /src/lib/file_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/file_obj.c -------------------------------------------------------------------------------- /src/lib/get_cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/get_cmdline.c -------------------------------------------------------------------------------- /src/lib/glib_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/glib_support.c -------------------------------------------------------------------------------- /src/lib/global_configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/global_configuration.c -------------------------------------------------------------------------------- /src/lib/is_in_comma_separated_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/is_in_comma_separated_list.c -------------------------------------------------------------------------------- /src/lib/is_in_string_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/is_in_string_list.c -------------------------------------------------------------------------------- /src/lib/iso_date_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/iso_date_string.c -------------------------------------------------------------------------------- /src/lib/libreport-web.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/libreport-web.sym -------------------------------------------------------------------------------- /src/lib/libreport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/libreport.conf -------------------------------------------------------------------------------- /src/lib/libreport.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/libreport.sym -------------------------------------------------------------------------------- /src/lib/libreport_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/libreport_init.c -------------------------------------------------------------------------------- /src/lib/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/logging.c -------------------------------------------------------------------------------- /src/lib/make_descr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/make_descr.c -------------------------------------------------------------------------------- /src/lib/overlapping_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/overlapping_strcpy.c -------------------------------------------------------------------------------- /src/lib/parse_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/parse_options.c -------------------------------------------------------------------------------- /src/lib/parse_release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/parse_release.c -------------------------------------------------------------------------------- /src/lib/problem_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/problem_data.c -------------------------------------------------------------------------------- /src/lib/problem_report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/problem_report.c -------------------------------------------------------------------------------- /src/lib/proxies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/proxies.c -------------------------------------------------------------------------------- /src/lib/proxies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/proxies.h -------------------------------------------------------------------------------- /src/lib/read_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/read_write.c -------------------------------------------------------------------------------- /src/lib/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/report.c -------------------------------------------------------------------------------- /src/lib/report_event.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/report_event.conf -------------------------------------------------------------------------------- /src/lib/report_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/report_result.c -------------------------------------------------------------------------------- /src/lib/reported_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/reported_to.c -------------------------------------------------------------------------------- /src/lib/reporters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/reporters.c -------------------------------------------------------------------------------- /src/lib/run_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/run_event.c -------------------------------------------------------------------------------- /src/lib/skip_whitespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/skip_whitespace.c -------------------------------------------------------------------------------- /src/lib/spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/spawn.c -------------------------------------------------------------------------------- /src/lib/stdio_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/stdio_helpers.c -------------------------------------------------------------------------------- /src/lib/steal_directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/steal_directory.c -------------------------------------------------------------------------------- /src/lib/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/strbuf.c -------------------------------------------------------------------------------- /src/lib/ureport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/ureport.c -------------------------------------------------------------------------------- /src/lib/uriparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/uriparser.c -------------------------------------------------------------------------------- /src/lib/user_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/user_settings.c -------------------------------------------------------------------------------- /src/lib/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/utf8.c -------------------------------------------------------------------------------- /src/lib/workflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/workflow.c -------------------------------------------------------------------------------- /src/lib/workflow_xml_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/workflow_xml_parser.c -------------------------------------------------------------------------------- /src/lib/xfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/xfuncs.c -------------------------------------------------------------------------------- /src/lib/xml_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/lib/xml_parser.c -------------------------------------------------------------------------------- /src/plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/Makefile.am -------------------------------------------------------------------------------- /src/plugins/bugzilla.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla.conf -------------------------------------------------------------------------------- /src/plugins/bugzilla_anaconda_event.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla_anaconda_event.conf -------------------------------------------------------------------------------- /src/plugins/bugzilla_event.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla_event.conf -------------------------------------------------------------------------------- /src/plugins/bugzilla_format.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla_format.conf -------------------------------------------------------------------------------- /src/plugins/bugzilla_format_anaconda.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla_format_anaconda.conf -------------------------------------------------------------------------------- /src/plugins/bugzilla_format_analyzer_libreport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla_format_analyzer_libreport.conf -------------------------------------------------------------------------------- /src/plugins/bugzilla_format_kernel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla_format_kernel.conf -------------------------------------------------------------------------------- /src/plugins/bugzilla_formatdup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla_formatdup.conf -------------------------------------------------------------------------------- /src/plugins/bugzilla_formatdup_anaconda.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla_formatdup_anaconda.conf -------------------------------------------------------------------------------- /src/plugins/bugzilla_formatdup_analyzer_libreport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/bugzilla_formatdup_analyzer_libreport.conf -------------------------------------------------------------------------------- /src/plugins/centos_report_event.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/centos_report_event.conf -------------------------------------------------------------------------------- /src/plugins/mailx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/mailx.conf -------------------------------------------------------------------------------- /src/plugins/mailx_event.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/mailx_event.conf -------------------------------------------------------------------------------- /src/plugins/mantisbt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/mantisbt.c -------------------------------------------------------------------------------- /src/plugins/mantisbt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/mantisbt.conf -------------------------------------------------------------------------------- /src/plugins/mantisbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/mantisbt.h -------------------------------------------------------------------------------- /src/plugins/mantisbt_format.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/mantisbt_format.conf -------------------------------------------------------------------------------- /src/plugins/mantisbt_format_analyzer_libreport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/mantisbt_format_analyzer_libreport.conf -------------------------------------------------------------------------------- /src/plugins/mantisbt_formatdup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/mantisbt_formatdup.conf -------------------------------------------------------------------------------- /src/plugins/mantisbt_formatdup_analyzer_libreport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/mantisbt_formatdup_analyzer_libreport.conf -------------------------------------------------------------------------------- /src/plugins/print_event.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/print_event.conf -------------------------------------------------------------------------------- /src/plugins/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/Makefile.am -------------------------------------------------------------------------------- /src/plugins/python/fixtures/bugzilla.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/bugzilla.conf -------------------------------------------------------------------------------- /src/plugins/python/fixtures/bugzilla_format.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/bugzilla_format.conf -------------------------------------------------------------------------------- /src/plugins/python/fixtures/dummy_attachment: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/.libreport/owner: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/abrt_version: -------------------------------------------------------------------------------- 1 | 2.15.1 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/analyzer: -------------------------------------------------------------------------------- 1 | abrt-journal-core -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/architecture: -------------------------------------------------------------------------------- 1 | x86_64 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/cgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/cgroup -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/cmdline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/cmdline -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/component: -------------------------------------------------------------------------------- 1 | libreport -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/core_backtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/core_backtrace -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/coredump: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/count: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/cpuinfo -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/crash_function: -------------------------------------------------------------------------------- 1 | read -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/dso_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/dso_list -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/executable: -------------------------------------------------------------------------------- 1 | /usr/bin/reporter-mantisbt -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/journald_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/journald_cursor -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/kernel: -------------------------------------------------------------------------------- 1 | 5.18.5-200.fc36.x86_64 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/last_occurrence: -------------------------------------------------------------------------------- 1 | 1655815326 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/limits -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/maps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/maps -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/open_fds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/open_fds -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/os_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/os_info -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/os_release: -------------------------------------------------------------------------------- 1 | Fedora release 36 (Thirty Six) -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/package: -------------------------------------------------------------------------------- 1 | libreport-plugin-mantisbt-2.17.1-1.fc36 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/pid: -------------------------------------------------------------------------------- 1 | 7005 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/pkg_arch: -------------------------------------------------------------------------------- 1 | x86_64 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/pkg_epoch: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/pkg_fingerprint: -------------------------------------------------------------------------------- 1 | 999F 7CBF 38AB 71F4 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/pkg_name: -------------------------------------------------------------------------------- 1 | libreport-plugin-mantisbt -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/pkg_release: -------------------------------------------------------------------------------- 1 | 1.fc36 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/pkg_vendor: -------------------------------------------------------------------------------- 1 | Fedora Project -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/pkg_version: -------------------------------------------------------------------------------- 1 | 2.17.1 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/proc_pid_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/proc_pid_status -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/reason: -------------------------------------------------------------------------------- 1 | reporter-mantisbt killed by SIGSEGV -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/rootdir: -------------------------------------------------------------------------------- 1 | / -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/runlevel: -------------------------------------------------------------------------------- 1 | N 5 2 | -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/time: -------------------------------------------------------------------------------- 1 | 1655815326 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/type: -------------------------------------------------------------------------------- 1 | CCpp -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/uid: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /src/plugins/python/fixtures/sample_problem/uuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/sample_problem/uuid -------------------------------------------------------------------------------- /src/plugins/python/fixtures/vcr_cassettes/add_attachment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/vcr_cassettes/add_attachment.yaml -------------------------------------------------------------------------------- /src/plugins/python/fixtures/vcr_cassettes/create_bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/vcr_cassettes/create_bug.yaml -------------------------------------------------------------------------------- /src/plugins/python/fixtures/vcr_cassettes/get_bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/fixtures/vcr_cassettes/get_bug.yaml -------------------------------------------------------------------------------- /src/plugins/python/reporter_bugzilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/reporter_bugzilla.py -------------------------------------------------------------------------------- /src/plugins/python/test_reporter_bugzilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/python/test_reporter_bugzilla.py -------------------------------------------------------------------------------- /src/plugins/report_Bugzilla.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_Bugzilla.conf -------------------------------------------------------------------------------- /src/plugins/report_Bugzilla.xml.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_Bugzilla.xml.in.in -------------------------------------------------------------------------------- /src/plugins/report_CentOSBugTracker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_CentOSBugTracker.conf -------------------------------------------------------------------------------- /src/plugins/report_CentOSBugTracker.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_CentOSBugTracker.xml.in -------------------------------------------------------------------------------- /src/plugins/report_Kerneloops.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_Kerneloops.xml.in -------------------------------------------------------------------------------- /src/plugins/report_Logger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_Logger.conf -------------------------------------------------------------------------------- /src/plugins/report_Logger.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_Logger.xml.in -------------------------------------------------------------------------------- /src/plugins/report_Mailx.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_Mailx.xml.in -------------------------------------------------------------------------------- /src/plugins/report_Uploader.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_Uploader.conf -------------------------------------------------------------------------------- /src/plugins/report_Uploader.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_Uploader.xml.in -------------------------------------------------------------------------------- /src/plugins/report_uReport.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/report_uReport.xml.in -------------------------------------------------------------------------------- /src/plugins/reporter-bugzilla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/reporter-bugzilla.c -------------------------------------------------------------------------------- /src/plugins/reporter-kerneloops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/reporter-kerneloops.c -------------------------------------------------------------------------------- /src/plugins/reporter-mailx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/reporter-mailx.c -------------------------------------------------------------------------------- /src/plugins/reporter-mantisbt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/reporter-mantisbt.c -------------------------------------------------------------------------------- /src/plugins/reporter-print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/reporter-print.c -------------------------------------------------------------------------------- /src/plugins/reporter-systemd-journal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/reporter-systemd-journal.c -------------------------------------------------------------------------------- /src/plugins/reporter-upload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/reporter-upload.c -------------------------------------------------------------------------------- /src/plugins/reporter-ureport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/reporter-ureport.c -------------------------------------------------------------------------------- /src/plugins/rhbz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/rhbz.c -------------------------------------------------------------------------------- /src/plugins/rhbz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/rhbz.h -------------------------------------------------------------------------------- /src/plugins/upload.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/upload.conf -------------------------------------------------------------------------------- /src/plugins/uploader_event.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/uploader_event.conf -------------------------------------------------------------------------------- /src/plugins/ureport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/ureport.conf -------------------------------------------------------------------------------- /src/plugins/watch_Bugzilla.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/plugins/watch_Bugzilla.xml.in -------------------------------------------------------------------------------- /src/report-newt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-newt/Makefile.am -------------------------------------------------------------------------------- /src/report-newt/report-newt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-newt/report-newt.c -------------------------------------------------------------------------------- /src/report-python/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = report 2 | -------------------------------------------------------------------------------- /src/report-python/report/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/Makefile.am -------------------------------------------------------------------------------- /src/report-python/report/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/README -------------------------------------------------------------------------------- /src/report-python/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/__init__.py -------------------------------------------------------------------------------- /src/report-python/report/accountmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/accountmanager.py -------------------------------------------------------------------------------- /src/report-python/report/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/common.h -------------------------------------------------------------------------------- /src/report-python/report/dump_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/dump_dir.c -------------------------------------------------------------------------------- /src/report-python/report/io/GTKIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/io/GTKIO.py -------------------------------------------------------------------------------- /src/report-python/report/io/NewtIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/io/NewtIO.py -------------------------------------------------------------------------------- /src/report-python/report/io/TextIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/io/TextIO.py -------------------------------------------------------------------------------- /src/report-python/report/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/io/__init__.py -------------------------------------------------------------------------------- /src/report-python/report/libreport-meh-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/libreport-meh-test.py -------------------------------------------------------------------------------- /src/report-python/report/problem_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/problem_data.c -------------------------------------------------------------------------------- /src/report-python/report/py_report_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/py_report_test.py -------------------------------------------------------------------------------- /src/report-python/report/pyreport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/pyreport.c -------------------------------------------------------------------------------- /src/report-python/report/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/report.c -------------------------------------------------------------------------------- /src/report-python/report/reportmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/reportmodule.c -------------------------------------------------------------------------------- /src/report-python/report/run_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/run_event.c -------------------------------------------------------------------------------- /src/report-python/report/test_dd_create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/test_dd_create -------------------------------------------------------------------------------- /src/report-python/report/test_full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/test_full -------------------------------------------------------------------------------- /src/report-python/report/test_full2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/test_full2 -------------------------------------------------------------------------------- /src/report-python/report/test_problem_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/test_problem_data -------------------------------------------------------------------------------- /src/report-python/report/test_problem_data2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/test_problem_data2 -------------------------------------------------------------------------------- /src/report-python/report/test_run_event_state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/test_run_event_state -------------------------------------------------------------------------------- /src/report-python/report/test_run_event_state1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/test_run_event_state1 -------------------------------------------------------------------------------- /src/report-python/report/test_setroubleshoot_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/test_setroubleshoot_example -------------------------------------------------------------------------------- /src/report-python/report/test_setroubleshoot_example2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/report-python/report/test_setroubleshoot_example2 -------------------------------------------------------------------------------- /src/workflows/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/Makefile.am -------------------------------------------------------------------------------- /src/workflows/anaconda_event.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/anaconda_event.conf -------------------------------------------------------------------------------- /src/workflows/report_centos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/report_centos.conf -------------------------------------------------------------------------------- /src/workflows/report_fedora.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/report_fedora.conf -------------------------------------------------------------------------------- /src/workflows/report_logger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/report_logger.conf -------------------------------------------------------------------------------- /src/workflows/report_mailx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/report_mailx.conf -------------------------------------------------------------------------------- /src/workflows/report_rhel_bugzilla.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/report_rhel_bugzilla.conf -------------------------------------------------------------------------------- /src/workflows/report_uReport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/report_uReport.conf -------------------------------------------------------------------------------- /src/workflows/report_uploader.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/report_uploader.conf -------------------------------------------------------------------------------- /src/workflows/workflow_AnacondaFedora.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_AnacondaFedora.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_AnacondaRHELBugzilla.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_AnacondaRHELBugzilla.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_AnacondaUpload.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_AnacondaUpload.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_CentOSCCpp.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_CentOSCCpp.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_CentOSJava.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_CentOSJava.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_CentOSJavaScript.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_CentOSJavaScript.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_CentOSKerneloops.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_CentOSKerneloops.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_CentOSLibreport.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_CentOSLibreport.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_CentOSPython.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_CentOSPython.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_CentOSPython3.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_CentOSPython3.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_CentOSVmcore.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_CentOSVmcore.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_CentOSXorg.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_CentOSXorg.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_FedoraCCpp.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_FedoraCCpp.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_FedoraJava.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_FedoraJava.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_FedoraJavaScript.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_FedoraJavaScript.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_FedoraKerneloops.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_FedoraKerneloops.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_FedoraLibreport.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_FedoraLibreport.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_FedoraPython.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_FedoraPython.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_FedoraPython3.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_FedoraPython3.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_FedoraVmcore.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_FedoraVmcore.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_FedoraXorg.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_FedoraXorg.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_Logger.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_Logger.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_LoggerCCpp.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_LoggerCCpp.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_Mailx.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_Mailx.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_MailxCCpp.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_MailxCCpp.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_RHELBugzillaCCpp.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_RHELBugzillaCCpp.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_RHELBugzillaJava.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_RHELBugzillaJava.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_RHELBugzillaJavaScript.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_RHELBugzillaJavaScript.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_RHELBugzillaKerneloops.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_RHELBugzillaKerneloops.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_RHELBugzillaLibreport.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_RHELBugzillaLibreport.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_RHELBugzillaPython.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_RHELBugzillaPython.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_RHELBugzillaVmcore.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_RHELBugzillaVmcore.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_RHELBugzillaXorg.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_RHELBugzillaXorg.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_Upload.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_Upload.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_UploadCCpp.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_UploadCCpp.xml.in -------------------------------------------------------------------------------- /src/workflows/workflow_uReport.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/src/workflows/workflow_uReport.xml.in -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/atlocal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/atlocal.in -------------------------------------------------------------------------------- /tests/bugzilla_plugin.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/bugzilla_plugin.at.in -------------------------------------------------------------------------------- /tests/client.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/client.at -------------------------------------------------------------------------------- /tests/client_python.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/client_python.at -------------------------------------------------------------------------------- /tests/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/compress.c -------------------------------------------------------------------------------- /tests/conf/default/file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/conf/default/file.conf -------------------------------------------------------------------------------- /tests/conf/default/test_ignored.conf: -------------------------------------------------------------------------------- 1 | # comment 2 | one 3 | two 4 | three 5 | four 6 | -------------------------------------------------------------------------------- /tests/conf/event_implicit_no_support_restricted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/conf/event_implicit_no_support_restricted.xml -------------------------------------------------------------------------------- /tests/conf/event_no_support_restricted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/conf/event_no_support_restricted.xml -------------------------------------------------------------------------------- /tests/conf/event_support_restricted_no_option.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/conf/event_support_restricted_no_option.xml -------------------------------------------------------------------------------- /tests/conf/event_support_restricted_with_option.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/conf/event_support_restricted_with_option.xml -------------------------------------------------------------------------------- /tests/conf/event_test_definition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/conf/event_test_definition.xml -------------------------------------------------------------------------------- /tests/conf/first/file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/conf/first/file.conf -------------------------------------------------------------------------------- /tests/conf/second/file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/conf/second/file.conf -------------------------------------------------------------------------------- /tests/conf/workflow_test_definition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/conf/workflow_test_definition.xml -------------------------------------------------------------------------------- /tests/configuration_files.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/configuration_files.at -------------------------------------------------------------------------------- /tests/data/compressed-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/data/compressed-file -------------------------------------------------------------------------------- /tests/data/compressed-file.lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/data/compressed-file.lz4 -------------------------------------------------------------------------------- /tests/data/compressed-file.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/data/compressed-file.xz -------------------------------------------------------------------------------- /tests/data/compressed-file.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/data/compressed-file.zst -------------------------------------------------------------------------------- /tests/dump_dir.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/dump_dir.at -------------------------------------------------------------------------------- /tests/event_config.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/event_config.at -------------------------------------------------------------------------------- /tests/forbidden_words.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/forbidden_words.at -------------------------------------------------------------------------------- /tests/glib_helpers.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/glib_helpers.at -------------------------------------------------------------------------------- /tests/global_config.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/global_config.at -------------------------------------------------------------------------------- /tests/gtk-meh-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/gtk-meh-test.py -------------------------------------------------------------------------------- /tests/helpers/testsuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/helpers/testsuite.h -------------------------------------------------------------------------------- /tests/helpers/testsuite_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/helpers/testsuite_tools.h -------------------------------------------------------------------------------- /tests/is_text_file.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/is_text_file.at -------------------------------------------------------------------------------- /tests/iso_date.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/iso_date.at -------------------------------------------------------------------------------- /tests/libreport_types.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/libreport_types.at -------------------------------------------------------------------------------- /tests/load_rule_list.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/load_rule_list.at -------------------------------------------------------------------------------- /tests/local.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/local.at -------------------------------------------------------------------------------- /tests/make_description.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/make_description.at -------------------------------------------------------------------------------- /tests/mock_bugzilla_server/mock_bugzilla_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/mock_bugzilla_server/mock_bugzilla_server.py -------------------------------------------------------------------------------- /tests/mock_bugzilla_server/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/mock_bugzilla_server/products.json -------------------------------------------------------------------------------- /tests/newt-meh-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/newt-meh-test.py -------------------------------------------------------------------------------- /tests/osinfo.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/osinfo.at -------------------------------------------------------------------------------- /tests/osrelease.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/osrelease.at -------------------------------------------------------------------------------- /tests/problem_data.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/problem_data.at -------------------------------------------------------------------------------- /tests/problem_report.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/problem_report.at -------------------------------------------------------------------------------- /tests/proc_helpers.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/proc_helpers.at -------------------------------------------------------------------------------- /tests/report_python.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/report_python.at -------------------------------------------------------------------------------- /tests/report_result.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/report_result.at -------------------------------------------------------------------------------- /tests/reported_to.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/reported_to.at -------------------------------------------------------------------------------- /tests/rules/comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/rules/comments -------------------------------------------------------------------------------- /tests/rules/conditions: -------------------------------------------------------------------------------- 1 | EVENT=test t=t x=2 a=3 2 | echo 'yes' 3 | -------------------------------------------------------------------------------- /tests/rules/consecutive_events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/rules/consecutive_events -------------------------------------------------------------------------------- /tests/rules/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/rules/include_multiple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/rules/include_multiple -------------------------------------------------------------------------------- /tests/rules/include_right_after_event: -------------------------------------------------------------------------------- 1 | EVENT=report-gui 2 | echo 'yes' 3 | include oneline 4 | -------------------------------------------------------------------------------- /tests/rules/include_simple: -------------------------------------------------------------------------------- 1 | include simple 2 | -------------------------------------------------------------------------------- /tests/rules/newline_condition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/rules/newline_condition -------------------------------------------------------------------------------- /tests/rules/newline_in_event: -------------------------------------------------------------------------------- 1 | EVENT=report-gui 2 | 3 | echo 'yes' 4 | -------------------------------------------------------------------------------- /tests/rules/oneline: -------------------------------------------------------------------------------- 1 | EVENT=report-gui command 2 | -------------------------------------------------------------------------------- /tests/rules/only_comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/rules/only_comments -------------------------------------------------------------------------------- /tests/rules/simple: -------------------------------------------------------------------------------- 1 | EVENT=report-gui 2 | echo 'yes' 3 | -------------------------------------------------------------------------------- /tests/sample_problems/1/architecture: -------------------------------------------------------------------------------- 1 | x86_64 -------------------------------------------------------------------------------- /tests/sample_problems/1/backtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/sample_problems/1/backtrace -------------------------------------------------------------------------------- /tests/sample_problems/1/component: -------------------------------------------------------------------------------- 1 | gdb 2 | -------------------------------------------------------------------------------- /tests/sample_problems/1/time: -------------------------------------------------------------------------------- 1 | 1593515258 2 | -------------------------------------------------------------------------------- /tests/sample_problems/1/type: -------------------------------------------------------------------------------- 1 | CCpp -------------------------------------------------------------------------------- /tests/sample_problems/2/architecture: -------------------------------------------------------------------------------- 1 | x86_64 -------------------------------------------------------------------------------- /tests/sample_problems/2/component: -------------------------------------------------------------------------------- 1 | gdb 2 | -------------------------------------------------------------------------------- /tests/sample_problems/2/time: -------------------------------------------------------------------------------- 1 | 1593515260 2 | -------------------------------------------------------------------------------- /tests/sample_problems/2/type: -------------------------------------------------------------------------------- 1 | CCpp -------------------------------------------------------------------------------- /tests/sample_problems/3/architecture: -------------------------------------------------------------------------------- 1 | x86_64 -------------------------------------------------------------------------------- /tests/sample_problems/3/component: -------------------------------------------------------------------------------- 1 | afmw 2 | -------------------------------------------------------------------------------- /tests/sample_problems/3/time: -------------------------------------------------------------------------------- 1 | 1593515300 2 | -------------------------------------------------------------------------------- /tests/sample_problems/3/type: -------------------------------------------------------------------------------- 1 | CCpp -------------------------------------------------------------------------------- /tests/sitem.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/sitem.at -------------------------------------------------------------------------------- /tests/strbuf.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/strbuf.at -------------------------------------------------------------------------------- /tests/string_list.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/string_list.at -------------------------------------------------------------------------------- /tests/taghyperlinks.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/taghyperlinks.at -------------------------------------------------------------------------------- /tests/testsuite.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/testsuite.at -------------------------------------------------------------------------------- /tests/ureport.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/ureport.at -------------------------------------------------------------------------------- /tests/ureport/certs/correct/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/ureport/certs/correct/cert.pem -------------------------------------------------------------------------------- /tests/ureport/certs/correct/key.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ureport/certs/only_cert/cert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ureport/certs/only_key/key.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/uriparser.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/uriparser.at -------------------------------------------------------------------------------- /tests/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/valgrind.supp -------------------------------------------------------------------------------- /tests/xfuncs.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/xfuncs.at -------------------------------------------------------------------------------- /tests/xml_definition.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrt/libreport/HEAD/tests/xml_definition.at --------------------------------------------------------------------------------