diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-03-01 16:13:54 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-03-01 16:13:54 +0000 |
commit | 260428cfeba137c058d6aaeb6fec517f226f6b9e (patch) | |
tree | b5c7ed42dc46c1a27265bd0e57f2a29fb8f7ec59 | |
parent | a07464603d934971b3efe1e725322d219e14836b (diff) | |
download | rpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.tar rpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.tar.gz rpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.tar.bz2 rpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.tar.xz rpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.zip |
Add a TODO note in rpmdrake
-rwxr-xr-x | rpmdrake | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -24,6 +24,7 @@ use MDK::Common 'any'; BEGIN { #- we want to run this code before the Gtk->init of the use-my_gtk my $basename = sub { local $_ = shift; s|/*\s*$||; s|.*/||; $_ }; + #- TODO translate this any { /^--?h/ } @ARGV and do { printf qq(Usage: %s [OPTION]... --changelog-first display changelog before filelist in the description window @@ -1522,9 +1523,11 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-( }, )); if (@invalid_sources) { - interactive_msg_(N("Rpmdrake"), - N("The following packages have bad signatures:\n\n%s\n\nDo you want to continue installation?", - join "\n", sort @invalid_sources), yesno => 1, if_(@invalid_sources > 10, scroll => 1)) or goto return_with_error; + interactive_msg_( + N("Rpmdrake"), + N("The following packages have bad signatures:\n\n%s\n\nDo you want to continue installation?", + join "\n", sort @invalid_sources), yesno => 1, if_(@invalid_sources > 10, scroll => 1), + ) or goto return_with_error; } } |