From 637b35d05add84f71adcf7d0d3cb060b1c3e7349 Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Mon, 12 Jan 2004 01:12:13 +0000 Subject: Fix for bug 229658: Implements a mechanism for extensions to hook into standard Bugzilla templates so they can extend the Bugzilla UI without having to modify the standard templates themselves, making it easier to develop and use Bugzilla extensions. r=bbaetz, gerv a=myk --- checksetup.pl | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 821de1262..1d6240867 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1046,6 +1046,8 @@ END next if($dir =~ /^CVS$/i); my $path = File::Spec->catdir($templatedir, $dir, 'custom'); push(@templatepaths, $path) if(-d $path); + $path = File::Spec->catdir($templatedir, $dir, 'extension'); + push(@templatepaths, $path) if(-d $path); $path = File::Spec->catdir($templatedir, $dir, 'default'); push(@templatepaths, $path) if(-d $path); } @@ -1088,6 +1090,9 @@ END # => $datadir/template/`pwd`/template/{en, ...}/{custom,default} COMPILE_DIR => "$datadir/template", + # Initialize templates (f.e. by loading plugins like Hook). + PRE_PROCESS => "global/initialize.none.tmpl", + # These don't actually need to do anything here, just exist FILTERS => { -- cgit v1.2.3-24-g4f1b