summaryrefslogtreecommitdiffstats
path: root/move
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-11-07 15:08:06 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-11-07 15:08:06 +0000
commitcd3694d5b06730bf9d0626c0fd04fc002436224b (patch)
treea5dfaf0afba20e3ba228934ea8a2e3f5c8958251 /move
parent0aeb02fa43c5a138d4d7452b02d1cd7decfde19b (diff)
downloaddrakx-cd3694d5b06730bf9d0626c0fd04fc002436224b.tar
drakx-cd3694d5b06730bf9d0626c0fd04fc002436224b.tar.gz
drakx-cd3694d5b06730bf9d0626c0fd04fc002436224b.tar.bz2
drakx-cd3694d5b06730bf9d0626c0fd04fc002436224b.tar.xz
drakx-cd3694d5b06730bf9d0626c0fd04fc002436224b.zip
also move back always_i18n and totem to_cdrom
Diffstat (limited to 'move')
-rw-r--r--move/tree/mdk_move_boot_loop.desktop2
1 files changed, 1 insertions, 1 deletions
diff --git a/move/tree/mdk_move_boot_loop.desktop b/move/tree/mdk_move_boot_loop.desktop
index d49a2b7d0..5d82a7875 100644
--- a/move/tree/mdk_move_boot_loop.desktop
+++ b/move/tree/mdk_move_boot_loop.desktop
@@ -1,6 +1,6 @@
[Desktop Entry]
Name=Move Move Loop
-Exec=mdk_move_loop to_cdrom always boot
+Exec=mdk_move_loop to_cdrom always always_i18n boot totem
Type=Application
Terminal=0
X-KDE-autostart-after=panel
n class="hl opt">('id') && $single) { print Bugzilla->cgi->header(); $template->process("bug/choose.html.tmpl", $vars) || ThrowTemplateError($template->error()); exit; } my $format = $template->get_format("bug/show", scalar $cgi->param('format'), scalar $cgi->param('ctype')); my @bugs = (); my %marks; if ($single) { my $id = $cgi->param('id'); # Its a bit silly to do the validation twice - that functionality should # probably move into Bug.pm at some point ValidateBugID($id); push @bugs, new Bugzilla::Bug($id); if (defined $cgi->param('mark')) { foreach my $range (split ',', $cgi->param('mark')) { if ($range =~ /^(\d+)-(\d+)$/) { foreach my $i ($1..$2) { $marks{$i} = 1; } } elsif ($range =~ /^(\d+)$/) { $marks{$1} = 1; } } } } else { foreach my $id ($cgi->param('id')) { # Be kind enough and accept URLs of the form: id=1,2,3. my @ids = split(/,/, $id); foreach (@ids) { my $bug = new Bugzilla::Bug($_); # This is basically a backwards-compatibility hack from when # Bugzilla::Bug->new used to set 'NotPermitted' if you couldn't # see the bug. if (!$bug->{error} && !$user->can_see_bug($bug->bug_id)) { $bug->{error} = 'NotPermitted'; } push(@bugs, $bug); } } } # Determine if Patch Viewer is installed, for Diff link eval { require PatchReader; $vars->{'patchviewerinstalled'} = 1; }; $vars->{'bugs'} = \@bugs; $vars->{'marks'} = \%marks; $vars->{'use_keywords'} = 1 if Bugzilla::Keyword::keyword_count(); # Next bug in list (if there is one) my @bug_list; if ($cgi->cookie("BUGLIST")) { @bug_list = split(/:/, $cgi->cookie("BUGLIST")); } $vars->{'bug_list'} = \@bug_list; # Work out which fields we are displaying (currently XML only.) # If no explicit list is defined, we show all fields. We then exclude any # on the exclusion list. This is so you can say e.g. "Everything except # attachments" without listing almost all the fields. my @fieldlist = (Bugzilla::Bug->fields, 'group', 'long_desc', 'attachment', 'attachmentdata'); my %displayfields; if ($cgi->param("field")) { @fieldlist = $cgi->param("field"); } unless (Bugzilla->user->in_group(Bugzilla->params->{"timetrackinggroup"})) { @fieldlist = grep($_ !~ /(^deadline|_time)$/, @fieldlist); } foreach (@fieldlist) { $displayfields{$_} = 1; } foreach ($cgi->param("excludefield")) { $displayfields{$_} = undef; } $vars->{'displayfields'} = \%displayfields; print $cgi->header($format->{'ctype'}); $template->process("$format->{'template'}", $vars) || ThrowTemplateError($template->error());