Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
415e32d4
Commit
415e32d4
authored
Oct 19, 2007
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 399954: Make Bugzilla able to hold its dependencies in a local directory
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
parent
c6ede85f
Hide whitespace changes
Inline
Side-by-side
Showing
74 changed files
with
88 additions
and
83 deletions
+88
-83
Chart.pm
Bugzilla/Chart.pm
+0
-1
Constants.pm
Bugzilla/Constants.pm
+1
-0
Filesystem.pm
Bugzilla/Install/Filesystem.pm
+5
-0
Series.pm
Bugzilla/Series.pm
+0
-1
admin.cgi
admin.cgi
+1
-1
attachment.cgi
attachment.cgi
+1
-1
buglist.cgi
buglist.cgi
+1
-1
chart.cgi
chart.cgi
+1
-1
checksetup.pl
checksetup.pl
+1
-1
colchange.cgi
colchange.cgi
+1
-1
collectstats.pl
collectstats.pl
+1
-1
config.cgi
config.cgi
+1
-1
bz_webservice_demo.pl
contrib/bz_webservice_demo.pl
+1
-0
bzdbcopy.pl
contrib/bzdbcopy.pl
+1
-1
merge-users.pl
contrib/merge-users.pl
+1
-1
recode.pl
contrib/recode.pl
+1
-2
sendbugmail.pl
contrib/sendbugmail.pl
+2
-2
sendunsentbugmail.pl
contrib/sendunsentbugmail.pl
+1
-1
syncLDAP.pl
contrib/syncLDAP.pl
+1
-1
createaccount.cgi
createaccount.cgi
+1
-1
describecomponents.cgi
describecomponents.cgi
+1
-1
describekeywords.cgi
describekeywords.cgi
+1
-1
makedocs.pl
docs/makedocs.pl
+1
-1
installation.xml
docs/xml/installation.xml
+2
-2
duplicates.cgi
duplicates.cgi
+1
-1
editclassifications.cgi
editclassifications.cgi
+1
-1
editcomponents.cgi
editcomponents.cgi
+1
-1
editfields.cgi
editfields.cgi
+1
-1
editflagtypes.cgi
editflagtypes.cgi
+1
-1
editgroups.cgi
editgroups.cgi
+1
-1
editkeywords.cgi
editkeywords.cgi
+1
-1
editmilestones.cgi
editmilestones.cgi
+1
-1
editparams.cgi
editparams.cgi
+1
-1
editproducts.cgi
editproducts.cgi
+1
-1
editsettings.cgi
editsettings.cgi
+1
-1
editusers.cgi
editusers.cgi
+1
-1
editvalues.cgi
editvalues.cgi
+1
-1
editversions.cgi
editversions.cgi
+1
-1
editwhines.cgi
editwhines.cgi
+1
-1
editworkflow.cgi
editworkflow.cgi
+1
-1
email_in.pl
email_in.pl
+2
-0
enter_bug.cgi
enter_bug.cgi
+1
-1
importxml.pl
importxml.pl
+7
-13
index.cgi
index.cgi
+1
-1
README
lib/README
+4
-0
long_list.cgi
long_list.cgi
+1
-1
page.cgi
page.cgi
+1
-1
post_bug.cgi
post_bug.cgi
+1
-1
process_bug.cgi
process_bug.cgi
+1
-1
query.cgi
query.cgi
+1
-1
quips.cgi
quips.cgi
+1
-1
relogin.cgi
relogin.cgi
+1
-1
report.cgi
report.cgi
+1
-1
reports.cgi
reports.cgi
+1
-1
request.cgi
request.cgi
+1
-1
runtests.pl
runtests.pl
+1
-0
sanitycheck.cgi
sanitycheck.cgi
+1
-1
sanitycheck.pl
sanitycheck.pl
+1
-1
search_plugin.cgi
search_plugin.cgi
+1
-1
show_activity.cgi
show_activity.cgi
+1
-1
show_bug.cgi
show_bug.cgi
+1
-1
showattachment.cgi
showattachment.cgi
+1
-1
showdependencygraph.cgi
showdependencygraph.cgi
+1
-1
showdependencytree.cgi
showdependencytree.cgi
+1
-1
sidebar.cgi
sidebar.cgi
+1
-1
summarize_time.cgi
summarize_time.cgi
+1
-1
testserver.pl
testserver.pl
+1
-1
token.cgi
token.cgi
+1
-1
userprefs.cgi
userprefs.cgi
+1
-1
votes.cgi
votes.cgi
+1
-1
whine.pl
whine.pl
+1
-1
whineatnews.pl
whineatnews.pl
+1
-1
xml.cgi
xml.cgi
+1
-1
xmlrpc.cgi
xmlrpc.cgi
+1
-1
No files found.
Bugzilla/Chart.pm
View file @
415e32d4
...
...
@@ -22,7 +22,6 @@
# A. Karl Kornel <karl@kornel.name>
use
strict
;
use
lib
"."
;
# This module represents a chart.
#
...
...
Bugzilla/Constants.pm
View file @
415e32d4
...
...
@@ -445,6 +445,7 @@ sub bz_locations {
# That means that if you modify these paths, they must be absolute paths.
return
{
'libpath'
=>
$libpath
,
'ext_libpath'
=>
"$libpath/lib"
,
# If you put the libraries in a different location than the CGIs,
# make sure this still points to the CGIs.
'cgi_path'
=>
$libpath
,
...
...
Bugzilla/Install/Filesystem.pm
View file @
415e32d4
...
...
@@ -62,6 +62,7 @@ sub FILESYSTEM {
my
$webdotdir
=
bz_locations
()
->
{
'webdotdir'
};
my
$templatedir
=
bz_locations
()
->
{
'templatedir'
};
my
$libdir
=
bz_locations
()
->
{
'libpath'
};
my
$extlib
=
bz_locations
()
->
{
'ext_libpath'
};
my
$skinsdir
=
bz_locations
()
->
{
'skinsdir'
};
my
$ws_group
=
Bugzilla
->
localconfig
->
{
'webservergroup'
};
...
...
@@ -152,6 +153,8 @@ sub FILESYSTEM {
dirs
=>
$ws_dir_readable
},
"$libdir/Bugzilla"
=>
{
files
=>
$ws_readable
,
dirs
=>
$ws_dir_readable
},
$extlib
=>
{
files
=>
$ws_readable
,
dirs
=>
$ws_dir_readable
},
$templatedir
=>
{
files
=>
$ws_readable
,
dirs
=>
$ws_dir_readable
},
images
=>
{
files
=>
$ws_readable
,
...
...
@@ -251,6 +254,8 @@ EOT
contents
=>
$ht_default_deny
},
"$libdir/Bugzilla/.htaccess"
=>
{
perms
=>
$ws_readable
,
contents
=>
$ht_default_deny
},
"$extlib/.htaccess"
=>
{
perms
=>
$ws_readable
,
contents
=>
$ht_default_deny
},
"$templatedir/.htaccess"
=>
{
perms
=>
$ws_readable
,
contents
=>
$ht_default_deny
},
...
...
Bugzilla/Series.pm
View file @
415e32d4
...
...
@@ -21,7 +21,6 @@
# Lance Larsh <lance.larsh@oracle.com>
use
strict
;
use
lib
"."
;
# This module implements a series - a set of data to be plotted on a chart.
#
...
...
admin.cgi
View file @
415e32d4
...
...
@@ -21,7 +21,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
attachment.cgi
View file @
415e32d4
...
...
@@ -35,7 +35,7 @@
# Make it harder for us to do dangerous things in Perl.
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
buglist.cgi
View file @
415e32d4
...
...
@@ -32,7 +32,7 @@
# Make it harder for us to do dangerous things in Perl.
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
chart.cgi
View file @
415e32d4
...
...
@@ -43,7 +43,7 @@
# Offer subscription when you get a "series already exists" error?
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
checksetup.pl
View file @
415e32d4
...
...
@@ -51,7 +51,7 @@ use POSIX qw(setlocale LC_CTYPE);
use
Safe
;
BEGIN
{
chdir
dirname
(
$0
);
}
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla::
Constants
;
use
Bugzilla::Install::
Requirements
;
use
Bugzilla::Install::
Util
qw(install_string get_version_and_os)
;
...
...
colchange.cgi
View file @
415e32d4
...
...
@@ -24,7 +24,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
collectstats.pl
View file @
415e32d4
...
...
@@ -34,7 +34,7 @@ use AnyDBM_File;
use
strict
;
use
IO::
Handle
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
config.cgi
View file @
415e32d4
...
...
@@ -28,7 +28,7 @@
# Make it harder for us to do dangerous things in Perl.
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
contrib/bz_webservice_demo.pl
View file @
415e32d4
...
...
@@ -29,6 +29,7 @@ C<bz_webservice_demo.pl --help> for detailed help
=cut
use
strict
;
use
lib
qw(lib)
;
use
Getopt::
Long
;
use
Pod::
Usage
;
use
File::
Basename
qw(dirname)
;
...
...
contrib/bzdbcopy.pl
View file @
415e32d4
...
...
@@ -19,7 +19,7 @@
# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
DB
;
use
Bugzilla::
Util
;
...
...
contrib/merge-users.pl
View file @
415e32d4
...
...
@@ -44,7 +44,7 @@ merge-users.pl - Merge two user accounts.
=cut
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
contrib/recode.pl
View file @
415e32d4
...
...
@@ -20,8 +20,7 @@
# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
use
strict
;
# Allow the script to be run from contrib or as contrib/recode.pl
use
lib
'..'
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
contrib/sendbugmail.pl
View file @
415e32d4
...
...
@@ -4,7 +4,7 @@
#
# Nick Barnes, Ravenbrook Limited, 2004-04-01.
#
# $Id: sendbugmail.pl,v 1.
7 2006/07/03 21:42:4
7 mkanat%bugzilla.org Exp $
# $Id: sendbugmail.pl,v 1.
8 2007/10/19 06:46:1
7 mkanat%bugzilla.org Exp $
#
# Bugzilla email script for Bugzilla 2.17.4 and later. Invoke this to send
# bugmail for a bug which has been changed directly in the database.
...
...
@@ -14,7 +14,7 @@
#
# Usage: perl -T contrib/sendbugmail.pl bug_id user_email
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Util
;
...
...
contrib/sendunsentbugmail.pl
View file @
415e32d4
...
...
@@ -23,7 +23,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
contrib/syncLDAP.pl
View file @
415e32d4
...
...
@@ -22,7 +22,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Net::
LDAP
;
use
Bugzilla
;
...
...
createaccount.cgi
View file @
415e32d4
...
...
@@ -26,7 +26,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
describecomponents.cgi
View file @
415e32d4
...
...
@@ -23,7 +23,7 @@
# Frédéric Buclin <LpSolit@gmail.com>
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
describekeywords.cgi
View file @
415e32d4
...
...
@@ -22,7 +22,7 @@
# Contributor(s): Gervase Markham <gerv@gerv.net>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Error
;
...
...
docs/makedocs.pl
View file @
415e32d4
...
...
@@ -34,7 +34,7 @@ BEGIN {
chdir
dirname
(
$0
);
}
use
lib
qw(.. lib)
;
use
lib
qw(..
../lib
lib)
;
# We only compile our POD if Pod::Simple is installed. We do the checks
# this way so that if there's a compile error in Pod::Simple::HTML::Bugzilla,
...
...
docs/xml/installation.xml
View file @
415e32d4
<!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
<!-- $Id: installation.xml,v 1.14
6 2007/10/16 09:56:07 justdave
%bugzilla.org Exp $ -->
<!-- $Id: installation.xml,v 1.14
7 2007/10/19 06:46:18 mkanat
%bugzilla.org Exp $ -->
<chapter
id=
"installing-bugzilla"
>
<title>
Installing Bugzilla
</title>
...
...
@@ -1123,7 +1123,7 @@
</warning>
<programlisting>
PerlSwitches -I/var/www/html/bugzilla -w -T
PerlSwitches -I/var/www/html/bugzilla -
I/var/www/html/bugzilla/lib -
w -T
PerlConfigRequire /var/www/html/bugzilla/mod_perl.pl
</programlisting>
</step>
...
...
duplicates.cgi
View file @
415e32d4
...
...
@@ -27,7 +27,7 @@ use strict;
use
AnyDBM_File
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editclassifications.cgi
View file @
415e32d4
...
...
@@ -21,7 +21,7 @@
# Direct any questions on this source code to mozilla.org
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editcomponents.cgi
View file @
415e32d4
...
...
@@ -24,7 +24,7 @@
# Akamai Technologies <bugzilla-dev@akamai.com>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editfields.cgi
View file @
415e32d4
...
...
@@ -16,7 +16,7 @@
# Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editflagtypes.cgi
View file @
415e32d4
...
...
@@ -27,7 +27,7 @@
# Make it harder for us to do dangerous things in Perl.
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
# Use Bugzilla's flag modules for handling flag types.
use
Bugzilla
;
...
...
editgroups.cgi
View file @
415e32d4
...
...
@@ -25,7 +25,7 @@
# Frédéric Buclin <LpSolit@gmail.com>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editkeywords.cgi
View file @
415e32d4
...
...
@@ -21,7 +21,7 @@
# Contributor(s): Terry Weissman <terry@mozilla.org>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editmilestones.cgi
View file @
415e32d4
...
...
@@ -16,7 +16,7 @@
#
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editparams.cgi
View file @
415e32d4
...
...
@@ -23,7 +23,7 @@
# Frédéric Buclin <LpSolit@gmail.com>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editproducts.cgi
View file @
415e32d4
...
...
@@ -32,7 +32,7 @@
# Holger Schurig <holgerschurig@nikocity.de>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editsettings.cgi
View file @
415e32d4
...
...
@@ -17,7 +17,7 @@
#
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editusers.cgi
View file @
415e32d4
...
...
@@ -21,7 +21,7 @@
# Gavin Shelley <bugzilla@chimpychompy.org>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editvalues.cgi
View file @
415e32d4
...
...
@@ -19,7 +19,7 @@
# with some cleanup.
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Util
;
...
...
editversions.cgi
View file @
415e32d4
...
...
@@ -29,7 +29,7 @@
# Holger Schurig <holgerschurig@nikocity.de>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editwhines.cgi
View file @
415e32d4
...
...
@@ -27,7 +27,7 @@
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
editworkflow.cgi
View file @
415e32d4
...
...
@@ -21,7 +21,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
email_in.pl
View file @
415e32d4
...
...
@@ -29,6 +29,8 @@ BEGIN {
chdir
(
File::Basename::
dirname
(
$0
));
}
use
lib
qw(. lib)
;
use
Data::
Dumper
;
use
Email::
Address
;
use
Email::
Reply
qw(reply)
;
...
...
enter_bug.cgi
View file @
415e32d4
...
...
@@ -35,7 +35,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
importxml.pl
View file @
415e32d4
...
...
@@ -54,22 +54,16 @@ use strict;
#
#####################################################################
# figure out which path this script lives in. Set the current path to
# this and add it to @INC so this will work when run as part of mail
# alias by the mailer daemon
# since "use lib" is run at compile time, we need to enclose the
# $::path declaration in a BEGIN block so that it is executed before
# the rest of the file is compiled.
use
File::
Basename
qw(dirname)
;
# MTAs may call this script from any directory, but it should always
# run from this one so that it can find its modules.
BEGIN
{
$::path
=
$0
;
$::path
=~
m
#(.*)/[^/]+#;
$::path
=
$1
;
$::path
||=
'.'
;
# $0 is empty at compile time. This line will
# have no effect on this script at runtime.
require
File::
Basename
;
my
$dir
=
$0
;
$dir
=~
/(.*)/
;
$dir
=
$1
;
# trick taint
chdir
(
File::Basename::
dirname
(
$dir
));
}
chdir
$::path
;
use
lib
(
$::path
);
use
lib
qw(. lib)
;
# Data dumber is used for debugging, I got tired of copying it back in
# and then removing it.
#use Data::Dumper;
...
...
index.cgi
View file @
415e32d4
...
...
@@ -29,7 +29,7 @@
use
strict
;
# Include the Bugzilla CGI and general utility library.
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
lib/README
0 → 100644
View file @
415e32d4
This directory contains the Perl modules that Bugzilla requires to run.
If you would rather have Bugzilla use the Perl modules installed on your
system, you can delete everything in this directory.
long_list.cgi
View file @
415e32d4
...
...
@@ -22,7 +22,7 @@
# Gervase Markham <gerv@gerv.net>
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
my
$cgi
=
Bugzilla
->
cgi
;
...
...
page.cgi
View file @
415e32d4
...
...
@@ -30,7 +30,7 @@
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Error
;
...
...
post_bug.cgi
View file @
415e32d4
...
...
@@ -25,7 +25,7 @@
# Marc Schumann <wurblzap@gmail.com>
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Attachment
;
...
...
process_bug.cgi
View file @
415e32d4
...
...
@@ -43,7 +43,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
query.cgi
View file @
415e32d4
...
...
@@ -26,7 +26,7 @@
# Max Kanat-Alexander <mkanat@bugzilla.org>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Bug
;
...
...
quips.cgi
View file @
415e32d4
...
...
@@ -25,7 +25,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
relogin.cgi
View file @
415e32d4
...
...
@@ -23,7 +23,7 @@
# A. Karl Kornel <karl@kornel.name>
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Mailer
;
...
...
report.cgi
View file @
415e32d4
...
...
@@ -22,7 +22,7 @@
# <rdean@cambianetworks.com>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
reports.cgi
View file @
415e32d4
...
...
@@ -37,7 +37,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
request.cgi
View file @
415e32d4
...
...
@@ -28,7 +28,7 @@
# Make it harder for us to do dangerous things in Perl.
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Util
;
...
...
runtests.pl
View file @
415e32d4
...
...
@@ -23,6 +23,7 @@
# Make it harder for us to do dangerous things in Perl.
use
diagnostics
;
use
strict
;
use
lib
qw(lib)
;
use
Test::
Harness
qw(&runtests $verbose)
;
...
...
sanitycheck.cgi
View file @
415e32d4
...
...
@@ -26,7 +26,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
sanitycheck.pl
View file @
415e32d4
...
...
@@ -21,7 +21,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
search_plugin.cgi
View file @
415e32d4
...
...
@@ -16,7 +16,7 @@
# Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Error
;
...
...
show_activity.cgi
View file @
415e32d4
...
...
@@ -24,7 +24,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Error
;
...
...
show_bug.cgi
View file @
415e32d4
...
...
@@ -22,7 +22,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
showattachment.cgi
View file @
415e32d4
...
...
@@ -23,7 +23,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Util
;
...
...
showdependencygraph.cgi
View file @
415e32d4
...
...
@@ -23,7 +23,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
File::
Temp
;
...
...
showdependencytree.cgi
View file @
415e32d4
...
...
@@ -26,7 +26,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Error
;
...
...
sidebar.cgi
View file @
415e32d4
...
...
@@ -17,7 +17,7 @@
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Error
;
...
...
summarize_time.cgi
View file @
415e32d4
...
...
@@ -19,7 +19,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Date::
Parse
;
# strptime
...
...
testserver.pl
View file @
415e32d4
...
...
@@ -19,7 +19,7 @@
# issues as possible.
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
BEGIN
{
my
$envpath
=
$ENV
{
'PATH'
};
...
...
token.cgi
View file @
415e32d4
...
...
@@ -28,7 +28,7 @@
# Make it harder for us to do dangerous things in Perl.
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
userprefs.cgi
View file @
415e32d4
...
...
@@ -24,7 +24,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
votes.cgi
View file @
415e32d4
...
...
@@ -25,7 +25,7 @@
# Frédéric Buclin <LpSolit@gmail.com>
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
whine.pl
View file @
415e32d4
...
...
@@ -26,7 +26,7 @@
use
strict
;
use
lib
"."
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
whineatnews.pl
View file @
415e32d4
...
...
@@ -29,7 +29,7 @@
# touched for more than the number of days specified in the whinedays param.
use
strict
;
use
lib
'.'
;
use
lib
qw(. lib)
;
use
Bugzilla
;
use
Bugzilla::
Mailer
;
...
...
xml.cgi
View file @
415e32d4
...
...
@@ -24,7 +24,7 @@
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
my
$cgi
=
Bugzilla
->
cgi
;
...
...
xmlrpc.cgi
View file @
415e32d4
...
...
@@ -16,7 +16,7 @@
# Contributor(s): Marc Schumann <wurblzap@gmail.com>
use
strict
;
use
lib
qw(.)
;
use
lib
qw(.
lib
)
;
use
Bugzilla
;
use
Bugzilla::
Constants
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment