summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/logdrake
Commit message (Collapse)AuthorAgeFilesLines
* update copyright noticesThierry Vignaud2004-01-221-1/+1
|
* - set a meaningfull window title when called from mcc for explanationsThierry Vignaud2004-01-161-3/+4
| | | | | - upcase default window title
* do not abuse global namespace (this also allow to track variablesThierry Vignaud2004-01-161-22/+24
| | | | | usage through static code analysers such as perl_checker)
* fix wizard when logdrake is embededThierry Vignaud2004-01-091-0/+1
|
* perl_checker cleanupsThierry Vignaud2004-01-061-36/+7
|
* add missing argumentThierry Vignaud2004-01-061-1/+1
|
* add missing argumentThierry Vignaud2003-12-291-1/+1
|
* (mail alert wizard) properly handle faillureThierry Vignaud2003-12-221-6/+6
|
* (mail alert wizard) check if it's a valid user if it's not an email)Thierry Vignaud2003-12-221-2/+3
|
* reuse new wizard frameworkThierry Vignaud2003-12-161-60/+63
|
* - get rid of a perl_checker warning (thx pixel)Thierry Vignaud2003-10-131-3/+2
| | | | | | - this uncover the missing arg to parse_file when called from net_monitor, thus enabling to show up which file is currently parsed
* - save "mail alert" wizard options into /etc/sysconfig/mail_alert andThierry Vignaud2003-10-131-24/+27
| | | | | | | restore them when configuring it again - make cron task reuse /etc/sysconfig/mail_alert
* - ensure services are always listed in the same orderThierry Vignaud2003-10-131-4/+1
| | | | | - simplify installed services list build
* cron: only mail if there's really sg to warn about (aka do not sentThierry Vignaud2003-10-121-5/+8
| | | | | empty mails)
* restore previous subject in mailsThierry Vignaud2003-10-121-1/+1
|
* generate perl_checker compliant cron tasksThierry Vignaud2003-10-121-4/+4
|
* simplify cron writingThierry Vignaud2003-10-121-4/+2
|
* perl_checkerPascal Rigaux2003-10-011-4/+4
|
* always display the log domain names in the same order, that is inThierry Vignaud2003-09-111-1/+1
| | | | | english (not l10n) alphabetic order
* fix #5448 (infinite entries)Thierry Vignaud2003-09-091-1/+1
|
* Changed back NC() to N() (functionality will be merged)Pablo Saratxaga2003-08-211-1/+1
|
* definition and use of an NC() function (translation with context, kde like)Pablo Saratxaga2003-08-211-1/+1
|
* annotate load for translators (Arpad Biro)Thierry Vignaud2003-08-201-1/+3
|
* only complain if an error really happenedThierry Vignaud2003-08-201-3/+3
|
* mark one more string as translatable (spoted by Arpad Biro)Thierry Vignaud2003-08-191-1/+1
|
* remove unused variableThierry Vignaud2003-08-191-1/+1
|
* remove stock icons (per IHM team request)Pascal Rigaux2003-08-051-2/+2
|
* upcase labelThierry Vignaud2003-07-241-1/+1
|
* ensure we got a valied email in "email alert"Thierry Vignaud2003-07-151-1/+5
|
* fix logdrake crash when called from net_monitorThierry Vignaud2003-07-141-0/+1
|
* fix warnings due to new gtk2-perl binding following the same naming as CThierry Vignaud2003-07-101-4/+4
|
* remove debugging traceThierry Vignaud2003-07-091-2/+1
|
* switch from gtk2-perl to gtk2-perl-xsThierry Vignaud2003-07-091-7/+8
|
* use stock items in logdrake tooThierry Vignaud2003-07-071-2/+2
|
* perl_checker fixesThierry Vignaud2003-05-231-9/+9
|
* perl_checker fixesThierry Vignaud2003-05-231-10/+10
|
* gtk+-2 specs prohibid playing with policyThierry Vignaud2003-05-221-1/+0
|
* dialog window is already modalThierry Vignaud2003-05-191-1/+0
|
* - perl_checker fixesThierry Vignaud2003-04-041-7/+7
| | | | | - ensure only one callback do regular parsing
* remove unused variableThierry Vignaud2003-04-021-1/+1
|
* - various perl_checker "fixes"Thierry Vignaud2003-04-021-3/+4
| | | | | - (logcolorize): make it saner regarding its arguments, thanks perl_checker
* (parse_file) pass explicit argument instead of relying on lexical $_Thierry Vignaud2003-04-011-3/+3
| | | | | being correct in that context (worked fine but this is bad)
* - display "wait while searching" message also when embedded: we do notThierry Vignaud2003-03-061-5/+6
| | | | | | | want it only when embedded for explanations - flush this wait dialog draw queue on each update so that it get displayed when embedded
* restore old search behavior like we did before gtk+-2 port:Thierry Vignaud2003-03-051-6/+4
| | | | | | | | | | - empty log buffer on search startup - freeze buffer while searching - do not realize ourselves the window, it's done by next statement - set initial text to '' so that editable property is disabled once the textview is realized
* no need to explicitely disable editable property, this is alreadyThierry Vignaud2003-03-051-1/+0
| | | | | handled by ugtk2::gtktext_insert() called from ugtk2::gtktext_append()
* scroll back when loggingThierry Vignaud2003-03-041-1/+2
|
* reflect in standalone drakxtools the removal of DrakX iconsGuillaume Cottenceau2003-02-281-1/+1
|
* fix scrolling when embeddedThierry Vignaud2003-02-271-1/+1
|
* - remove debug statementsThierry Vignaud2003-02-241-3/+1
| | | | | - print an error message if we die on something other than wizcancel
* fix mail alert generationThierry Vignaud2003-02-241-20/+19
| | | | | | | - do not crash without any message in strict mode (wizcancel die miscatched) - make the generated script be 'use strict' and perl_checker compliant