pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/bugzilla Update devel/bugzilla from 2.22.7 to 5.0.3
details: https://anonhg.NetBSD.org/pkgsrc/rev/29b829cbfdfd
branches: trunk
changeset: 359774:29b829cbfdfd
user: mef <mef%pkgsrc.org@localhost>
date: Fri Mar 17 16:26:30 2017 +0000
description:
Update devel/bugzilla from 2.22.7 to 5.0.3
-------------------------------------
- please note devel/bugzilla3 has now 3.6.8
- Below is a Release note for 5.0.1 to 5.0.3 from:
https://www.bugzilla.org/releases/5.0.3/release-notes.html
-------------------------------------
Bugzilla 5.0.3 Release Notes
* Introduction
* Updates in this 5.0.x Release
..
(original has more sections, but omitted, see above URL for more info)
Introduction
Welcome to Bugzilla 5.0! It has been slightly over two years since we
released Bugzilla 4.4 in May of 2013. This new major release comes with many
new features and improvements to WebServices and performance.
If you're upgrading, make sure to read Notes On Upgrading From a Previous
Version. If you are upgrading from a release before 4.4, make sure to read
the release notes for all the previous versions in between your version and
this one, particularly the Upgrading section of each version's release notes.
Updates in this 5.0.x Release
5.0.3
This release fixes one security issue. See the Security Advisory for details.
This release also contains the following bug fixes:
* A regression in Bugzilla 5.0.2 caused whine.pl to be unable to send
emails due to a missing subroutine. (Bug 1235395)
* The Encode module changed the way it encodes strings, causing email
addresses in emails sent by Bugzilla to be encoded, preventing emails
from being correctly delivered to recipients. We now encode email headers
correctly. (Bug 1246228)
* Fix additional taint issues with Strawberry Perl. (Bug 987742 and bug
1089448)
* When exporting a buglist as a CSV file, fields starting with either "=",
"+", "-" or "@" are preceded by a space to not trigger formula execution
in Excel. (Bug 1259881)
* An extension which allows user-controlled data to be used as a link in
tabs could trigger XSS if the data is not correctly sanitized. Bugzilla
no longer relies on the extension to do the sanity check. A vanilla
installation is not affected as no tab is user-controlled. (Bug 1250114)
* Extensions can now easily override the favicon used for the Bugzilla
website. (Bug 1250264)
5.0.2
This release fixes two security issues. See the Security Advisory for
details.
This release also contains the following bug fixes:
* mod_perl now works correctly with mod_access_compat turned off on Apache
2.4. To regenerate the .htaccess files, you must first delete all
existing ones in subdirectories:
find . -mindepth 2 -name .htaccess -exec rm -f {} \;
You must then run checksetup.pl again to recreate them with the correct
syntax. (Bug 1223790)
* Emails sent by Bugzilla are now correctly encoded as UTF-8. (Bug 714724)
* Strawberry Perl is now fully supported on Windows. (Bug 1089448 and bug
987742)
* The XML-RPC API now works with IIS on Windows. (Bug 708252)
* Some queries should now be faster on PostgreSQL. (Bug 1184431)
5.0.1
This release fixes one security issue. See the Security Advisory for details.
This release also contains the following bug fixes:
* Users whose login name is not an email address could not log in on
installations which use LDAP to authenticate users. (Bug 1179160)
* If a mandatory custom field was hidden, it was not possible to create a
new bug or to edit existing ones. (Bug 1183398 and bug 1196969)
* A user editing his login name to point to a non-existent email address
could cause Bugzilla to stop working, causing a denial of service. (Bug
1194987)
* Emails generated during a transaction made PostgreSQL stop working. (Bug
1186700)
* Bugs containing a comment with a reference to a bug ID larger than 2^31
could not be displayed anymore using PostgreSQL. (Bug 1191937)
* The date picker in the "Time Summary" page was broken. (Bug 1181649)
* If Test::Taint or any other Perl module required to use the JSON-RPC API
was not installed or was too old, the UI to tag comments was displayed
anyway, you could tag comments, but tags were not persistent (they were
lost on page reload). Now the UI to tag comments is not displayed at all
until the missing Perl modules are installed and up-to-date. (Bug
1183227)
* Custom fields of type INTEGER now accept negative integers. (Bug 1198659)
* On Windows, the checksetup.pl installation script no longer asks for a
SMTP server. It can be set after the installation is complete. (Bug
1191255)
diffstat:
devel/bugzilla/MESSAGE | 14 +-
devel/bugzilla/Makefile | 170 ++-
devel/bugzilla/PLIST | 608 ++++++++---
devel/bugzilla/distinfo | 12 +-
devel/bugzilla/files/bugzilla.conf | 3 +-
devel/bugzilla/files/localconfig | 117 +-
devel/bugzilla/options.mk | 85 +-
devel/bugzilla/patches/patch-Bugzilla_Install_Filesystem_pm | 15 +
devel/bugzilla/patches/patch-aa | 13 -
9 files changed, 682 insertions(+), 355 deletions(-)
diffs (truncated from 1512 to 300 lines):
diff -r 3e36f7f55db5 -r 29b829cbfdfd devel/bugzilla/MESSAGE
--- a/devel/bugzilla/MESSAGE Fri Mar 17 15:50:20 2017 +0000
+++ b/devel/bugzilla/MESSAGE Fri Mar 17 16:26:30 2017 +0000
@@ -1,19 +1,19 @@
===========================================================================
-$NetBSD: MESSAGE,v 1.4 2013/02/26 12:48:28 wiz Exp $
+$NetBSD: MESSAGE,v 1.5 2017/03/17 16:26:30 mef Exp $
To complete the setup you will need to read the Bugzilla-Guide.txt in order
-to setup mySQL properly. In particular section 2.2.2 of the document deals
-with database setup. After the initial setup of the database you can then
-check the settings in ${BZDIR}/localconfig and:
+to setup Database counter-part properly. In particular secion 2.2.2 of the
+document deals with database setup. After the initial setup of the database
+you can then check the settings in ${BZDIR}/localconfig and with super user
+privilege,
- cd ${BZDIR}
+ cd ${BZDIR};
./checksetup.pl
You will need to make Bugzilla accessible through your HTTP server.
If you are running Apache then you may add the following lines to httpd.conf:
- DirectoryIndex index.cgi index.html
- Include ${PKG_SYSCONFDIR}/httpd/bugzilla.conf
+ Include ${PKG_SYSCONFDIR}/bugzilla.conf
to make Bugzilla accessible through:
diff -r 3e36f7f55db5 -r 29b829cbfdfd devel/bugzilla/Makefile
--- a/devel/bugzilla/Makefile Fri Mar 17 15:50:20 2017 +0000
+++ b/devel/bugzilla/Makefile Fri Mar 17 16:26:30 2017 +0000
@@ -1,27 +1,67 @@
-# $NetBSD: Makefile,v 1.44 2016/07/09 06:38:05 wiz Exp $
+# $NetBSD: Makefile,v 1.45 2017/03/17 16:26:30 mef Exp $
-DISTNAME= bugzilla-2.22.7
-PKGREVISION= 8
+DISTNAME= bugzilla-5.0.3
CATEGORIES= www devel
MASTER_SITES= ${MASTER_SITE_MOZILLA_ALL:=webtools/}
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://www.bugzilla.org/
COMMENT= Web based bug tracking system
+LICENSE= mpl-2.0
-DEPENDS+= p5-AppConfig>=1.52:../../devel/p5-AppConfig
-DEPENDS+= p5-CGI>=2.93:../../www/p5-CGI
-DEPENDS+= p5-DBI>=1.38:../../databases/p5-DBI
-#DEPENDS+= {perl>=5.6.1,p5-File-Temp-[0-9]*}:../../devel/p5-File-Temp
-DEPENDS+= p5-Template-Toolkit>=2.10:../../www/p5-Template-Toolkit
-#DEPENDS+= {perl>=5.17.3,p5-Text-Tabs+Wrap>=2001.0131}:../../textproc/p5-Text-Tabs+Wrap
-#DEPENDS+= p5-Storable-[0-9]*:../../devel/p5-Storable
-DEPENDS+= p5-TimeDate>=1.16:../../time/p5-TimeDate
-DEPENDS+= p5-MailTools>=1.74:../../mail/p5-MailTools
-#DEPENDS+= {perl>=5.8.4,p5-MIME-Base64>=3.01}:../../converters/p5-MIME-Base64
-DEPENDS+= p5-MIME-tools>=5.406:../../mail/p5-MIME-tools
+# mod_perl
+DEPENDS+= ap2[0-9]-perl-[0-9]*:../../www/ap2-perl
+DEPENDS+= p5-CGI-[0-9]*:../../www/p5-CGI
+DEPENDS+= p5-Digest-SHA-[0-9]*:../../security/p5-Digest-SHA
+DEPENDS+= p5-TimeDate-[0-9]*:../../time/p5-TimeDate
+DEPENDS+= p5-DateTime-[0-9]*:../../time/p5-DateTime
+DEPENDS+= p5-DateTime-TimeZone-[0-9]*:../../time/p5-DateTime-TimeZone
+DEPENDS+= p5-DBI-[0-9]*:../../databases/p5-DBI
+DEPENDS+= p5-Template-Toolkit-[0-9]*:../../www/p5-Template-Toolkit
+DEPENDS+= p5-Email-Sender-[0-9]*:../../mail/p5-Email-Sender
+DEPENDS+= p5-Email-MIME-[0-9]*:../../mail/p5-Email-MIME
+DEPENDS+= p5-URI-[0-9]*:../../www/p5-URI
+DEPENDS+= p5-List-MoreUtils-[0-9]*:../../devel/p5-List-MoreUtils
+DEPENDS+= p5-Math-Random-ISAAC-[0-9]*:../../math/p5-Math-Random-ISAAC
+DEPENDS+= p5-File-Slurp-[0-9]*:../../devel/p5-File-Slurp
+DEPENDS+= p5-JSON-XS-[0-9]*:../../converters/p5-JSON-XS
-PKG_DESTDIR_SUPPORT= destdir
+DEPENDS+= p5-GD-[0-9]*:../../graphics/p5-GD
+DEPENDS+= p5-Chart-[0-9]*:../../graphics/p5-Chart
+DEPENDS+= libwww-[0-9]*:../../www/libwww
+DEPENDS+= p5-Template-GD-[0-9]*:../../graphics/p5-Template-GD
+DEPENDS+= p5-GDTextUtil-[0-9]*:../../graphics/p5-GDTextUtil
+DEPENDS+= p5-GDGraph-[0-9]*:../../graphics/p5-GDGraph
+DEPENDS+= p5-MIME-tools-[0-9]*:../../mail/p5-MIME-tools
+DEPENDS+= p5-XML-Twig-[0-9]*:../../textproc/p5-XML-Twig
+DEPENDS+= p5-PatchReader-[0-9]*:../../devel/p5-PatchReader
+DEPENDS+= p5-perl-ldap-[0-9]*:../../databases/p5-perl-ldap
+DEPENDS+= p5-Authen-SASL-[0-9]*:../../security/p5-Authen-SASL
+DEPENDS+= p5-Net-SMTP-SSL-[0-9]*:../../mail/p5-Net-SMTP-SSL
+DEPENDS+= p5-RadiusPerl-[0-9]*:../../net/p5-RadiusPerl
+DEPENDS+= p5-SOAP-Lite-[0-9]*:../../net/p5-SOAP-Lite
+DEPENDS+= p5-XMLRPC-Lite-[0-9]*:../../net/p5-XMLRPC-Lite
+DEPENDS+= p5-JSON-RPC-[0-9]*:../../www/p5-JSON-RPC
+DEPENDS+= p5-Test-Taint-[0-9]*:../../devel/p5-Test-Taint
+DEPENDS+= p5-HTML-Parser-[0-9]*:../../www/p5-HTML-Parser
+DEPENDS+= p5-HTML-Scrubber-[0-9]*:../../www/p5-HTML-Scrubber
+DEPENDS+= p5-Encode-[0-9]*:../../textproc/p5-Encode
+DEPENDS+= p5-Encode-Detect-[0-9]*:../../textproc/p5-Encode-Detect
+DEPENDS+= p5-Email-Reply-[0-9]*:../../mail/p5-Email-Reply
+DEPENDS+= p5-HTML-FormatText-WithLinks-[0-9]*:../../textproc/p5-HTML-FormatText-WithLinks
+DEPENDS+= p5-TheSchwartz-[0-9]*:../../devel/p5-TheSchwartz
+DEPENDS+= p5-Daemon-Generic-[0-9]*:../../sysutils/p5-Daemon-Generic
+DEPENDS+= p5-File-MimeInfo-[0-9]*:../../devel/p5-File-MimeInfo
+DEPENDS+= p5-IO-stringy-[0-9]*:../../devel/p5-IO-stringy
+DEPENDS+= p5-Cache-Memcached-[0-9]*:../../devel/p5-Cache-Memcached
+DEPENDS+= p5-File-Copy-Recursive-[0-9]*:../../sysutils/p5-File-Copy-Recursive
+DEPENDS+= p5-File-Which-[0-9]*:../../devel/p5-File-Which
+
+# DEPENDS+= p5-DBI>=1.41:../../databases/p5-DBI
+# DEPENDS+= p5-Template-Toolkit>=2.15:../../www/p5-Template-Toolkit
+# DEPENDS+= p5-TimeDate>=1.16:../../time/p5-TimeDate
+# DEPENDS+= p5-Email-Send>=2.00:../../mail/p5-Email-Send
+# DEPENDS+= p5-Email-MIME>=1.903:../../mail/p5-Email-MIME
.include "../../mk/bsd.prefs.mk"
.include "options.mk"
@@ -33,22 +73,22 @@
SENDMAIL?= /usr/sbin/sendmail
CVS?= /usr/bin/cvs
-BUILD_DEFS+= SENDMAIL CVS
+BUILD_DEFS+= SENDMAIL CVS APACHE_USER APACHE_GROUP
+PERL5_REQD+= 5.8.1
PKG_USERS_VARS+= APACHE_USER
PKG_GROUPS_VARS+= BZ_WEB_GROUP APACHE_GROUP
-MESSAGE_SUBST+= BZDIR=${BZDIR:Q} PKG_SYSCONFDIR=${PKG_SYSCONFDIR:Q}
+MESSAGE_SUBST+= BZDIR=${BZDIR} PKG_SYSCONFDIR=${PKG_SYSCONFDIR}
-BZDIR= ${PREFIX}/share/bugzilla
-EGDIR= ${PREFIX}/share/examples/bugzilla
-DOCDIR= ${PREFIX}/share/doc/bugzilla
-CONF_FILES= ${EGDIR}/bugzilla.conf ${PKG_SYSCONFDIR}/bugzilla.conf
+BZDIR= ${PREFIX}/share/bugzilla
+EGDIR= ${PREFIX}/share/examples/bugzilla
+DOCDIR= ${PREFIX}/share/doc/bugzilla
+CONF_FILES= ${EGDIR}/bugzilla.conf ${PKG_SYSCONFDIR}/bugzilla.conf
CONF_FILES_PERMS= ${EGDIR}/localconfig ${BZDIR}/localconfig \
${APACHE_USER} ${SHAREGRP} 0400
-PAX_DIRS= Bugzilla skins template
-REPLACE_PERL+= *.pl *.cgi
+REPLACE_PERL+= *.pl *.cgi docs/makedocs.pl
SUBST_CLASSES+= conf
SUBST_STAGE.conf= pre-install
@@ -61,55 +101,51 @@
SUBST_SED.conf+= -e "s|@DBDRIVER@|${DBDRIVER}|g"
SUBST_SED.conf+= -e "s|/usr/lib/sendmail|${SENDMAIL}|g"
+SUBST_CLASSES+= diff
+SUBST_STAGE.diff= post-configure
+SUBST_MESSAGE.diff= Fixing diff path used for Patch Viewer (Ignore depending on OS)
+SUBST_FILES.diff= localconfig
+SUBST_SED.diff= -e "s|\$diffpath = .*|\$diffpath = \'${DIFF}\';|" -e "s|/diff||"
+
+INSTALLATION_DIRS+= ${DOCDIR} ${DOCDIR}/en ${EGDIR} ${BZDIR} ${BZDIR}/Bugzilla
+INSTALLATION_DIRS+= ${BZDIR}/js ${BZDIR}/lib ${BZDIR}/template ${BZDIR}/skins
+INSTALLATION_DIRS+= ${BZDIR}/docs ${BZDIR}/docs/en ${BZDIR}/docs/en/html
+INSTALLATION_DIRS+= ${BZDIR}/images ${BZDIR}/docs/en/html/api
+INSTALLATION_DIRS+= ${BZDIR}/docs/en/html/api/Bugzilla
+.for i in data contrib t xt template lib graphs skins
+INSTALLATION_DIRS+= ${BZDIR}/${i}
+.endfor
+
+FILES_SUBST+= WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \
+ BZDIR=${BZDIR}
+
+do-configure:
+ (cd ${WRKSRC}; ./checksetup.pl)
+
post-extract:
- ${FIND} ${WRKSRC} -type d -name CVS | ${XARGS} ${RM} -rf
- ${FIND} ${WRKSRC} -type f -name ".cvsignore" | ${XARGS} ${RM} -f
- ${CP} ${FILESDIR}/bugzilla.conf ${WRKSRC}
- ${CP} ${FILESDIR}/localconfig ${WRKSRC}
+ ${CP} ${FILESDIR}/bugzilla.conf ${WRKSRC}
+ ${CP} ${FILESDIR}/localconfig ${WRKSRC}
do-install:
- ${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
- ${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
- ${INSTALL_DATA_DIR} ${DESTDIR}${BZDIR}
- ${INSTALL_DATA_DIR} ${DESTDIR}${BZDIR}/Bugzilla
- ${INSTALL_DATA_DIR} ${DESTDIR}${BZDIR}/js
- ${INSTALL_DATA_DIR} ${DESTDIR}${BZDIR}/template
- ${INSTALL_DATA_DIR} ${DESTDIR}${BZDIR}/skins
- ${INSTALL_DATA_DIR} ${DESTDIR}${BZDIR}/docs
- ${INSTALL_DATA_DIR} ${DESTDIR}${BZDIR}/docs/html
- ${INSTALL_DATA_DIR} ${DESTDIR}${BZDIR}/images
-
- ${INSTALL_DATA} ${WRKSRC}/docs/txt/Bugzilla-Guide.txt ${DESTDIR}${DOCDIR}
- ${INSTALL_DATA} ${WRKSRC}/docs/rel_notes.txt ${DESTDIR}${DOCDIR}
- ${INSTALL_DATA} ${WRKSRC}/QUICKSTART ${DESTDIR}${DOCDIR}
- ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${DOCDIR}
- ${INSTALL_DATA} ${WRKSRC}/UPGRADING ${DESTDIR}${DOCDIR}
- ${INSTALL_DATA} ${WRKSRC}/UPGRADING-pre-2.8 ${DESTDIR}${DOCDIR}
-
- ${INSTALL_SCRIPT} ${WRKSRC}/*.cgi ${DESTDIR}${BZDIR}
- ${INSTALL_SCRIPT} ${WRKSRC}/*.pl ${DESTDIR}${BZDIR}
- ${INSTALL_DATA} ${WRKSRC}/*.js ${DESTDIR}${BZDIR}
- ${INSTALL_DATA} ${WRKSRC}/robots.txt ${DESTDIR}${BZDIR}
- ${INSTALL_DATA} ${WRKSRC}/bugzilla.dtd ${DESTDIR}${BZDIR}
- ${INSTALL_DATA} ${WRKSRC}/duplicates.xul ${DESTDIR}${BZDIR}
- ${INSTALL_DATA} ${WRKSRC}/Bugzilla.pm ${DESTDIR}${BZDIR}
-
- ${INSTALL_DATA} ${WRKSRC}/bugzilla.conf ${DESTDIR}${EGDIR}
- ${INSTALL_DATA} ${WRKSRC}/localconfig ${DESTDIR}${EGDIR}
-
- ${INSTALL_DATA} ${WRKSRC}/images/*.png ${DESTDIR}${BZDIR}/images
- ${INSTALL_DATA} ${WRKSRC}/js/*.js ${DESTDIR}${BZDIR}/js
- ${INSTALL_DATA} ${WRKSRC}/docs/html/*.html ${DESTDIR}${BZDIR}/docs/html
-
-.for i in ${PAX_DIRS}
- cd ${WRKSRC}/${i} && pax -rw . ${DESTDIR}${BZDIR}/${i}
- ${FIND} ${DESTDIR}${BZDIR}/${i} -type f | ${XARGS} ${CHMOD} ${SHAREMODE}
- ${FIND} ${DESTDIR}${BZDIR}/${i} -type d | ${XARGS} ${CHMOD} ${PKGDIRMODE}
- ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${BZDIR}/${i}
+.for i in ${BZDIR} ${EGDIR} ${DOCDIR} ${BZDIR}/lib
+ ${INSTALL_DATA_DIR} ${DESTDIR}${i}
.endfor
-
- ${CHMOD} ${SHAREMODE} ${DESTDIR}${BZDIR}/globals.pl
+ (cd ${WRKSRC} ;\
+ pax -rw -pmp docs ${DESTDIR}${BZDIR} ;\
+ ${INSTALL_SCRIPT} *.cgi *.pl ${DESTDIR}${BZDIR} ;\
+ ${INSTALL_SCRIPT} robots.txt ${DESTDIR}${BZDIR} ;\
+ ${INSTALL_DATA} Bugzilla.pm ${DESTDIR}${BZDIR} ;\
+ ${INSTALL_DATA} README ${DESTDIR}${DOCDIR} ;\
+ ${INSTALL_DATA} localconfig ${DESTDIR}${EGDIR} ;\
+ ${INSTALL_DATA} bugzilla.conf ${DESTDIR}${EGDIR} ;\
+ ${INSTALL_DATA} images/*.png ${DESTDIR}${BZDIR}/images ;\
+ ${INSTALL_DATA} images/favicon.ico ${DESTDIR}${BZDIR} ;\
+ pax -rw -pmp Bugzilla ${DESTDIR}${BZDIR} ;\
+ pax -rw -pmp js ${DESTDIR}${BZDIR} ;\
+ pax -rw -pmp template ${DESTDIR}${BZDIR} ;\
+ )
+ ${RM} ${DESTDIR}${BZDIR}/Bugzilla/Install/Filesystem.pm.orig
.include "../../mk/apache.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 3e36f7f55db5 -r 29b829cbfdfd devel/bugzilla/PLIST
--- a/devel/bugzilla/PLIST Fri Mar 17 15:50:20 2017 +0000
+++ b/devel/bugzilla/PLIST Fri Mar 17 16:26:30 2017 +0000
@@ -1,168 +1,266 @@
-@comment $NetBSD: PLIST,v 1.17 2009/06/14 17:48:36 joerg Exp $
+@comment $NetBSD: PLIST,v 1.18 2017/03/17 16:26:30 mef Exp $
share/bugzilla/Bugzilla.pm
share/bugzilla/Bugzilla/Attachment.pm
+share/bugzilla/Bugzilla/Attachment/PatchReader.pm
share/bugzilla/Bugzilla/Auth.pm
-share/bugzilla/Bugzilla/Auth/Login/WWW.pm
-share/bugzilla/Bugzilla/Auth/Login/WWW/CGI.pm
-share/bugzilla/Bugzilla/Auth/Login/WWW/CGI/Cookie.pm
-share/bugzilla/Bugzilla/Auth/Login/WWW/Env.pm
-share/bugzilla/Bugzilla/Auth/README
+share/bugzilla/Bugzilla/Auth/Login.pm
+share/bugzilla/Bugzilla/Auth/Login/APIKey.pm
+share/bugzilla/Bugzilla/Auth/Login/CGI.pm
+share/bugzilla/Bugzilla/Auth/Login/Cookie.pm
+share/bugzilla/Bugzilla/Auth/Login/Env.pm
+share/bugzilla/Bugzilla/Auth/Login/Stack.pm
+share/bugzilla/Bugzilla/Auth/Persist/Cookie.pm
+share/bugzilla/Bugzilla/Auth/Verify.pm
share/bugzilla/Bugzilla/Auth/Verify/DB.pm
share/bugzilla/Bugzilla/Auth/Verify/LDAP.pm
+share/bugzilla/Bugzilla/Auth/Verify/RADIUS.pm
+share/bugzilla/Bugzilla/Auth/Verify/Stack.pm
share/bugzilla/Bugzilla/Bug.pm
share/bugzilla/Bugzilla/BugMail.pm
+share/bugzilla/Bugzilla/BugUrl.pm
+share/bugzilla/Bugzilla/BugUrl/Bugzilla.pm
+share/bugzilla/Bugzilla/BugUrl/Bugzilla/Local.pm
+share/bugzilla/Bugzilla/BugUrl/Debian.pm
+share/bugzilla/Bugzilla/BugUrl/GitHub.pm
+share/bugzilla/Bugzilla/BugUrl/Google.pm
+share/bugzilla/Bugzilla/BugUrl/JIRA.pm
+share/bugzilla/Bugzilla/BugUrl/Launchpad.pm
+share/bugzilla/Bugzilla/BugUrl/MantisBT.pm
+share/bugzilla/Bugzilla/BugUrl/SourceForge.pm
+share/bugzilla/Bugzilla/BugUrl/Trac.pm
+share/bugzilla/Bugzilla/BugUserLastVisit.pm
share/bugzilla/Bugzilla/CGI.pm
share/bugzilla/Bugzilla/Chart.pm
share/bugzilla/Bugzilla/Classification.pm
+share/bugzilla/Bugzilla/Comment.pm
+share/bugzilla/Bugzilla/Comment/TagWeights.pm
share/bugzilla/Bugzilla/Component.pm
share/bugzilla/Bugzilla/Config.pm
share/bugzilla/Bugzilla/Config/Admin.pm
+share/bugzilla/Bugzilla/Config/Advanced.pm
share/bugzilla/Bugzilla/Config/Attachment.pm
share/bugzilla/Bugzilla/Config/Auth.pm
share/bugzilla/Bugzilla/Config/BugChange.pm
share/bugzilla/Bugzilla/Config/BugFields.pm
-share/bugzilla/Bugzilla/Config/BugMove.pm
share/bugzilla/Bugzilla/Config/Common.pm
share/bugzilla/Bugzilla/Config/Core.pm
Home |
Main Index |
Thread Index |
Old Index