Bug 527387: Make Parameter section sortkeys numeric and leave space between the numbers

Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit


git-svn-id: svn://10.0.0.236/trunk@259209 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org
2009-12-13 20:49:08 +00:00
parent 15546c7c25
commit 6a86535026
17 changed files with 17 additions and 17 deletions

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::Admin::sortkey = "01";
our $sortkey = 200;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::Attachment::sortkey = "025";
our $sortkey = 400;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::Auth::sortkey = "02";
our $sortkey = 300;
sub get_param_list {
my $class = shift;

View File

@@ -36,7 +36,7 @@ use strict;
use Bugzilla::Config::Common;
use Bugzilla::Status;
$Bugzilla::Config::BugChange::sortkey = "03";
our $sortkey = 500;
sub get_param_list {
my $class = shift;

View File

@@ -36,7 +36,7 @@ use strict;
use Bugzilla::Config::Common;
use Bugzilla::Field;
$Bugzilla::Config::BugFields::sortkey = "04";
our $sortkey = 600;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::BugMove::sortkey = "05";
our $sortkey = 700;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::Core::sortkey = "00";
our $sortkey = 100;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::DependencyGraph::sortkey = "06";
our $sortkey = 800;
sub get_param_list {
my $class = shift;

View File

@@ -36,7 +36,7 @@ use strict;
use Bugzilla::Config::Common;
use Bugzilla::Group;
$Bugzilla::Config::GroupSecurity::sortkey = "07";
our $sortkey = 900;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::LDAP::sortkey = "09";
our $sortkey = 1000;
sub get_param_list {
my $class = shift;

View File

@@ -36,7 +36,7 @@ use strict;
use Bugzilla::Config::Common;
use Email::Send;
$Bugzilla::Config::MTA::sortkey = "10";
our $sortkey = 1200;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::PatchViewer::sortkey = "11";
our $sortkey = 1300;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::Query::sortkey = "12";
our $sortkey = 1400;
sub get_param_list {
my $class = shift;

View File

@@ -25,7 +25,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::RADIUS::sortkey = "09";
our $sortkey = 1100;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::ShadowDB::sortkey = "13";
our $sortkey = 1500;
sub get_param_list {
my $class = shift;

View File

@@ -35,7 +35,7 @@ use strict;
use Bugzilla::Config::Common;
$Bugzilla::Config::UserMatch::sortkey = "14";
our $sortkey = 1600;
sub get_param_list {
my $class = shift;

View File

@@ -27,7 +27,7 @@
[% PROCESS global/variables.none.tmpl %]
[% curpanel = -1 %]
[% panels = panels.sort('sortkey') %]
[% panels = panels.nsort('sortkey') %]
[% FOREACH panel = panels %]
[% PROCESS "admin/params/${panel.name}.html.tmpl"