diff options
author | Thierry Vignaud <tv@mandriva.org> | 2010-03-03 16:22:00 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2010-03-03 16:22:00 +0000 |
commit | a09c9efdfe3c5e0ea84482224e66a4923d81225c (patch) | |
tree | 73f653d4162b49a628114c0d1d11ccf7ab27bd92 /Rpmdrake | |
parent | 39fe9dd1311a8ebaf6fb8a7a3830c8f079c51aa3 (diff) | |
download | rpmdrake-a09c9efdfe3c5e0ea84482224e66a4923d81225c.tar rpmdrake-a09c9efdfe3c5e0ea84482224e66a4923d81225c.tar.gz rpmdrake-a09c9efdfe3c5e0ea84482224e66a4923d81225c.tar.bz2 rpmdrake-a09c9efdfe3c5e0ea84482224e66a4923d81225c.tar.xz rpmdrake-a09c9efdfe3c5e0ea84482224e66a4923d81225c.zip |
(files_format) split it out of format_pkg_simplifiedinfo()
Diffstat (limited to 'Rpmdrake')
-rw-r--r-- | Rpmdrake/gui.pm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm index b615d756..58f809bd 100644 --- a/Rpmdrake/gui.pm +++ b/Rpmdrake/gui.pm @@ -231,6 +231,14 @@ sub get_url_link { @a; } +sub files_format { + my ($files) = @_; + ugtk2::markup_to_TextView_format( + '<tt>' . $spacing #- to highlight information + . join("\n$spacing", map { "\x{200e}$_" } @$files) + . '</tt>'); +} + sub format_pkg_simplifiedinfo { my ($pkgs, $key, $urpm, $descriptions) = @_; my ($name) = split_fullname($key); @@ -255,12 +263,7 @@ sub format_pkg_simplifiedinfo { $exp0->set_use_markup(1); push @$s, [ "\n\n" ]; if (exists $pkg->{files}) { - push @$s, [ build_expander($pkg, N("Files:"), 'files', sub { - ugtk2::markup_to_TextView_format('<tt>' . $spacing . - join("\n$spacing", - map { "\x{200e}$_" } @{$pkg->{files}} - ) . '</tt>') #- to highlight information - }) ]; + push @$s, [ build_expander($pkg, N("Files:"), 'files', sub { files_format($pkg->{files}) }) ]; push @$s, [ "\n\n" ]; } push @$s, [ build_expander($pkg, N("Changelog:"), 'changelog', sub { $pkg->{changelog} }, $installed_version) ]; |