summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-11-13 14:27:34 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-11-13 14:27:34 +0100
commit0e0aa3788dc3f2bf91f566fee6b695d0cd9939f4 (patch)
tree96f9e1fb64b8a9164b033b3f30d8c504b5b36a92 /lib
parentfd0d2cbd24a70089f292feae2dd091b1dd693dfa (diff)
downloadabrt-0e0aa3788dc3f2bf91f566fee6b695d0cd9939f4.tar.gz
abrt-0e0aa3788dc3f2bf91f566fee6b695d0cd9939f4.tar.xz
abrt-0e0aa3788dc3f2bf91f566fee6b695d0cd9939f4.zip
make plugin descriptions more consistent in style
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Plugins/Bugzilla.cpp3
-rw-r--r--lib/Plugins/CCpp.cpp2
-rw-r--r--lib/Plugins/Catcut.cpp2
-rw-r--r--lib/Plugins/Kerneloops.cpp2
-rw-r--r--lib/Plugins/KerneloopsReporter.cpp2
-rw-r--r--lib/Plugins/KerneloopsScanner.cpp4
-rw-r--r--lib/Plugins/Logger.cpp2
-rw-r--r--lib/Plugins/Mailx.cpp2
-rw-r--r--lib/Plugins/Python.cpp2
-rw-r--r--lib/Plugins/RunApp.cpp3
-rw-r--r--lib/Plugins/SOSreport.cpp2
-rw-r--r--lib/Plugins/SQLite3.cpp2
-rw-r--r--lib/Plugins/TicketUploader.cpp4
13 files changed, 15 insertions, 17 deletions
diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp
index 06f93342..1e79a665 100644
--- a/lib/Plugins/Bugzilla.cpp
+++ b/lib/Plugins/Bugzilla.cpp
@@ -527,8 +527,7 @@ PLUGIN_INFO(REPORTER,
CReporterBugzilla,
"Bugzilla",
"0.0.4",
- "Check if a bug isn't already reported in a bugzilla "
- "and if not, report it.",
+ "Reports bugs to bugzilla",
"npajkovs@redhat.com",
"https://fedorahosted.org/abrt/wiki",
PLUGINS_LIB_DIR"/Bugzilla.GTKBuilder");
diff --git a/lib/Plugins/CCpp.cpp b/lib/Plugins/CCpp.cpp
index 82c5677d..da6ff980 100644
--- a/lib/Plugins/CCpp.cpp
+++ b/lib/Plugins/CCpp.cpp
@@ -1016,7 +1016,7 @@ PLUGIN_INFO(ANALYZER,
CAnalyzerCCpp,
"CCpp",
"0.0.1",
- "Simple C/C++ analyzer plugin.",
+ "Analyzes crashes in C/C++ programs",
"zprikryl@redhat.com",
"https://fedorahosted.org/abrt/wiki",
"");
diff --git a/lib/Plugins/Catcut.cpp b/lib/Plugins/Catcut.cpp
index e6d16b4f..7fd6e898 100644
--- a/lib/Plugins/Catcut.cpp
+++ b/lib/Plugins/Catcut.cpp
@@ -573,7 +573,7 @@ PLUGIN_INFO(REPORTER,
CReporterCatcut,
"Catcut",
"0.0.1",
- "Test plugin to report bugs to catcut and if not, report it.",
+ "Reports bugs to catcut",
"dvlasenk@redhat.com",
"https://fedorahosted.org/abrt/wiki",
PLUGINS_LIB_DIR"/Catcut.GTKBuilder");
diff --git a/lib/Plugins/Kerneloops.cpp b/lib/Plugins/Kerneloops.cpp
index b99183c3..2e28cf4a 100644
--- a/lib/Plugins/Kerneloops.cpp
+++ b/lib/Plugins/Kerneloops.cpp
@@ -67,7 +67,7 @@ PLUGIN_INFO(ANALYZER,
CAnalyzerKerneloops,
"Kerneloops",
"0.0.2",
- "Abrt's Kerneloops plugin.",
+ "Analyzes kernel oopses",
"anton@redhat.com",
"https://people.redhat.com/aarapov",
"");
diff --git a/lib/Plugins/KerneloopsReporter.cpp b/lib/Plugins/KerneloopsReporter.cpp
index f7a6cbb8..f38f5031 100644
--- a/lib/Plugins/KerneloopsReporter.cpp
+++ b/lib/Plugins/KerneloopsReporter.cpp
@@ -140,7 +140,7 @@ PLUGIN_INFO(REPORTER,
CKerneloopsReporter,
"KerneloopsReporter",
"0.0.1",
- "Sends the Kerneloops crash information to Kerneloops.org",
+ "Sends kernel oops information to kerneloops.org",
"anton@redhat.com",
"http://people.redhat.com/aarapov",
PLUGINS_LIB_DIR"/KerneloopsReporter.GTKBuilder");
diff --git a/lib/Plugins/KerneloopsScanner.cpp b/lib/Plugins/KerneloopsScanner.cpp
index 8c8cd4b9..3831f9e6 100644
--- a/lib/Plugins/KerneloopsScanner.cpp
+++ b/lib/Plugins/KerneloopsScanner.cpp
@@ -163,7 +163,7 @@ int CKerneloopsScanner::ScanSysLogFile(const char *filename)
*/
sz = statb.st_size + 1024;
if (statb.st_size > (32*1024*1024 - 1024)) {
- xlseek(fd, -(32*1024*1024 - 1024), SEEK_END);
+ xlseek(fd, statb.st_size - (32*1024*1024 - 1024), SEEK_SET);
sz = 32*1024*1024;
}
buffer = (char*)xzalloc(sz);
@@ -184,7 +184,7 @@ PLUGIN_INFO(ACTION,
CKerneloopsScanner,
"KerneloopsScanner",
"0.0.1",
- "Save new Kerneloops crashes into debug dump dir",
+ "Periodically scans for and saves kernel oopses",
"anton@redhat.com",
"http://people.redhat.com/aarapov",
"");
diff --git a/lib/Plugins/Logger.cpp b/lib/Plugins/Logger.cpp
index 6babc732..7267b648 100644
--- a/lib/Plugins/Logger.cpp
+++ b/lib/Plugins/Logger.cpp
@@ -91,7 +91,7 @@ PLUGIN_INFO(REPORTER,
CLogger,
"Logger",
"0.0.1",
- "Write a report to a specific file",
+ "Writes report to a file",
"zprikryl@redhat.com",
"https://fedorahosted.org/abrt/wiki",
PLUGINS_LIB_DIR"/Logger.GTKBuilder");
diff --git a/lib/Plugins/Mailx.cpp b/lib/Plugins/Mailx.cpp
index e20d61e3..32eeb25c 100644
--- a/lib/Plugins/Mailx.cpp
+++ b/lib/Plugins/Mailx.cpp
@@ -217,7 +217,7 @@ PLUGIN_INFO(REPORTER,
CMailx,
"Mailx",
"0.0.2",
- "Sends an email with a report via mailx command",
+ "Sends an email with a report (via mailx command)",
"zprikryl@redhat.com",
"https://fedorahosted.org/abrt/wiki",
PLUGINS_LIB_DIR"/Mailx.GTKBuilder");
diff --git a/lib/Plugins/Python.cpp b/lib/Plugins/Python.cpp
index 9fb78808..a5e9909d 100644
--- a/lib/Plugins/Python.cpp
+++ b/lib/Plugins/Python.cpp
@@ -51,7 +51,7 @@ PLUGIN_INFO(ANALYZER,
CAnalyzerPython,
"Python",
"0.0.1",
- "Simple Python analyzer plugin.",
+ "Analyzes crashes in Python programs",
"zprikryl@redhat.com, jmoskovc@redhat.com",
"https://fedorahosted.org/abrt/wiki",
"");
diff --git a/lib/Plugins/RunApp.cpp b/lib/Plugins/RunApp.cpp
index e525d89c..3be7bdf4 100644
--- a/lib/Plugins/RunApp.cpp
+++ b/lib/Plugins/RunApp.cpp
@@ -63,8 +63,7 @@ PLUGIN_INFO(ACTION,
CActionRunApp,
"RunApp",
"0.0.1",
- "Simple action plugin which runs a command "
- "and it can save command's output",
+ "Runs a command, saves its output",
"zprikryl@redhat.com",
"https://fedorahosted.org/abrt/wiki",
"");
diff --git a/lib/Plugins/SOSreport.cpp b/lib/Plugins/SOSreport.cpp
index 287c01e9..65d01a72 100644
--- a/lib/Plugins/SOSreport.cpp
+++ b/lib/Plugins/SOSreport.cpp
@@ -116,7 +116,7 @@ PLUGIN_INFO(ACTION,
CActionSOSreport,
"SOSreport",
"0.0.2",
- "Run sosreport, save the output in the crash dump",
+ "Runs sosreport, saves the output",
"gavin@redhat.com",
"https://fedorahosted.org/abrt/wiki",
"");
diff --git a/lib/Plugins/SQLite3.cpp b/lib/Plugins/SQLite3.cpp
index 3aad0545..709a16c1 100644
--- a/lib/Plugins/SQLite3.cpp
+++ b/lib/Plugins/SQLite3.cpp
@@ -421,7 +421,7 @@ PLUGIN_INFO(DATABASE,
CSQLite3,
"SQLite3",
"0.0.2",
- "SQLite3 database plugin.",
+ "Keeps SQLite3 database about all crashes",
"zprikryl@redhat.com,jmoskovc@redhat.com",
"https://fedorahosted.org/abrt/wiki",
"");
diff --git a/lib/Plugins/TicketUploader.cpp b/lib/Plugins/TicketUploader.cpp
index 081ff8f5..847efdc0 100644
--- a/lib/Plugins/TicketUploader.cpp
+++ b/lib/Plugins/TicketUploader.cpp
@@ -419,7 +419,7 @@ PLUGIN_INFO(REPORTER,
CTicketUploader,
"TicketUploader",
"0.0.1",
- "input ticket# and customer name from user, send report to FTP",
+ "Asks ticket# and customer name from user, sends report to FTP",
"gavin@redhat.com",
- "https://fedorahosted.org/abtr/wiki",
+ "https://fedorahosted.org/abrt/wiki",
PLUGINS_LIB_DIR"/TicketUploader.GTKBuilder");