pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

harmony: add mozilla's fork of bugzilla



Module Name:	pkgsrc-wip
Committed By:	coypu <coypu%sdf.org@localhost>
Pushed By:	coypu
Date:		Sun Mar 11 16:12:13 2018 +0200
Changeset:	07cbbdff7afb45fcf3999945eaeaa93edb82a485

Added Files:
	harmony/DESCR
	harmony/INSTALL
	harmony/MESSAGE
	harmony/Makefile
	harmony/PLIST
	harmony/TODO
	harmony/distinfo
	harmony/files/bugzilla.conf
	harmony/files/localconfig
	harmony/options.mk
	harmony/patches/patch-Makefile.PL

Log Message:
harmony: add mozilla's fork of bugzilla

Bugzilla is a "Defect Tracking System" or "Bug-Tracking System". Defect
Tracking Systems allow individual or groups of developers to keep track of
outstanding bugs in their product effectively. Most commercial defect-tracking
software vendors charge enormous licensing fees. Despite being "free", Bugzilla
has many features its expensive counterparts lack. Consequently, Bugzilla has
quickly become a favorite of hundreds of organizations across the globe.

What Does Bugzilla Do?

- Track bugs and code changes
- Communicate with teammates
- Submit and review patches
- Manage quality assurance (QA)

Bugzilla can help you get a handle on the software development process.
Successful projects often are the result of successful organization and
communication. Bugzilla is a powerful tool that will help your team get
organized and communicate effectively.

Harmony is an upstream of Mozilla's highly customized version, BMO.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=07cbbdff7afb45fcf3999945eaeaa93edb82a485

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 harmony/DESCR                     |   20 +
 harmony/INSTALL                   |   16 +
 harmony/MESSAGE                   |   24 +
 harmony/Makefile                  |  169 ++++
 harmony/PLIST                     | 1749 +++++++++++++++++++++++++++++++++++++
 harmony/TODO                      |    4 +
 harmony/distinfo                  |    7 +
 harmony/files/bugzilla.conf       |   16 +
 harmony/files/localconfig         |   90 ++
 harmony/options.mk                |  125 +++
 harmony/patches/patch-Makefile.PL |   62 ++
 11 files changed, 2282 insertions(+)

diffs:
diff --git a/harmony/DESCR b/harmony/DESCR
new file mode 100644
index 0000000000..efacc93fa2
--- /dev/null
+++ b/harmony/DESCR
@@ -0,0 +1,20 @@
+Bugzilla is a "Defect Tracking System" or "Bug-Tracking System". Defect
+Tracking Systems allow individual or groups of developers to keep track of
+outstanding bugs in their product effectively. Most commercial defect-tracking
+software vendors charge enormous licensing fees. Despite being "free", Bugzilla
+has many features its expensive counterparts lack. Consequently, Bugzilla has
+quickly become a favorite of hundreds of organizations across the globe.
+
+What Does Bugzilla Do?
+
+- Track bugs and code changes
+- Communicate with teammates
+- Submit and review patches
+- Manage quality assurance (QA)
+
+Bugzilla can help you get a handle on the software development process.
+Successful projects often are the result of successful organization and
+communication. Bugzilla is a powerful tool that will help your team get
+organized and communicate effectively.
+
+Harmony is an upstream of Mozilla's highly customized version, BMO.
diff --git a/harmony/INSTALL b/harmony/INSTALL
new file mode 100644
index 0000000000..3842643090
--- /dev/null
+++ b/harmony/INSTALL
@@ -0,0 +1,16 @@
+#!@SH@
+#
+# $NetBSD: INSTALL,v 1.1 2017/01/12 15:07:38 ryoon Exp $
+
+WWWGRP="@WWWGRP@"
+WWWOWN="@WWWOWN@"
+BZDIR="@BZDIR@"
+
+case "${STAGE}" in
+POST-INSTALL)
+	cd ${BZDIR} &&
+		${CHOWN} -R ${WWWOWN} ${BZDIR} &&
+		${CHGRP} -R ${WWWGRP} ${BZDIR} &&
+		${CHMOD}         0755 ${BZDIR}
+	;;
+esac
diff --git a/harmony/MESSAGE b/harmony/MESSAGE
new file mode 100644
index 0000000000..bc42857c39
--- /dev/null
+++ b/harmony/MESSAGE
@@ -0,0 +1,24 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.2 2007/09/21 19:32:55 adrianp Exp $
+
+To complete the setup you will need to read the Bugzilla-Guide.txt in order
+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};
+	./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:
+
+	Include ${PKG_SYSCONFDIR}/bugzilla.conf
+
+to make Bugzilla accessible through:
+
+	http://localhost/bugzilla/index.cgi
+
+IMPORTANTLY: CHANGE YOUR DATABASE PASSWORD FROM THE DEFAULT !!
+
+===========================================================================
diff --git a/harmony/Makefile b/harmony/Makefile
new file mode 100644
index 0000000000..b84f284333
--- /dev/null
+++ b/harmony/Makefile
@@ -0,0 +1,169 @@
+# $NetBSD: Makefile,v 1.26 2017/01/16 14:06:43 mef Exp $
+
+GITHUB_TAG=	32272f8af620a0eebb0fb5b3e21389719abca17e
+GITHUB_PROJECT=	harmony
+DISTNAME=	harmony-${GITHUB_TAG}
+PKGNAME=	harmony-0.0.20180305
+CATEGORIES=	www devel
+MASTER_SITES=	${MASTER_SITE_GITHUB:=bugzilla/}
+
+MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=	http://www.bugzilla.org/
+COMMENT=	Web based bug tracking system
+LICENSE=	mpl-2.0
+
+# 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-Send-[0-9]*:../../mail/p5-Email-Send
+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
+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-Sereal-[0-9]*:../../converters/p5-Sereal
+DEPENDS+=	p5-Log-Log4perl-[0-9]*:../../devel/p5-Log-Log4perl
+DEPENDS+=	p5-Log-Dispatch-[0-9]*:../../devel/p5-Log-Dispatch
+DEPENDS+=	p5-Algorithm-BloomFilter-[0-9]*:../../math/p5-Algorithm-BloomFilter
+DEPENDS+=	p5-Class-XSAccessor-[0-9]*:../../devel/p5-Class-XSAccessor
+DEPENDS+=	p5-Crypt-OpenPGP-[0-9]*:../../security/p5-Crypt-OpenPGP
+DEPENDS+=	p5-Crypt-SMIME-[0-9]*:../../security/p5-Crypt-SMIME
+DEPENDS+=	p5-Devel-NYTProf-[0-9]*:../../devel/p5-Devel-NYTProf
+DEPENDS+=	p5-Data-Password-passwdqc-[0-9]*:../../security/p5-Data-Password-passwdqc
+DEPENDS+=	p5-Text-CSV_XS-[0-9]*:../../textproc/p5-Text-CSV_XS
+DEPENDS+=	p5-URI-Escape-XS-[0-9]*:../../www/p5-URI-Escape-XS
+DEPENDS+=	p5-HTML-Escape-[0-9]*:../../www/p5-HTML-Escape
+DEPENDS+=	p5-Taint-Util-[0-9]*:../../devel/p5-Taint-Util
+DEPENDS+=	p5-XML-Simple-[0-9]*:../../textproc/p5-XML-Simple
+DEPENDS+=	p5-Plack-[0-9]*:../../www/p5-Plack
+DEPENDS+=	p5-DBD-mysql-[0-9]*:../../databases/p5-DBD-mysql
+DEPENDS+=	p5-CGI-Compile-[0-9]*:../../www/p5-CGI-Compile
+DEPENDS+=	p5-Cache-Memcached-Fast-[0-9]*:../../devel/p5-Cache-Memcached-Fast
+DEPENDS+=	p5-Email-MIME-Attachment-Stripper-[0-9]*:../../mail/p5-Email-MIME-Attachment-Stripper
+DEPENDS+=	p5-JSON-RPC-[0-9]*:../../www/p5-JSON-RPC
+DEPENDS+=	Text-MultiMarkdown-[0-9]*:../../textproc/p5-MultiMarkdown
+DEPENDS+=	p5-MooX-StrictConstructor-[0-9]*:../../devel/p5-MooX-StrictConstructor
+DEPENDS+=	p5-Tie-IxHash-[0-9]*:../../devel/p5-Tie-IxHash
+DEPENDS+=	p5-Search-Elasticsearch-[0-9]*:../../devel/p5-Search-Elasticsearch
+
+.include "../../mk/bsd.prefs.mk"
+.include "options.mk"
+
+USE_TOOLS+=	pax perl:run
+NO_BUILD=	YES
+
+BZ_WEB_GROUP?=	${APACHE_GROUP}
+SENDMAIL?=	/usr/sbin/sendmail
+CVS?=		/usr/bin/cvs
+
+BUILD_DEFS+=	SENDMAIL CVS APACHE_USER APACHE_GROUP
+
+PKG_USERS_VARS+=	APACHE_USER
+PKG_GROUPS_VARS+=	BZ_WEB_GROUP APACHE_GROUP
+
+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
+CONF_FILES_PERMS=	${EGDIR}/localconfig ${BZDIR}/localconfig \
+			${APACHE_USER} ${SHAREGRP} 0400
+
+REPLACE_PERL+=		*.pl *.cgi docs/makedocs.pl
+
+SUBST_CLASSES+=		conf
+SUBST_STAGE.conf=	pre-install
+SUBST_MESSAGE.conf=	Fixing configuration files.
+SUBST_FILES.conf=	bugzilla.conf localconfig Bugzilla/BugMail.pm
+SUBST_SED.conf=		-e "s|@BZ_WEB_GROUP@|${BZ_WEB_GROUP}|g"
+SUBST_SED.conf+=	-e "s|@PREFIX@|${PREFIX}|g"
+SUBST_SED.conf+=	-e "s|@BZDIR@|${BZDIR}|g"
+SUBST_SED.conf+=	-e "s|@CVS@|${CVS}|g"
+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:
+	${CP} ${FILESDIR}/bugzilla.conf	${WRKSRC}
+	${CP} ${FILESDIR}/localconfig	${WRKSRC}
+
+do-install:
+
+.for i in ${BZDIR} ${EGDIR} ${DOCDIR} ${BZDIR}/lib
+	${INSTALL_DATA_DIR} ${DESTDIR}${i}
+.endfor
+	(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} ;\
+	)
+
+.include "../../mk/apache.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/harmony/PLIST b/harmony/PLIST
new file mode 100644
index 0000000000..f6c68b2e38
--- /dev/null
+++ b/harmony/PLIST
@@ -0,0 +1,1749 @@
+@comment $NetBSD$
+share/bugzilla/Bugzilla.pm
+share/bugzilla/Bugzilla/Attachment.pm
+share/bugzilla/Bugzilla/Attachment/Archive.pm
+share/bugzilla/Bugzilla/Attachment/Database.pm
+share/bugzilla/Bugzilla/Attachment/FileSystem.pm
+share/bugzilla/Bugzilla/Attachment/PatchReader.pm
+share/bugzilla/Bugzilla/Attachment/S3.pm
+share/bugzilla/Bugzilla/Auth.pm
+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/Bloomfilter.pm
+share/bugzilla/Bugzilla/Bug.pm
+share/bugzilla/Bugzilla/BugMail.pm
+share/bugzilla/Bugzilla/BugUrl.pm
+share/bugzilla/Bugzilla/BugUrl/Aha.pm
+share/bugzilla/Bugzilla/BugUrl/Bugzilla.pm
+share/bugzilla/Bugzilla/BugUrl/Bugzilla/Local.pm
+share/bugzilla/Bugzilla/BugUrl/Chromium.pm
+share/bugzilla/Bugzilla/BugUrl/Debian.pm
+share/bugzilla/Bugzilla/BugUrl/Edge.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/MozSupport.pm
+share/bugzilla/Bugzilla/BugUrl/ServiceNow.pm
+share/bugzilla/Bugzilla/BugUrl/SourceForge.pm
+share/bugzilla/Bugzilla/BugUrl/Splat.pm
+share/bugzilla/Bugzilla/BugUrl/Trac.pm
+share/bugzilla/Bugzilla/BugUrl/WebCompat.pm
+share/bugzilla/Bugzilla/BugUserLastVisit.pm
+share/bugzilla/Bugzilla/CGI.pm
+share/bugzilla/Bugzilla/CGI/ContentSecurityPolicy.pm
+share/bugzilla/Bugzilla/CPAN.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/Common.pm
+share/bugzilla/Bugzilla/Config/DependencyGraph.pm
+share/bugzilla/Bugzilla/Config/Elastic.pm
+share/bugzilla/Bugzilla/Config/General.pm
+share/bugzilla/Bugzilla/Config/GroupSecurity.pm
+share/bugzilla/Bugzilla/Config/LDAP.pm
+share/bugzilla/Bugzilla/Config/MTA.pm
+share/bugzilla/Bugzilla/Config/PatchViewer.pm
+share/bugzilla/Bugzilla/Config/Query.pm
+share/bugzilla/Bugzilla/Config/RADIUS.pm
+share/bugzilla/Bugzilla/Config/ShadowDB.pm
+share/bugzilla/Bugzilla/Config/UserMatch.pm
+share/bugzilla/Bugzilla/Constants.pm
+share/bugzilla/Bugzilla/DB.pm
+share/bugzilla/Bugzilla/DB/Mysql.pm
+share/bugzilla/Bugzilla/DB/Oracle.pm
+share/bugzilla/Bugzilla/DB/Pg.pm
+share/bugzilla/Bugzilla/DB/Schema.pm
+share/bugzilla/Bugzilla/DB/Schema/Mysql.pm
+share/bugzilla/Bugzilla/DB/Schema/Oracle.pm
+share/bugzilla/Bugzilla/DB/Schema/Pg.pm
+share/bugzilla/Bugzilla/DB/Schema/Sqlite.pm
+share/bugzilla/Bugzilla/DB/Sqlite.pm
+share/bugzilla/Bugzilla/DaemonControl.pm
+share/bugzilla/Bugzilla/DuoAPI.pm
+share/bugzilla/Bugzilla/DuoWeb.pm
+share/bugzilla/Bugzilla/Elastic.pm
+share/bugzilla/Bugzilla/Elastic/Indexer.pm
+share/bugzilla/Bugzilla/Elastic/Role/ChildObject.pm
+share/bugzilla/Bugzilla/Elastic/Role/HasClient.pm
+share/bugzilla/Bugzilla/Elastic/Role/Object.pm
+share/bugzilla/Bugzilla/Elastic/Role/Search.pm
+share/bugzilla/Bugzilla/Elastic/Search.pm
+share/bugzilla/Bugzilla/Elastic/Search/FakeCGI.pm
+share/bugzilla/Bugzilla/Error.pm
+share/bugzilla/Bugzilla/Error/Template.pm
+share/bugzilla/Bugzilla/Extension.pm
+share/bugzilla/Bugzilla/Field.pm
+share/bugzilla/Bugzilla/Field/Choice.pm
+share/bugzilla/Bugzilla/Field/ChoiceInterface.pm
+share/bugzilla/Bugzilla/Flag.pm
+share/bugzilla/Bugzilla/FlagType.pm
+share/bugzilla/Bugzilla/Group.pm
+share/bugzilla/Bugzilla/Hook.pm
+share/bugzilla/Bugzilla/Install.pm
+share/bugzilla/Bugzilla/Install/DB.pm
+share/bugzilla/Bugzilla/Install/Filesystem.pm
+share/bugzilla/Bugzilla/Install/Localconfig.pm
+share/bugzilla/Bugzilla/Install/Requirements.pm
+share/bugzilla/Bugzilla/Install/Util.pm
+share/bugzilla/Bugzilla/Job/BugMail.pm
+share/bugzilla/Bugzilla/Job/Mailer.pm
+share/bugzilla/Bugzilla/JobQueue.pm
+share/bugzilla/Bugzilla/JobQueue/Runner.pm
+share/bugzilla/Bugzilla/Keyword.pm
+share/bugzilla/Bugzilla/Logging.pm
+share/bugzilla/Bugzilla/MFA.pm
+share/bugzilla/Bugzilla/MFA/Dummy.pm
+share/bugzilla/Bugzilla/MFA/Duo.pm
+share/bugzilla/Bugzilla/MFA/TOTP.pm
+share/bugzilla/Bugzilla/Mailer.pm
+share/bugzilla/Bugzilla/Memcached.pm
+share/bugzilla/Bugzilla/Metrics/Collector.pm
+share/bugzilla/Bugzilla/Metrics/Memcached.pm
+share/bugzilla/Bugzilla/Metrics/Mysql.pm
+share/bugzilla/Bugzilla/Metrics/Reporter.pm
+share/bugzilla/Bugzilla/Metrics/Reporter/ElasticSearch.pm
+share/bugzilla/Bugzilla/Metrics/Reporter/STDERR.pm
+share/bugzilla/Bugzilla/Metrics/Template.pm
+share/bugzilla/Bugzilla/Metrics/Template/Context.pm
+share/bugzilla/Bugzilla/Migrate.pm
+share/bugzilla/Bugzilla/Migrate/Gnats.pm
+share/bugzilla/Bugzilla/Milestone.pm
+share/bugzilla/Bugzilla/ModPerl.pm
+share/bugzilla/Bugzilla/ModPerl/BasicAuth.pm
+share/bugzilla/Bugzilla/ModPerl/BlockIP.pm
+share/bugzilla/Bugzilla/ModPerl/StartupFix.pm
+share/bugzilla/Bugzilla/Object.pm
+share/bugzilla/Bugzilla/PSGI.pm
+share/bugzilla/Bugzilla/PatchReader.pm
+share/bugzilla/Bugzilla/PatchReader/AddCVSContext.pm
+share/bugzilla/Bugzilla/PatchReader/Base.pm
+share/bugzilla/Bugzilla/PatchReader/CVSClient.pm
+share/bugzilla/Bugzilla/PatchReader/DiffPrinter/raw.pm
+share/bugzilla/Bugzilla/PatchReader/DiffPrinter/template.pm
+share/bugzilla/Bugzilla/PatchReader/FilterPatch.pm
+share/bugzilla/Bugzilla/PatchReader/FixPatchRoot.pm
+share/bugzilla/Bugzilla/PatchReader/NarrowPatch.pm
+share/bugzilla/Bugzilla/PatchReader/PatchInfoGrabber.pm
+share/bugzilla/Bugzilla/PatchReader/Raw.pm
+share/bugzilla/Bugzilla/Product.pm
+share/bugzilla/Bugzilla/RNG.pm
+share/bugzilla/Bugzilla/S3.pm
+share/bugzilla/Bugzilla/S3/Bucket.pm
+share/bugzilla/Bugzilla/Search.pm
+share/bugzilla/Bugzilla/Search/Clause.pm
+share/bugzilla/Bugzilla/Search/ClauseGroup.pm
+share/bugzilla/Bugzilla/Search/Condition.pm
+share/bugzilla/Bugzilla/Search/Quicksearch.pm
+share/bugzilla/Bugzilla/Search/Recent.pm
+share/bugzilla/Bugzilla/Search/Saved.pm
+share/bugzilla/Bugzilla/Send/Sendmail.pm
+share/bugzilla/Bugzilla/Sentry.pm
+share/bugzilla/Bugzilla/Series.pm
+share/bugzilla/Bugzilla/Status.pm
+share/bugzilla/Bugzilla/Template.pm
+share/bugzilla/Bugzilla/Template/Context.pm
+share/bugzilla/Bugzilla/Template/Plugin/Bugzilla.pm
+share/bugzilla/Bugzilla/Template/Plugin/Hook.pm
+share/bugzilla/Bugzilla/Template/Plugin/User.pm
+share/bugzilla/Bugzilla/Template/PreloadProvider.pm
+share/bugzilla/Bugzilla/Test/Util.pm
+share/bugzilla/Bugzilla/Token.pm
+share/bugzilla/Bugzilla/Update.pm
+share/bugzilla/Bugzilla/User.pm
+share/bugzilla/Bugzilla/User/APIKey.pm
+share/bugzilla/Bugzilla/User/Session.pm
+share/bugzilla/Bugzilla/User/Setting.pm
+share/bugzilla/Bugzilla/User/Setting/Lang.pm
+share/bugzilla/Bugzilla/User/Setting/Skin.pm
+share/bugzilla/Bugzilla/User/Setting/Timezone.pm
+share/bugzilla/Bugzilla/UserAgent.pm
+share/bugzilla/Bugzilla/Util.pm
+share/bugzilla/Bugzilla/Version.pm
+share/bugzilla/Bugzilla/WebService.pm
+share/bugzilla/Bugzilla/WebService/Bug.pm
+share/bugzilla/Bugzilla/WebService/BugUserLastVisit.pm
+share/bugzilla/Bugzilla/WebService/Bugzilla.pm
+share/bugzilla/Bugzilla/WebService/Classification.pm
+share/bugzilla/Bugzilla/WebService/Constants.pm
+share/bugzilla/Bugzilla/WebService/Elastic.pm
+share/bugzilla/Bugzilla/WebService/Group.pm
+share/bugzilla/Bugzilla/WebService/Product.pm
+share/bugzilla/Bugzilla/WebService/README
+share/bugzilla/Bugzilla/WebService/Server.pm
+share/bugzilla/Bugzilla/WebService/Server/JSONRPC.pm
+share/bugzilla/Bugzilla/WebService/Server/REST.pm
+share/bugzilla/Bugzilla/WebService/Server/REST/Resources/Bug.pm
+share/bugzilla/Bugzilla/WebService/Server/REST/Resources/BugUserLastVisit.pm
+share/bugzilla/Bugzilla/WebService/Server/REST/Resources/Bugzilla.pm
+share/bugzilla/Bugzilla/WebService/Server/REST/Resources/Classification.pm
+share/bugzilla/Bugzilla/WebService/Server/REST/Resources/Elastic.pm
+share/bugzilla/Bugzilla/WebService/Server/REST/Resources/Group.pm
+share/bugzilla/Bugzilla/WebService/Server/REST/Resources/Product.pm
+share/bugzilla/Bugzilla/WebService/Server/REST/Resources/User.pm
+share/bugzilla/Bugzilla/WebService/Server/XMLRPC.pm
+share/bugzilla/Bugzilla/WebService/User.pm
+share/bugzilla/Bugzilla/WebService/Util.pm
+share/bugzilla/Bugzilla/Whine.pm
+share/bugzilla/Bugzilla/Whine/Query.pm
+share/bugzilla/Bugzilla/Whine/Schedule.pm
+share/bugzilla/admin.cgi
+share/bugzilla/attachment.cgi
+share/bugzilla/auth.cgi
+share/bugzilla/buglist.cgi
+share/bugzilla/chart.cgi
+share/bugzilla/checksetup.pl
+share/bugzilla/clean-bug-user-last-visit.pl
+share/bugzilla/colchange.cgi
+share/bugzilla/collectstats.pl
+share/bugzilla/config.cgi
+share/bugzilla/createaccount.cgi
+share/bugzilla/describecomponents.cgi
+share/bugzilla/describekeywords.cgi
+share/bugzilla/docs/en/Makefile
+share/bugzilla/docs/en/images/bzLifecycle.png
+share/bugzilla/docs/en/images/bzLifecycle.xml
+share/bugzilla/docs/en/rst/_static/bugzilla.css
+share/bugzilla/docs/en/rst/about/index.rst
+share/bugzilla/docs/en/rst/administering/categorization.rst
+share/bugzilla/docs/en/rst/administering/custom-fields.rst
+share/bugzilla/docs/en/rst/administering/extensions.rst
+share/bugzilla/docs/en/rst/administering/field-values.rst
+share/bugzilla/docs/en/rst/administering/flags.rst
+share/bugzilla/docs/en/rst/administering/groups.rst
+share/bugzilla/docs/en/rst/administering/index.rst
+share/bugzilla/docs/en/rst/administering/keywords.rst
+share/bugzilla/docs/en/rst/administering/parameters.rst
+share/bugzilla/docs/en/rst/administering/preferences.rst
+share/bugzilla/docs/en/rst/administering/quips.rst
+share/bugzilla/docs/en/rst/administering/users.rst
+share/bugzilla/docs/en/rst/administering/whining.rst
+share/bugzilla/docs/en/rst/administering/workflow.rst
+share/bugzilla/docs/en/rst/api/core/v1/attachment.rst
+share/bugzilla/docs/en/rst/api/core/v1/bug-user-last-visit.rst
+share/bugzilla/docs/en/rst/api/core/v1/bug.rst
+share/bugzilla/docs/en/rst/api/core/v1/bugzilla.rst
+share/bugzilla/docs/en/rst/api/core/v1/classification.rst
+share/bugzilla/docs/en/rst/api/core/v1/comment.rst
+share/bugzilla/docs/en/rst/api/core/v1/field.rst
+share/bugzilla/docs/en/rst/api/core/v1/general.rst
+share/bugzilla/docs/en/rst/api/core/v1/group.rst
+share/bugzilla/docs/en/rst/api/core/v1/index.rst
+share/bugzilla/docs/en/rst/api/core/v1/product.rst
+share/bugzilla/docs/en/rst/api/core/v1/user.rst
+share/bugzilla/docs/en/rst/api/index.rst
+share/bugzilla/docs/en/rst/conf.py
+share/bugzilla/docs/en/rst/index.rst
+share/bugzilla/docs/en/rst/integrating/apis.rst
+share/bugzilla/docs/en/rst/integrating/auth-delegation.rst
+share/bugzilla/docs/en/rst/integrating/extensions.rst
+share/bugzilla/docs/en/rst/integrating/faq.rst
+share/bugzilla/docs/en/rst/integrating/index.rst
+share/bugzilla/docs/en/rst/integrating/languages.rst
+share/bugzilla/docs/en/rst/integrating/skins.rst
+share/bugzilla/docs/en/rst/integrating/templates.rst
+share/bugzilla/docs/en/rst/style.rst
+share/bugzilla/docs/en/rst/using/creating-an-account.rst
+share/bugzilla/docs/en/rst/using/editing.rst
+share/bugzilla/docs/en/rst/using/extensions.rst
+share/bugzilla/docs/en/rst/using/filing.rst
+share/bugzilla/docs/en/rst/using/finding.rst
+share/bugzilla/docs/en/rst/using/index.rst
+share/bugzilla/docs/en/rst/using/preferences.rst
+share/bugzilla/docs/en/rst/using/reports-and-charts.rst
+share/bugzilla/docs/en/rst/using/tips.rst
+share/bugzilla/docs/en/rst/using/understanding.rst
+share/bugzilla/docs/lib/Pod/Simple/HTML/Bugzilla.pm
+share/bugzilla/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm
+share/bugzilla/docs/makedocs.pl
+share/bugzilla/docs/style.css
+share/bugzilla/duplicates.cgi
+share/bugzilla/editclassifications.cgi
+share/bugzilla/editcomponents.cgi
+share/bugzilla/editfields.cgi
+share/bugzilla/editflagtypes.cgi
+share/bugzilla/editgroups.cgi
+share/bugzilla/editkeywords.cgi
+share/bugzilla/editmilestones.cgi
+share/bugzilla/editparams.cgi
+share/bugzilla/editproducts.cgi
+share/bugzilla/editsettings.cgi
+share/bugzilla/editusers.cgi
+share/bugzilla/editvalues.cgi
+share/bugzilla/editversions.cgi
+share/bugzilla/editwhines.cgi
+share/bugzilla/editworkflow.cgi
+share/bugzilla/email_in.pl
+share/bugzilla/enter_bug.cgi
+share/bugzilla/favicon.ico
+share/bugzilla/gen-cpanfile.pl
+share/bugzilla/github.cgi
+share/bugzilla/heartbeat.cgi
+share/bugzilla/images/buggie.png
+share/bugzilla/images/bugzilla-magnifier.png
+share/bugzilla/images/bugzilla-papericon.png
+share/bugzilla/images/bugzilla-person-alternate.png
+share/bugzilla/images/bugzilla-person.png
+share/bugzilla/images/bugzilla-questionmark2.png
+share/bugzilla/images/dropdown.png
+share/bugzilla/images/duo.png
+share/bugzilla/images/grain.png
+share/bugzilla/images/mfa.png
+share/bugzilla/images/noise.png
+share/bugzilla/images/padlock.png
+share/bugzilla/importxml.pl
+share/bugzilla/index.cgi
+share/bugzilla/jobqueue.pl
+share/bugzilla/js/TUI.js
+share/bugzilla/js/account.js
+share/bugzilla/js/attachment.js
+share/bugzilla/js/bug.js
+share/bugzilla/js/bugzilla-readable-status-min.js
+share/bugzilla/js/change-columns.js
+share/bugzilla/js/comment-tagging.js
+share/bugzilla/js/comments.js
+share/bugzilla/js/create_bug.js
+share/bugzilla/js/custom-search.js
+share/bugzilla/js/dropdown.js
+share/bugzilla/js/duo-min.js
+share/bugzilla/js/expanding-tree.js
+share/bugzilla/js/field.js
+share/bugzilla/js/flag.js
+share/bugzilla/js/global.js
+share/bugzilla/js/history.js/license.txt
+share/bugzilla/js/history.js/native.history.js
+share/bugzilla/js/history.js/readme.txt
+share/bugzilla/js/instant-search.js
+share/bugzilla/js/jquery/jquery-min.js
+share/bugzilla/js/jquery/plugins/bPopup/bPopup-min.js
+share/bugzilla/js/jquery/plugins/contextMenu/contextMenu-min.js
+share/bugzilla/js/jquery/plugins/contextMenu/contextMenu.css
+share/bugzilla/js/jquery/plugins/cookie/cookie-min.js
+share/bugzilla/js/jquery/plugins/datetimepicker/datetimepicker-min.js
+share/bugzilla/js/jquery/plugins/datetimepicker/datetimepicker.css
+share/bugzilla/js/jquery/plugins/devbridgeAutocomplete/devbridgeAutocomplete-min.js
+share/bugzilla/js/jquery/plugins/devbridgeAutocomplete/license.txt
+share/bugzilla/js/jquery/plugins/selectize/selectize-min.js
+share/bugzilla/js/jquery/plugins/selectize/selectize.bootstrap2.css
+share/bugzilla/js/jquery/plugins/selectize/selectize.bootstrap3.css
+share/bugzilla/js/jquery/plugins/selectize/selectize.css
+share/bugzilla/js/jquery/plugins/selectize/selectize.default.css
+share/bugzilla/js/jquery/plugins/visibility/visibility-min.js
+share/bugzilla/js/jquery/ui/images/ui-bg_flat_0_aaaaaa_40x100.png
+share/bugzilla/js/jquery/ui/images/ui-bg_flat_75_ffffff_40x100.png
+share/bugzilla/js/jquery/ui/images/ui-bg_glass_55_fbf9ee_1x400.png
+share/bugzilla/js/jquery/ui/images/ui-bg_glass_65_ffffff_1x400.png
+share/bugzilla/js/jquery/ui/images/ui-bg_glass_75_dadada_1x400.png
+share/bugzilla/js/jquery/ui/images/ui-bg_glass_75_e6e6e6_1x400.png
+share/bugzilla/js/jquery/ui/images/ui-bg_glass_95_fef1ec_1x400.png
+share/bugzilla/js/jquery/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png
+share/bugzilla/js/jquery/ui/images/ui-icons_222222_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_2e83ff_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_444444_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_454545_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_555555_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_777620_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_777777_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_888888_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_cc0000_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_cd0a0a_256x240.png
+share/bugzilla/js/jquery/ui/images/ui-icons_ffffff_256x240.png
+share/bugzilla/js/jquery/ui/jquery-ui-min.css
+share/bugzilla/js/jquery/ui/jquery-ui-min.js
+share/bugzilla/js/jquery/ui/jquery-ui-structure-min.css
+share/bugzilla/js/jquery/ui/jquery-ui-theme-min.css
+share/bugzilla/js/lib/md5.min.js
+share/bugzilla/js/params.js
+share/bugzilla/js/productform.js
+share/bugzilla/js/util.js
+share/bugzilla/js/yui.js.list
+share/bugzilla/js/yui/animation/animation-min.js
+share/bugzilla/js/yui/assets/skins/sam/ajax-loader.gif
+share/bugzilla/js/yui/assets/skins/sam/asc.gif
+share/bugzilla/js/yui/assets/skins/sam/autocomplete.css
+share/bugzilla/js/yui/assets/skins/sam/back-h.png
+share/bugzilla/js/yui/assets/skins/sam/back-v.png
+share/bugzilla/js/yui/assets/skins/sam/bar-h.png
+share/bugzilla/js/yui/assets/skins/sam/bar-v.png
+share/bugzilla/js/yui/assets/skins/sam/bg-h.gif
+share/bugzilla/js/yui/assets/skins/sam/bg-v.gif
+share/bugzilla/js/yui/assets/skins/sam/blankimage.png
+share/bugzilla/js/yui/assets/skins/sam/button.css
+share/bugzilla/js/yui/assets/skins/sam/calendar.css
+share/bugzilla/js/yui/assets/skins/sam/carousel.css
+share/bugzilla/js/yui/assets/skins/sam/check0.gif
+share/bugzilla/js/yui/assets/skins/sam/check1.gif
+share/bugzilla/js/yui/assets/skins/sam/check2.gif
+share/bugzilla/js/yui/assets/skins/sam/colorpicker.css
+share/bugzilla/js/yui/assets/skins/sam/container.css
+share/bugzilla/js/yui/assets/skins/sam/datatable.css
+share/bugzilla/js/yui/assets/skins/sam/desc.gif
+share/bugzilla/js/yui/assets/skins/sam/dt-arrow-dn.png
+share/bugzilla/js/yui/assets/skins/sam/dt-arrow-up.png
+share/bugzilla/js/yui/assets/skins/sam/editor-knob.gif
+share/bugzilla/js/yui/assets/skins/sam/editor-sprite-active.gif
+share/bugzilla/js/yui/assets/skins/sam/editor-sprite.gif
+share/bugzilla/js/yui/assets/skins/sam/editor.css
+share/bugzilla/js/yui/assets/skins/sam/header_background.png
+share/bugzilla/js/yui/assets/skins/sam/hue_bg.png
+share/bugzilla/js/yui/assets/skins/sam/imagecropper.css
+share/bugzilla/js/yui/assets/skins/sam/layout.css
+share/bugzilla/js/yui/assets/skins/sam/layout_sprite.png
+share/bugzilla/js/yui/assets/skins/sam/loading.gif
+share/bugzilla/js/yui/assets/skins/sam/logger.css
+share/bugzilla/js/yui/assets/skins/sam/menu-button-arrow-disabled.png
+share/bugzilla/js/yui/assets/skins/sam/menu-button-arrow.png
+share/bugzilla/js/yui/assets/skins/sam/menu.css
+share/bugzilla/js/yui/assets/skins/sam/menubaritem_submenuindicator.png
+share/bugzilla/js/yui/assets/skins/sam/menubaritem_submenuindicator_disabled.png
+share/bugzilla/js/yui/assets/skins/sam/menuitem_checkbox.png
+share/bugzilla/js/yui/assets/skins/sam/menuitem_checkbox_disabled.png
+share/bugzilla/js/yui/assets/skins/sam/menuitem_submenuindicator.png
+share/bugzilla/js/yui/assets/skins/sam/menuitem_submenuindicator_disabled.png
+share/bugzilla/js/yui/assets/skins/sam/paginator.css
+share/bugzilla/js/yui/assets/skins/sam/picker_mask.png
+share/bugzilla/js/yui/assets/skins/sam/profilerviewer.css
+share/bugzilla/js/yui/assets/skins/sam/progressbar.css
+share/bugzilla/js/yui/assets/skins/sam/resize.css
+share/bugzilla/js/yui/assets/skins/sam/simpleeditor.css
+share/bugzilla/js/yui/assets/skins/sam/slider.css
+share/bugzilla/js/yui/assets/skins/sam/split-button-arrow-active.png
+share/bugzilla/js/yui/assets/skins/sam/split-button-arrow-disabled.png
+share/bugzilla/js/yui/assets/skins/sam/split-button-arrow-focus.png
+share/bugzilla/js/yui/assets/skins/sam/split-button-arrow-hover.png
+share/bugzilla/js/yui/assets/skins/sam/split-button-arrow.png
+share/bugzilla/js/yui/assets/skins/sam/sprite.png
+share/bugzilla/js/yui/assets/skins/sam/tabview.css
+share/bugzilla/js/yui/assets/skins/sam/treeview-loading.gif
+share/bugzilla/js/yui/assets/skins/sam/treeview-sprite.gif
+share/bugzilla/js/yui/assets/skins/sam/treeview.css
+share/bugzilla/js/yui/assets/skins/sam/wait.gif
+share/bugzilla/js/yui/assets/skins/sam/yuitest.css
+share/bugzilla/js/yui/autocomplete/autocomplete-min.js
+share/bugzilla/js/yui/base/base-min.css
+share/bugzilla/js/yui/base/base.css
+share/bugzilla/js/yui/button/button-min.js
+share/bugzilla/js/yui/calendar/calendar-min.js
+share/bugzilla/js/yui/carousel/carousel-min.js
+share/bugzilla/js/yui/charts/charts-min.js
+share/bugzilla/js/yui/colorpicker/colorpicker-min.js
+share/bugzilla/js/yui/connection/connection-min.js
+share/bugzilla/js/yui/connection/connection.swf
+share/bugzilla/js/yui/connection/connection_core-min.js
+share/bugzilla/js/yui/container/container-min.js
+share/bugzilla/js/yui/container/container_core-min.js
+share/bugzilla/js/yui/cookie/cookie-min.js
+share/bugzilla/js/yui/datasource/datasource-min.js
+share/bugzilla/js/yui/datatable/datatable-min.js
+share/bugzilla/js/yui/datemath/datemath-min.js
+share/bugzilla/js/yui/dom/dom-min.js
+share/bugzilla/js/yui/dragdrop/dragdrop-min.js
+share/bugzilla/js/yui/element-delegate/element-delegate-min.js
+share/bugzilla/js/yui/element/element-min.js
+share/bugzilla/js/yui/event-delegate/event-delegate-min.js
+share/bugzilla/js/yui/event-mouseenter/event-mouseenter-min.js
+share/bugzilla/js/yui/event-simulate/event-simulate-min.js
+share/bugzilla/js/yui/event/event-min.js
+share/bugzilla/js/yui/fonts/fonts-min.css
+share/bugzilla/js/yui/fonts/fonts.css
+share/bugzilla/js/yui/get/get-min.js
+share/bugzilla/js/yui/grids/grids-min.css
+share/bugzilla/js/yui/grids/grids.css
+share/bugzilla/js/yui/history/history-min.js
+share/bugzilla/js/yui/imagecropper/imagecropper-min.js
+share/bugzilla/js/yui/imageloader/imageloader-min.js
+share/bugzilla/js/yui/json/json-min.js
+share/bugzilla/js/yui/layout/layout-min.js
+share/bugzilla/js/yui/logger/logger-min.js
+share/bugzilla/js/yui/menu/menu-min.js
+share/bugzilla/js/yui/paginator/paginator-min.js
+share/bugzilla/js/yui/profiler/profiler-min.js
+share/bugzilla/js/yui/profilerviewer/profilerviewer-min.js
+share/bugzilla/js/yui/progressbar/progressbar-min.js
+share/bugzilla/js/yui/reset-fonts-grids/reset-fonts-grids.css
+share/bugzilla/js/yui/reset-fonts/reset-fonts.css
+share/bugzilla/js/yui/reset/reset-min.css
+share/bugzilla/js/yui/reset/reset.css
+share/bugzilla/js/yui/resize/resize-min.js
+share/bugzilla/js/yui/selector/selector-min.js
+share/bugzilla/js/yui/slider/slider-min.js
+share/bugzilla/js/yui/storage/storage-min.js
+share/bugzilla/js/yui/stylesheet/stylesheet-min.js
+share/bugzilla/js/yui/swf/swf-min.js
+share/bugzilla/js/yui/swfdetect/swfdetect-min.js
+share/bugzilla/js/yui/swfstore/swfstore-min.js
+share/bugzilla/js/yui/swfstore/swfstore.swf
+share/bugzilla/js/yui/tabview/tabview-min.js
+share/bugzilla/js/yui/treeview/treeview-min.js
+share/bugzilla/js/yui/uploader/uploader-min.js
+share/bugzilla/js/yui/yahoo-dom-event/yahoo-dom-event-min.js
+share/bugzilla/js/yui/yahoo/yahoo-min.js
+share/bugzilla/js/yui/yuiloader/yuiloader-min.js
+share/bugzilla/js/yui/yuitest/yuitest-min.js
+share/bugzilla/js/yui/yuitest/yuitest_core-min.js
+share/bugzilla/js/yui3.js.list
+share/bugzilla/js/yui3/align-plugin/align-plugin-min.js
+share/bugzilla/js/yui3/anim-base/anim-base-min.js
+share/bugzilla/js/yui3/anim-color/anim-color-min.js
+share/bugzilla/js/yui3/anim-curve/anim-curve-min.js
+share/bugzilla/js/yui3/anim-easing/anim-easing-min.js
+share/bugzilla/js/yui3/anim-node-plugin/anim-node-plugin-min.js
+share/bugzilla/js/yui3/anim-scroll/anim-scroll-min.js
+share/bugzilla/js/yui3/anim-shape/anim-shape-min.js
+share/bugzilla/js/yui3/anim-xy/anim-xy-min.js
+share/bugzilla/js/yui3/app-base/app-base-min.js
+share/bugzilla/js/yui3/app-content/app-content-min.js
+share/bugzilla/js/yui3/app-transitions-css/app-transitions-css-min.css
+share/bugzilla/js/yui3/app-transitions-css/app-transitions-css.css
+share/bugzilla/js/yui3/app-transitions-native/app-transitions-native-min.js
+share/bugzilla/js/yui3/app-transitions/app-transitions-min.js
+share/bugzilla/js/yui3/array-extras/array-extras-min.js
+share/bugzilla/js/yui3/array-invoke/array-invoke-min.js
+share/bugzilla/js/yui3/arraylist-add/arraylist-add-min.js
+share/bugzilla/js/yui3/arraylist-filter/arraylist-filter-min.js
+share/bugzilla/js/yui3/arraylist/arraylist-min.js
+share/bugzilla/js/yui3/arraysort/arraysort-min.js
+share/bugzilla/js/yui3/assets/skin/audio-light/skin.css
+share/bugzilla/js/yui3/assets/skin/audio/skin.css
+share/bugzilla/js/yui3/assets/skin/capsule-dark/skin.css
+share/bugzilla/js/yui3/assets/skin/capsule/skin.css
+share/bugzilla/js/yui3/assets/skin/night/skin.css
+share/bugzilla/js/yui3/assets/skin/round-dark/skin.css
+share/bugzilla/js/yui3/assets/skin/round/skin.css
+share/bugzilla/js/yui3/assets/skin/sam-dark/skin.css
+share/bugzilla/js/yui3/assets/skin/sam/skin.css
+share/bugzilla/js/yui3/assets/skins/audio-light/rail-x.png
+share/bugzilla/js/yui3/assets/skins/audio-light/rail-y.png
+share/bugzilla/js/yui3/assets/skins/audio-light/slider-base.css
+share/bugzilla/js/yui3/assets/skins/audio-light/thumb-x.png
+share/bugzilla/js/yui3/assets/skins/audio-light/thumb-y.png
+share/bugzilla/js/yui3/assets/skins/audio/rail-x.png
+share/bugzilla/js/yui3/assets/skins/audio/rail-y.png
+share/bugzilla/js/yui3/assets/skins/audio/slider-base.css
+share/bugzilla/js/yui3/assets/skins/audio/thumb-x.png
+share/bugzilla/js/yui3/assets/skins/audio/thumb-y.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/rail-x-dots.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/rail-x-lines.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/rail-x.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/rail-y-dots.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/rail-y-lines.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/rail-y.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/slider-base.css
+share/bugzilla/js/yui3/assets/skins/capsule-dark/thumb-x-line.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/thumb-x.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/thumb-y-line.png
+share/bugzilla/js/yui3/assets/skins/capsule-dark/thumb-y.png
+share/bugzilla/js/yui3/assets/skins/capsule/rail-x-dots.png
+share/bugzilla/js/yui3/assets/skins/capsule/rail-x-lines.png
+share/bugzilla/js/yui3/assets/skins/capsule/rail-x.png
+share/bugzilla/js/yui3/assets/skins/capsule/rail-y-dots.png
+share/bugzilla/js/yui3/assets/skins/capsule/rail-y-lines.png
+share/bugzilla/js/yui3/assets/skins/capsule/rail-y.png
+share/bugzilla/js/yui3/assets/skins/capsule/slider-base.css
+share/bugzilla/js/yui3/assets/skins/capsule/thumb-x-line.png
+share/bugzilla/js/yui3/assets/skins/capsule/thumb-x.png
+share/bugzilla/js/yui3/assets/skins/capsule/thumb-y-line.png
+share/bugzilla/js/yui3/assets/skins/capsule/thumb-y-lines.png
+share/bugzilla/js/yui3/assets/skins/capsule/thumb-y.png
+share/bugzilla/js/yui3/assets/skins/night/arrows.png
+share/bugzilla/js/yui3/assets/skins/night/autocomplete-list.css
+share/bugzilla/js/yui3/assets/skins/night/calendar-base.css
+share/bugzilla/js/yui3/assets/skins/night/calendar.css
+share/bugzilla/js/yui3/assets/skins/night/calendarnavigator.css
+share/bugzilla/js/yui3/assets/skins/night/datatable-base.css
+share/bugzilla/js/yui3/assets/skins/night/datatable-highlight.css
+share/bugzilla/js/yui3/assets/skins/night/datatable-message.css
+share/bugzilla/js/yui3/assets/skins/night/datatable-paginator.css
+share/bugzilla/js/yui3/assets/skins/night/datatable-scroll.css
+share/bugzilla/js/yui3/assets/skins/night/datatable-sort.css
+share/bugzilla/js/yui3/assets/skins/night/dial.css
+share/bugzilla/js/yui3/assets/skins/night/horizontal-menu-submenu-indicator.png
+share/bugzilla/js/yui3/assets/skins/night/node-menunav.css
+share/bugzilla/js/yui3/assets/skins/night/overlay.css
+share/bugzilla/js/yui3/assets/skins/night/panel.css
+share/bugzilla/js/yui3/assets/skins/night/rail-x-lines.png
+share/bugzilla/js/yui3/assets/skins/night/rail-x.png
+share/bugzilla/js/yui3/assets/skins/night/rail-y-lines.png
+share/bugzilla/js/yui3/assets/skins/night/rail-y.png
+share/bugzilla/js/yui3/assets/skins/night/resize-base.css
+share/bugzilla/js/yui3/assets/skins/night/scrollview-base.css
+share/bugzilla/js/yui3/assets/skins/night/scrollview-list.css
+share/bugzilla/js/yui3/assets/skins/night/scrollview-scrollbars.css
+share/bugzilla/js/yui3/assets/skins/night/slider-base.css
+share/bugzilla/js/yui3/assets/skins/night/sort-arrow-sprite-ie.png
+share/bugzilla/js/yui3/assets/skins/night/sort-arrow-sprite.png
+share/bugzilla/js/yui3/assets/skins/night/sprite_icons.png
+share/bugzilla/js/yui3/assets/skins/night/tabview.css
+share/bugzilla/js/yui3/assets/skins/night/thumb-x.png
+share/bugzilla/js/yui3/assets/skins/night/thumb-y.png
+share/bugzilla/js/yui3/assets/skins/night/vertical-menu-submenu-indicator.png
+share/bugzilla/js/yui3/assets/skins/night/widget-base.css
+share/bugzilla/js/yui3/assets/skins/night/widget-modality.css
+share/bugzilla/js/yui3/assets/skins/night/widget-stack.css
+share/bugzilla/js/yui3/assets/skins/round-dark/rail-x.png
+share/bugzilla/js/yui3/assets/skins/round-dark/rail-y.png
+share/bugzilla/js/yui3/assets/skins/round-dark/slider-base.css
+share/bugzilla/js/yui3/assets/skins/round-dark/thumb-x-grip.png
+share/bugzilla/js/yui3/assets/skins/round-dark/thumb-x.png
+share/bugzilla/js/yui3/assets/skins/round-dark/thumb-y-grip.png
+share/bugzilla/js/yui3/assets/skins/round-dark/thumb-y.png
+share/bugzilla/js/yui3/assets/skins/round/rail-x.png
+share/bugzilla/js/yui3/assets/skins/round/rail-y.png
+share/bugzilla/js/yui3/assets/skins/round/slider-base.css
+share/bugzilla/js/yui3/assets/skins/round/thumb-x-grip.png
+share/bugzilla/js/yui3/assets/skins/round/thumb-x.png
+share/bugzilla/js/yui3/assets/skins/round/thumb-y-grip.png
+share/bugzilla/js/yui3/assets/skins/round/thumb-y.png
+share/bugzilla/js/yui3/assets/skins/sam-dark/rail-x-lines.png
+share/bugzilla/js/yui3/assets/skins/sam-dark/rail-x.png
+share/bugzilla/js/yui3/assets/skins/sam-dark/rail-y-lines.png
+share/bugzilla/js/yui3/assets/skins/sam-dark/rail-y.png
+share/bugzilla/js/yui3/assets/skins/sam-dark/slider-base.css
+share/bugzilla/js/yui3/assets/skins/sam-dark/thumb-x.png
+share/bugzilla/js/yui3/assets/skins/sam-dark/thumb-y.png
+share/bugzilla/js/yui3/assets/skins/sam/arrows.png
+share/bugzilla/js/yui3/assets/skins/sam/autocomplete-list.css
+share/bugzilla/js/yui3/assets/skins/sam/bg.png
+share/bugzilla/js/yui3/assets/skins/sam/calendar-base.css
+share/bugzilla/js/yui3/assets/skins/sam/calendar.css
+share/bugzilla/js/yui3/assets/skins/sam/calendarnavigator.css
+share/bugzilla/js/yui3/assets/skins/sam/console-filters.css
+share/bugzilla/js/yui3/assets/skins/sam/console.css
+share/bugzilla/js/yui3/assets/skins/sam/datatable-base.css
+share/bugzilla/js/yui3/assets/skins/sam/datatable-highlight.css
+share/bugzilla/js/yui3/assets/skins/sam/datatable-message.css
+share/bugzilla/js/yui3/assets/skins/sam/datatable-paginator.css
+share/bugzilla/js/yui3/assets/skins/sam/datatable-scroll.css
+share/bugzilla/js/yui3/assets/skins/sam/datatable-sort.css
+share/bugzilla/js/yui3/assets/skins/sam/dial.css
+share/bugzilla/js/yui3/assets/skins/sam/dt-arrow-dn.png
+share/bugzilla/js/yui3/assets/skins/sam/dt-arrow-up.png
+share/bugzilla/js/yui3/assets/skins/sam/horizontal-menu-submenu-indicator.png
+share/bugzilla/js/yui3/assets/skins/sam/horizontal-menu-submenu-toggle.png
+share/bugzilla/js/yui3/assets/skins/sam/node-flick.css
+share/bugzilla/js/yui3/assets/skins/sam/node-menunav.css
+share/bugzilla/js/yui3/assets/skins/sam/overlay.css
+share/bugzilla/js/yui3/assets/skins/sam/panel.css
+share/bugzilla/js/yui3/assets/skins/sam/rail-x-lines.png
+share/bugzilla/js/yui3/assets/skins/sam/rail-x.png
+share/bugzilla/js/yui3/assets/skins/sam/rail-y-lines.png
+share/bugzilla/js/yui3/assets/skins/sam/rail-y.png
+share/bugzilla/js/yui3/assets/skins/sam/resize-base.css
+share/bugzilla/js/yui3/assets/skins/sam/scrollview-base.css
+share/bugzilla/js/yui3/assets/skins/sam/scrollview-list.css
+share/bugzilla/js/yui3/assets/skins/sam/scrollview-scrollbars.css
+share/bugzilla/js/yui3/assets/skins/sam/slider-base.css
+share/bugzilla/js/yui3/assets/skins/sam/sort-arrow-sprite-ie.png
+share/bugzilla/js/yui3/assets/skins/sam/sort-arrow-sprite.png
+share/bugzilla/js/yui3/assets/skins/sam/sprite.png
+share/bugzilla/js/yui3/assets/skins/sam/sprite_icons.gif
+share/bugzilla/js/yui3/assets/skins/sam/sprite_icons.png
+share/bugzilla/js/yui3/assets/skins/sam/tabview.css
+share/bugzilla/js/yui3/assets/skins/sam/test-console.css
+share/bugzilla/js/yui3/assets/skins/sam/thumb-x.png
+share/bugzilla/js/yui3/assets/skins/sam/thumb-y.png
+share/bugzilla/js/yui3/assets/skins/sam/vertical-menu-submenu-indicator.png
+share/bugzilla/js/yui3/assets/skins/sam/warn_error.png
+share/bugzilla/js/yui3/assets/skins/sam/widget-base.css
+share/bugzilla/js/yui3/assets/skins/sam/widget-modality.css
+share/bugzilla/js/yui3/assets/skins/sam/widget-stack.css
+share/bugzilla/js/yui3/async-queue/async-queue-min.js
+share/bugzilla/js/yui3/attribute-base/attribute-base-min.js
+share/bugzilla/js/yui3/attribute-complex/attribute-complex-min.js
+share/bugzilla/js/yui3/attribute-core/attribute-core-min.js
+share/bugzilla/js/yui3/attribute-extras/attribute-extras-min.js
+share/bugzilla/js/yui3/attribute-observable/attribute-observable-min.js
+share/bugzilla/js/yui3/autocomplete-base/autocomplete-base-min.js
+share/bugzilla/js/yui3/autocomplete-filters-accentfold/autocomplete-filters-accentfold-min.js
+share/bugzilla/js/yui3/autocomplete-filters/autocomplete-filters-min.js
+share/bugzilla/js/yui3/autocomplete-highlighters-accentfold/autocomplete-highlighters-accentfold-min.js
+share/bugzilla/js/yui3/autocomplete-highlighters/autocomplete-highlighters-min.js
+share/bugzilla/js/yui3/autocomplete-list-keys/autocomplete-list-keys-min.js
+share/bugzilla/js/yui3/autocomplete-list/assets/autocomplete-list-core.css
+share/bugzilla/js/yui3/autocomplete-list/assets/skins/night/autocomplete-list.css
+share/bugzilla/js/yui3/autocomplete-list/assets/skins/sam/autocomplete-list.css
+share/bugzilla/js/yui3/autocomplete-list/autocomplete-list-min.js
+share/bugzilla/js/yui3/autocomplete-list/lang/autocomplete-list.js
+share/bugzilla/js/yui3/autocomplete-list/lang/autocomplete-list_en.js
+share/bugzilla/js/yui3/autocomplete-list/lang/autocomplete-list_es.js
+share/bugzilla/js/yui3/autocomplete-list/lang/autocomplete-list_hu.js
+share/bugzilla/js/yui3/autocomplete-list/lang/autocomplete-list_it.js
+share/bugzilla/js/yui3/autocomplete-plugin/autocomplete-plugin-min.js
+share/bugzilla/js/yui3/autocomplete-sources/autocomplete-sources-min.js
+share/bugzilla/js/yui3/axis-base/axis-base-min.js
+share/bugzilla/js/yui3/axis-category-base/axis-category-base-min.js
+share/bugzilla/js/yui3/axis-category/axis-category-min.js
+share/bugzilla/js/yui3/axis-numeric-base/axis-numeric-base-min.js
+share/bugzilla/js/yui3/axis-numeric/axis-numeric-min.js
+share/bugzilla/js/yui3/axis-stacked-base/axis-stacked-base-min.js
+share/bugzilla/js/yui3/axis-stacked/axis-stacked-min.js
+share/bugzilla/js/yui3/axis-time-base/axis-time-base-min.js
+share/bugzilla/js/yui3/axis-time/axis-time-min.js
+share/bugzilla/js/yui3/axis/axis-min.js
+share/bugzilla/js/yui3/base-base/base-base-min.js
+share/bugzilla/js/yui3/base-build/base-build-min.js
+share/bugzilla/js/yui3/base-core/base-core-min.js
+share/bugzilla/js/yui3/base-observable/base-observable-min.js
+share/bugzilla/js/yui3/base-pluginhost/base-pluginhost-min.js
+share/bugzilla/js/yui3/button-core/button-core-min.js
+share/bugzilla/js/yui3/button-group/button-group-min.js
+share/bugzilla/js/yui3/button-plugin/button-plugin-min.js
+share/bugzilla/js/yui3/button/button-min.js
+share/bugzilla/js/yui3/cache-base/cache-base-min.js
+share/bugzilla/js/yui3/cache-offline/cache-offline-min.js
+share/bugzilla/js/yui3/cache-plugin/cache-plugin-min.js
+share/bugzilla/js/yui3/calendar-base/assets/calendar-base-core.css
+share/bugzilla/js/yui3/calendar-base/assets/skins/night/calendar-base.css
+share/bugzilla/js/yui3/calendar-base/assets/skins/sam/calendar-base.css
+share/bugzilla/js/yui3/calendar-base/calendar-base-min.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_de.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_en.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_es-AR.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_es.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_fr.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_hu.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_it.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_ja.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_nb-NO.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_nl.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_pt-BR.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_ru.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_zh-HANT-TW.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_zh-Hans-CN.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_zh-Hans.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_zh-Hant-HK.js
+share/bugzilla/js/yui3/calendar-base/lang/calendar-base_zh-Hant.js
+share/bugzilla/js/yui3/calendar/assets/calendar-core.css
+share/bugzilla/js/yui3/calendar/assets/skins/night/calendar.css
+share/bugzilla/js/yui3/calendar/assets/skins/sam/calendar.css
+share/bugzilla/js/yui3/calendar/calendar-min.js
+share/bugzilla/js/yui3/calendarnavigator/assets/calendarnavigator-core.css
+share/bugzilla/js/yui3/calendarnavigator/assets/skins/night/calendarnavigator.css
+share/bugzilla/js/yui3/calendarnavigator/assets/skins/sam/calendarnavigator.css
+share/bugzilla/js/yui3/calendarnavigator/calendarnavigator-min.js
+share/bugzilla/js/yui3/charts-base/charts-base-min.js
+share/bugzilla/js/yui3/charts-legend/charts-legend-min.js
+share/bugzilla/js/yui3/classnamemanager/classnamemanager-min.js
+share/bugzilla/js/yui3/clickable-rail/assets/thumb-x-oblong-dark.png
+share/bugzilla/js/yui3/clickable-rail/assets/thumb-x-oblong.png
+share/bugzilla/js/yui3/clickable-rail/assets/thumb-x-oblong2-dark.png
+share/bugzilla/js/yui3/clickable-rail/assets/thumb-x-oblong2.png
+share/bugzilla/js/yui3/clickable-rail/assets/thumb-y-oblong-dark.png
+share/bugzilla/js/yui3/clickable-rail/assets/thumb-y-oblong.png
+share/bugzilla/js/yui3/clickable-rail/assets/thumb-y-oblong2-dark.png
+share/bugzilla/js/yui3/clickable-rail/assets/thumb-y-oblong2.png
+share/bugzilla/js/yui3/clickable-rail/clickable-rail-min.js
+share/bugzilla/js/yui3/color-base/color-base-min.js
+share/bugzilla/js/yui3/color-harmony/color-harmony-min.js
+share/bugzilla/js/yui3/color-hsl/color-hsl-min.js
+share/bugzilla/js/yui3/color-hsv/color-hsv-min.js
+share/bugzilla/js/yui3/console-filters/assets/console-filters-core.css
+share/bugzilla/js/yui3/console-filters/assets/skins/sam/console-filters.css
+share/bugzilla/js/yui3/console-filters/console-filters-min.js
+share/bugzilla/js/yui3/console/assets/console-core.css
+share/bugzilla/js/yui3/console/assets/skins/sam/bg.png
+share/bugzilla/js/yui3/console/assets/skins/sam/console.css
+share/bugzilla/js/yui3/console/assets/skins/sam/warn_error.png
+share/bugzilla/js/yui3/console/assets/warn_error.png
+share/bugzilla/js/yui3/console/console-min.js
+share/bugzilla/js/yui3/console/lang/console.js
+share/bugzilla/js/yui3/console/lang/console_en.js
+share/bugzilla/js/yui3/console/lang/console_es.js
+share/bugzilla/js/yui3/console/lang/console_hu.js
+share/bugzilla/js/yui3/console/lang/console_it.js
+share/bugzilla/js/yui3/console/lang/console_ja.js
+share/bugzilla/js/yui3/content-editable/content-editable-min.js
+share/bugzilla/js/yui3/cookie/cookie-min.js
+share/bugzilla/js/yui3/createlink-base/createlink-base-min.js
+share/bugzilla/js/yui3/cssbase-context/cssbase-context-min.css
+share/bugzilla/js/yui3/cssbase-context/cssbase-context.css
+share/bugzilla/js/yui3/cssbase/cssbase-min.css
+share/bugzilla/js/yui3/cssbase/cssbase.css
+share/bugzilla/js/yui3/cssbutton/cssbutton-min.css
+share/bugzilla/js/yui3/cssbutton/cssbutton.css
+share/bugzilla/js/yui3/cssfonts-context/cssfonts-context-min.css
+share/bugzilla/js/yui3/cssfonts-context/cssfonts-context.css
+share/bugzilla/js/yui3/cssfonts/cssfonts-min.css
+share/bugzilla/js/yui3/cssfonts/cssfonts.css
+share/bugzilla/js/yui3/cssgrids-base/cssgrids-base-min.css
+share/bugzilla/js/yui3/cssgrids-base/cssgrids-base.css
+share/bugzilla/js/yui3/cssgrids-responsive/cssgrids-responsive-min.css
+share/bugzilla/js/yui3/cssgrids-responsive/cssgrids-responsive.css
+share/bugzilla/js/yui3/cssgrids-units/cssgrids-units-min.css
+share/bugzilla/js/yui3/cssgrids-units/cssgrids-units.css
+share/bugzilla/js/yui3/cssgrids/cssgrids-min.css
+share/bugzilla/js/yui3/cssgrids/cssgrids.css
+share/bugzilla/js/yui3/cssnormalize-context/cssnormalize-context-min.css
+share/bugzilla/js/yui3/cssnormalize-context/cssnormalize-context.css
+share/bugzilla/js/yui3/cssnormalize/cssnormalize-min.css
+share/bugzilla/js/yui3/cssnormalize/cssnormalize.css
+share/bugzilla/js/yui3/cssreset-context/cssreset-context-min.css
+share/bugzilla/js/yui3/cssreset-context/cssreset-context.css
+share/bugzilla/js/yui3/cssreset/cssreset-min.css
+share/bugzilla/js/yui3/cssreset/cssreset.css
+share/bugzilla/js/yui3/dataschema-array/dataschema-array-min.js
+share/bugzilla/js/yui3/dataschema-base/dataschema-base-min.js
+share/bugzilla/js/yui3/dataschema-json/dataschema-json-min.js
+share/bugzilla/js/yui3/dataschema-text/dataschema-text-min.js
+share/bugzilla/js/yui3/dataschema-xml/dataschema-xml-min.js
+share/bugzilla/js/yui3/datasource-arrayschema/datasource-arrayschema-min.js
+share/bugzilla/js/yui3/datasource-cache/datasource-cache-min.js
+share/bugzilla/js/yui3/datasource-function/datasource-function-min.js
+share/bugzilla/js/yui3/datasource-get/datasource-get-min.js
+share/bugzilla/js/yui3/datasource-io/datasource-io-min.js
+share/bugzilla/js/yui3/datasource-jsonschema/datasource-jsonschema-min.js
+share/bugzilla/js/yui3/datasource-local/datasource-local-min.js
+share/bugzilla/js/yui3/datasource-polling/datasource-polling-min.js
+share/bugzilla/js/yui3/datasource-textschema/datasource-textschema-min.js
+share/bugzilla/js/yui3/datasource-xmlschema/datasource-xmlschema-min.js
+share/bugzilla/js/yui3/datatable-base-deprecated/assets/skins/sam/dt-arrow-dn.png
+share/bugzilla/js/yui3/datatable-base-deprecated/assets/skins/sam/dt-arrow-up.png
+share/bugzilla/js/yui3/datatable-base/assets/datatable-base-core.css
+share/bugzilla/js/yui3/datatable-base/assets/skins/night/datatable-base.css
+share/bugzilla/js/yui3/datatable-base/assets/skins/sam/datatable-base.css
+share/bugzilla/js/yui3/datatable-base/datatable-base-min.js
+share/bugzilla/js/yui3/datatable-body/datatable-body-min.js
+share/bugzilla/js/yui3/datatable-column-widths/datatable-column-widths-min.js
+share/bugzilla/js/yui3/datatable-core/datatable-core-min.js
+share/bugzilla/js/yui3/datatable-datasource/datatable-datasource-min.js
+share/bugzilla/js/yui3/datatable-foot/datatable-foot-min.js
+share/bugzilla/js/yui3/datatable-formatters/datatable-formatters-min.js
+share/bugzilla/js/yui3/datatable-head/datatable-head-min.js
+share/bugzilla/js/yui3/datatable-highlight/assets/datatable-highlight-core.css
+share/bugzilla/js/yui3/datatable-highlight/assets/skins/night/datatable-highlight.css
+share/bugzilla/js/yui3/datatable-highlight/assets/skins/sam/datatable-highlight.css
+share/bugzilla/js/yui3/datatable-highlight/datatable-highlight-min.js
+share/bugzilla/js/yui3/datatable-keynav/datatable-keynav-min.js
+share/bugzilla/js/yui3/datatable-message/assets/datatable-message-core.css
+share/bugzilla/js/yui3/datatable-message/assets/skins/night/datatable-message.css
+share/bugzilla/js/yui3/datatable-message/assets/skins/sam/datatable-message.css
+share/bugzilla/js/yui3/datatable-message/datatable-message-min.js
+share/bugzilla/js/yui3/datatable-message/lang/datatable-message.js
+share/bugzilla/js/yui3/datatable-message/lang/datatable-message_en.js
+share/bugzilla/js/yui3/datatable-message/lang/datatable-message_es.js
+share/bugzilla/js/yui3/datatable-message/lang/datatable-message_fr.js
+share/bugzilla/js/yui3/datatable-message/lang/datatable-message_hu.js
+share/bugzilla/js/yui3/datatable-message/lang/datatable-message_it.js
+share/bugzilla/js/yui3/datatable-mutable/datatable-mutable-min.js
+share/bugzilla/js/yui3/datatable-paginator-templates/datatable-paginator-templates-min.js
+share/bugzilla/js/yui3/datatable-paginator/assets/datatable-paginator-core.css
+share/bugzilla/js/yui3/datatable-paginator/assets/skins/night/datatable-paginator.css
+share/bugzilla/js/yui3/datatable-paginator/assets/skins/sam/datatable-paginator.css
+share/bugzilla/js/yui3/datatable-paginator/datatable-paginator-min.js
+share/bugzilla/js/yui3/datatable-paginator/lang/datatable-paginator.js
+share/bugzilla/js/yui3/datatable-paginator/lang/datatable-paginator_en.js
+share/bugzilla/js/yui3/datatable-paginator/lang/datatable-paginator_fr.js
+share/bugzilla/js/yui3/datatable-scroll/assets/datatable-scroll-core.css
+share/bugzilla/js/yui3/datatable-scroll/assets/skins/night/datatable-scroll.css
+share/bugzilla/js/yui3/datatable-scroll/assets/skins/sam/datatable-scroll.css
+share/bugzilla/js/yui3/datatable-scroll/datatable-scroll-min.js
+share/bugzilla/js/yui3/datatable-sort/assets/datatable-sort-core.css
+share/bugzilla/js/yui3/datatable-sort/assets/skins/night/datatable-sort.css
+share/bugzilla/js/yui3/datatable-sort/assets/skins/night/sort-arrow-sprite-ie.png
+share/bugzilla/js/yui3/datatable-sort/assets/skins/night/sort-arrow-sprite.png
+share/bugzilla/js/yui3/datatable-sort/assets/skins/sam/datatable-sort.css
+share/bugzilla/js/yui3/datatable-sort/assets/skins/sam/sort-arrow-sprite-ie.png
+share/bugzilla/js/yui3/datatable-sort/assets/skins/sam/sort-arrow-sprite.png
+share/bugzilla/js/yui3/datatable-sort/datatable-sort-min.js
+share/bugzilla/js/yui3/datatable-sort/lang/datatable-sort.js
+share/bugzilla/js/yui3/datatable-sort/lang/datatable-sort_en.js
+share/bugzilla/js/yui3/datatable-sort/lang/datatable-sort_es.js
+share/bugzilla/js/yui3/datatable-sort/lang/datatable-sort_fr.js
+share/bugzilla/js/yui3/datatable-sort/lang/datatable-sort_hu.js
+share/bugzilla/js/yui3/datatable-table/datatable-table-min.js
+share/bugzilla/js/yui3/datatype-date-format/datatype-date-format-min.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ar-JO.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ar.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ca-ES.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ca.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_da-DK.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_da.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_de-AT.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_de-DE.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_de.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_el-GR.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_el.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-AU.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-CA.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-GB.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-IE.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-IN.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-JO.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-MY.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-NZ.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-PH.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-SG.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en-US.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_en.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-AR.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-BO.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-CL.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-CO.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-EC.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-ES.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-MX.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-PE.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-PY.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-US.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-UY.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es-VE.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_es.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_fi-FI.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_fi.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_fr-BE.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_fr-CA.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_fr-FR.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_fr.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_hi-IN.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_hi.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_hu.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_id-ID.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_id.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_it-IT.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_it.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ja-JP.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ja.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ko-KR.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ko.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ms-MY.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ms.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_nb-NO.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_nb.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_nl-BE.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_nl-NL.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_nl.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_pl-PL.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_pl.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_pt-BR.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_pt.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ro-RO.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ro.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ru-RU.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_ru.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_sv-SE.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_sv.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_th-TH.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_th.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_tr-TR.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_tr.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_vi-VN.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_vi.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_zh-Hans-CN.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_zh-Hans.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_zh-Hant-HK.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_zh-Hant-TW.js
+share/bugzilla/js/yui3/datatype-date-format/lang/datatype-date-format_zh-Hant.js
+share/bugzilla/js/yui3/datatype-date-math/datatype-date-math-min.js
+share/bugzilla/js/yui3/datatype-date-parse/datatype-date-parse-min.js
+share/bugzilla/js/yui3/datatype-number-format/datatype-number-format-min.js
+share/bugzilla/js/yui3/datatype-number-parse/datatype-number-parse-min.js
+share/bugzilla/js/yui3/datatype-xml-format/datatype-xml-format-min.js
+share/bugzilla/js/yui3/datatype-xml-parse/datatype-xml-parse-min.js
+share/bugzilla/js/yui3/dd-constrain/dd-constrain-min.js
+share/bugzilla/js/yui3/dd-ddm-base/dd-ddm-base-min.js
+share/bugzilla/js/yui3/dd-ddm-drop/dd-ddm-drop-min.js
+share/bugzilla/js/yui3/dd-ddm/dd-ddm-min.js
+share/bugzilla/js/yui3/dd-delegate/dd-delegate-min.js
+share/bugzilla/js/yui3/dd-drag/dd-drag-min.js
+share/bugzilla/js/yui3/dd-drop-plugin/dd-drop-plugin-min.js
+share/bugzilla/js/yui3/dd-drop/dd-drop-min.js
+share/bugzilla/js/yui3/dd-gestures/dd-gestures-min.js
+share/bugzilla/js/yui3/dd-plugin/dd-plugin-min.js
+share/bugzilla/js/yui3/dd-proxy/dd-proxy-min.js
+share/bugzilla/js/yui3/dd-scroll/dd-scroll-min.js
+share/bugzilla/js/yui3/dial/assets/dial-core.css
+share/bugzilla/js/yui3/dial/assets/skins/night/dial.css
+share/bugzilla/js/yui3/dial/assets/skins/sam/dial.css
+share/bugzilla/js/yui3/dial/dial-min.js
+share/bugzilla/js/yui3/dial/lang/dial.js
+share/bugzilla/js/yui3/dial/lang/dial_en.js
+share/bugzilla/js/yui3/dial/lang/dial_es.js
+share/bugzilla/js/yui3/dial/lang/dial_hu.js
+share/bugzilla/js/yui3/dom-base/dom-base-min.js
+share/bugzilla/js/yui3/dom-core/dom-core-min.js
+share/bugzilla/js/yui3/dom-screen/dom-screen-min.js
+share/bugzilla/js/yui3/dom-style-ie/dom-style-ie-min.js
+share/bugzilla/js/yui3/dom-style/dom-style-min.js
+share/bugzilla/js/yui3/dump/dump-min.js
+share/bugzilla/js/yui3/editor-base/editor-base-min.js
+share/bugzilla/js/yui3/editor-bidi/editor-bidi-min.js
+share/bugzilla/js/yui3/editor-br/editor-br-min.js
+share/bugzilla/js/yui3/editor-inline/editor-inline-min.js
+share/bugzilla/js/yui3/editor-lists/editor-lists-min.js
+share/bugzilla/js/yui3/editor-para-base/editor-para-base-min.js
+share/bugzilla/js/yui3/editor-para-ie/editor-para-ie-min.js
+share/bugzilla/js/yui3/editor-para/editor-para-min.js
+share/bugzilla/js/yui3/editor-selection/editor-selection-min.js
+share/bugzilla/js/yui3/editor-tab/editor-tab-min.js
+share/bugzilla/js/yui3/escape/escape-min.js
+share/bugzilla/js/yui3/event-base-ie/event-base-ie-min.js
+share/bugzilla/js/yui3/event-base/event-base-min.js
+share/bugzilla/js/yui3/event-contextmenu/event-contextmenu-min.js
+share/bugzilla/js/yui3/event-custom-base/event-custom-base-min.js
+share/bugzilla/js/yui3/event-custom-complex/event-custom-complex-min.js
+share/bugzilla/js/yui3/event-delegate/event-delegate-min.js
+share/bugzilla/js/yui3/event-flick/event-flick-min.js
+share/bugzilla/js/yui3/event-focus/event-focus-min.js
+share/bugzilla/js/yui3/event-hover/event-hover-min.js
+share/bugzilla/js/yui3/event-key/event-key-min.js
+share/bugzilla/js/yui3/event-mouseenter/event-mouseenter-min.js
+share/bugzilla/js/yui3/event-mousewheel/event-mousewheel-min.js
+share/bugzilla/js/yui3/event-move/event-move-min.js
+share/bugzilla/js/yui3/event-outside/event-outside-min.js
+share/bugzilla/js/yui3/event-resize/event-resize-min.js
+share/bugzilla/js/yui3/event-simulate/event-simulate-min.js
+share/bugzilla/js/yui3/event-synthetic/event-synthetic-min.js
+share/bugzilla/js/yui3/event-tap/event-tap-min.js
+share/bugzilla/js/yui3/event-touch/event-touch-min.js
+share/bugzilla/js/yui3/event-valuechange/event-valuechange-min.js
+share/bugzilla/js/yui3/exec-command/exec-command-min.js
+share/bugzilla/js/yui3/features/features-min.js
+share/bugzilla/js/yui3/file-flash/file-flash-min.js
+share/bugzilla/js/yui3/file-html5/file-html5-min.js
+share/bugzilla/js/yui3/file/file-min.js
+share/bugzilla/js/yui3/frame/frame-min.js
+share/bugzilla/js/yui3/gallery-datatable-paginator/gallery-datatable-paginator-min.js
+share/bugzilla/js/yui3/gallery-datatable-row-expansion-bmo/assets/skins/sam/closed.png
+share/bugzilla/js/yui3/gallery-datatable-row-expansion-bmo/assets/skins/sam/gallery-datatable-row-expansion-bmo.css
+share/bugzilla/js/yui3/gallery-datatable-row-expansion-bmo/assets/skins/sam/open.png
+share/bugzilla/js/yui3/gallery-datatable-row-expansion-bmo/gallery-datatable-row-expansion-bmo-min.js
+share/bugzilla/js/yui3/gallery-funcprog/gallery-funcprog-min.js
+share/bugzilla/js/yui3/gallery-math/gallery-math-min.js
+share/bugzilla/js/yui3/gallery-node-optimizations/gallery-node-optimizations-min.js
+share/bugzilla/js/yui3/gallery-object-extras/gallery-object-extras-min.js
+share/bugzilla/js/yui3/gallery-paginator-view/assets/skins/sam/gallery-paginator-view.css
+share/bugzilla/js/yui3/gesture-simulate/gesture-simulate-min.js
+share/bugzilla/js/yui3/get-nodejs/get-nodejs-min.js
+share/bugzilla/js/yui3/get/get-min.js
+share/bugzilla/js/yui3/graphics-canvas-default/graphics-canvas-default-min.js
+share/bugzilla/js/yui3/graphics-canvas/graphics-canvas-min.js
+share/bugzilla/js/yui3/graphics-group/graphics-group-min.js
+share/bugzilla/js/yui3/graphics-svg-default/graphics-svg-default-min.js
+share/bugzilla/js/yui3/graphics-svg/graphics-svg-min.js
+share/bugzilla/js/yui3/graphics-vml-default/graphics-vml-default-min.js
+share/bugzilla/js/yui3/graphics-vml/graphics-vml-min.js
+share/bugzilla/js/yui3/graphics/graphics-min.js
+share/bugzilla/js/yui3/handlebars-base/handlebars-base-min.js
+share/bugzilla/js/yui3/handlebars-compiler/handlebars-compiler-min.js
+share/bugzilla/js/yui3/highlight-accentfold/highlight-accentfold-min.js
+share/bugzilla/js/yui3/highlight-base/highlight-base-min.js
+share/bugzilla/js/yui3/history-base/history-base-min.js
+share/bugzilla/js/yui3/history-hash-ie/history-hash-ie-min.js
+share/bugzilla/js/yui3/history-hash/history-hash-min.js
+share/bugzilla/js/yui3/history-html5/history-html5-min.js
+share/bugzilla/js/yui3/imageloader/imageloader-min.js
+share/bugzilla/js/yui3/intl-base/intl-base-min.js
+share/bugzilla/js/yui3/intl/intl-min.js
+share/bugzilla/js/yui3/io-base/io-base-min.js
+share/bugzilla/js/yui3/io-form/io-form-min.js
+share/bugzilla/js/yui3/io-nodejs/io-nodejs-min.js
+share/bugzilla/js/yui3/io-queue/io-queue-min.js
+share/bugzilla/js/yui3/io-upload-iframe/io-upload-iframe-min.js
+share/bugzilla/js/yui3/io-xdr/io-xdr-min.js
+share/bugzilla/js/yui3/io-xdr/io.swf
+share/bugzilla/js/yui3/json-parse-shim/json-parse-shim-min.js
+share/bugzilla/js/yui3/json-parse/json-parse-min.js
+share/bugzilla/js/yui3/json-stringify-shim/json-stringify-shim-min.js
+share/bugzilla/js/yui3/json-stringify/json-stringify-min.js
+share/bugzilla/js/yui3/jsonp-url/jsonp-url-min.js
+share/bugzilla/js/yui3/jsonp/jsonp-min.js
+share/bugzilla/js/yui3/lazy-model-list/lazy-model-list-min.js
+share/bugzilla/js/yui3/loader-base/loader-base-min.js
+share/bugzilla/js/yui3/loader-rollup/loader-rollup-min.js
+share/bugzilla/js/yui3/loader-yui3/loader-yui3-min.js
+share/bugzilla/js/yui3/loader/loader-min.js
+share/bugzilla/js/yui3/matrix/matrix-min.js
+share/bugzilla/js/yui3/model-list/model-list-min.js
+share/bugzilla/js/yui3/model-sync-local/model-sync-local-min.js
+share/bugzilla/js/yui3/model-sync-rest/model-sync-rest-min.js
+share/bugzilla/js/yui3/model/model-min.js
+share/bugzilla/js/yui3/node-base/node-base-min.js
+share/bugzilla/js/yui3/node-core/node-core-min.js
+share/bugzilla/js/yui3/node-event-delegate/node-event-delegate-min.js
+share/bugzilla/js/yui3/node-event-html5/node-event-html5-min.js
+share/bugzilla/js/yui3/node-event-simulate/node-event-simulate-min.js
+share/bugzilla/js/yui3/node-flick/assets/node-flick-core.css
+share/bugzilla/js/yui3/node-flick/assets/skins/sam/node-flick.css
+share/bugzilla/js/yui3/node-flick/node-flick-min.js
+share/bugzilla/js/yui3/node-focusmanager/node-focusmanager-min.js
+share/bugzilla/js/yui3/node-load/node-load-min.js
+share/bugzilla/js/yui3/node-menunav/assets/node-menunav-core.css
+share/bugzilla/js/yui3/node-menunav/assets/skins/night/horizontal-menu-submenu-indicator.png
+share/bugzilla/js/yui3/node-menunav/assets/skins/night/node-menunav.css
+share/bugzilla/js/yui3/node-menunav/assets/skins/night/vertical-menu-submenu-indicator.png
+share/bugzilla/js/yui3/node-menunav/assets/skins/sam/horizontal-menu-submenu-indicator.png
+share/bugzilla/js/yui3/node-menunav/assets/skins/sam/horizontal-menu-submenu-toggle.png
+share/bugzilla/js/yui3/node-menunav/assets/skins/sam/node-menunav.css
+share/bugzilla/js/yui3/node-menunav/assets/skins/sam/vertical-menu-submenu-indicator.png
+share/bugzilla/js/yui3/node-menunav/node-menunav-min.js
+share/bugzilla/js/yui3/node-pluginhost/node-pluginhost-min.js
+share/bugzilla/js/yui3/node-screen/node-screen-min.js
+share/bugzilla/js/yui3/node-scroll-info/node-scroll-info-min.js
+share/bugzilla/js/yui3/node-style/node-style-min.js
+share/bugzilla/js/yui3/oop/oop-min.js
+share/bugzilla/js/yui3/overlay/assets/overlay-core.css
+share/bugzilla/js/yui3/overlay/assets/skins/night/overlay.css
+share/bugzilla/js/yui3/overlay/assets/skins/sam/overlay.css
+share/bugzilla/js/yui3/overlay/overlay-min.js
+share/bugzilla/js/yui3/paginator-core/paginator-core-min.js
+share/bugzilla/js/yui3/paginator-url/paginator-url-min.js
+share/bugzilla/js/yui3/paginator/paginator-min.js
+share/bugzilla/js/yui3/panel/assets/panel-core.css
+share/bugzilla/js/yui3/panel/assets/skins/night/panel.css
+share/bugzilla/js/yui3/panel/assets/skins/night/sprite_icons.png
+share/bugzilla/js/yui3/panel/assets/skins/sam/panel.css
+share/bugzilla/js/yui3/panel/assets/skins/sam/sprite_icons.png
+share/bugzilla/js/yui3/panel/panel-min.js
+share/bugzilla/js/yui3/parallel/parallel-min.js
+share/bugzilla/js/yui3/pjax-base/pjax-base-min.js
+share/bugzilla/js/yui3/pjax-content/pjax-content-min.js
+share/bugzilla/js/yui3/pjax-plugin/pjax-plugin-min.js
+share/bugzilla/js/yui3/pjax/pjax-min.js
+share/bugzilla/js/yui3/plugin/plugin-min.js
+share/bugzilla/js/yui3/pluginhost-base/pluginhost-base-min.js
+share/bugzilla/js/yui3/pluginhost-config/pluginhost-config-min.js
+share/bugzilla/js/yui3/promise/promise-min.js
+share/bugzilla/js/yui3/querystring-parse-simple/querystring-parse-simple-min.js
+share/bugzilla/js/yui3/querystring-parse/querystring-parse-min.js
+share/bugzilla/js/yui3/querystring-stringify-simple/querystring-stringify-simple-min.js
+share/bugzilla/js/yui3/querystring-stringify/querystring-stringify-min.js
+share/bugzilla/js/yui3/queue-promote/queue-promote-min.js
+share/bugzilla/js/yui3/range-slider/assets/thumb-x-oblong-dark.png
+share/bugzilla/js/yui3/range-slider/assets/thumb-x-oblong.png
+share/bugzilla/js/yui3/range-slider/assets/thumb-x-oblong2-dark.png
+share/bugzilla/js/yui3/range-slider/assets/thumb-x-oblong2.png
+share/bugzilla/js/yui3/range-slider/assets/thumb-y-oblong-dark.png
+share/bugzilla/js/yui3/range-slider/assets/thumb-y-oblong.png
+share/bugzilla/js/yui3/range-slider/assets/thumb-y-oblong2-dark.png
+share/bugzilla/js/yui3/range-slider/assets/thumb-y-oblong2.png
+share/bugzilla/js/yui3/range-slider/range-slider-min.js
+share/bugzilla/js/yui3/recordset-base/recordset-base-min.js
+share/bugzilla/js/yui3/recordset-filter/recordset-filter-min.js
+share/bugzilla/js/yui3/recordset-indexer/recordset-indexer-min.js
+share/bugzilla/js/yui3/recordset-sort/recordset-sort-min.js
+share/bugzilla/js/yui3/resize-base/assets/resize-base-core.css
+share/bugzilla/js/yui3/resize-base/assets/skins/night/arrows.png
+share/bugzilla/js/yui3/resize-base/assets/skins/night/resize-base.css
+share/bugzilla/js/yui3/resize-base/assets/skins/sam/arrows.png
+share/bugzilla/js/yui3/resize-base/assets/skins/sam/resize-base.css
+share/bugzilla/js/yui3/resize-base/resize-base-min.js
+share/bugzilla/js/yui3/resize-constrain/assets/skins/night/arrows.png
+share/bugzilla/js/yui3/resize-constrain/assets/skins/sam/arrows.png
+share/bugzilla/js/yui3/resize-constrain/resize-constrain-min.js
+share/bugzilla/js/yui3/resize-plugin/assets/skins/night/arrows.png
+share/bugzilla/js/yui3/resize-plugin/assets/skins/sam/arrows.png
+share/bugzilla/js/yui3/resize-plugin/resize-plugin-min.js
+share/bugzilla/js/yui3/resize-proxy/assets/skins/night/arrows.png
+share/bugzilla/js/yui3/resize-proxy/assets/skins/sam/arrows.png
+share/bugzilla/js/yui3/resize-proxy/resize-proxy-min.js
+share/bugzilla/js/yui3/router/router-min.js
+share/bugzilla/js/yui3/scrollview-base-ie/scrollview-base-ie-min.js
+share/bugzilla/js/yui3/scrollview-base/assets/scrollview-base-core.css
+share/bugzilla/js/yui3/scrollview-base/assets/skins/night/scrollview-base.css
+share/bugzilla/js/yui3/scrollview-base/assets/skins/sam/scrollview-base.css
+share/bugzilla/js/yui3/scrollview-base/scrollview-base-min.js
+share/bugzilla/js/yui3/scrollview-list/assets/scrollview-list-core.css
+share/bugzilla/js/yui3/scrollview-list/assets/skins/night/scrollview-list.css
+share/bugzilla/js/yui3/scrollview-list/assets/skins/sam/scrollview-list.css
+share/bugzilla/js/yui3/scrollview-list/scrollview-list-min.js
+share/bugzilla/js/yui3/scrollview-paginator/scrollview-paginator-min.js
+share/bugzilla/js/yui3/scrollview-scrollbars/assets/scrollview-scrollbars-core.css
+share/bugzilla/js/yui3/scrollview-scrollbars/assets/skins/night/scrollview-scrollbars.css
+share/bugzilla/js/yui3/scrollview-scrollbars/assets/skins/sam/scrollview-scrollbars.css
+share/bugzilla/js/yui3/scrollview-scrollbars/scrollview-scrollbars-min.js
+share/bugzilla/js/yui3/scrollview/scrollview-min.js
+share/bugzilla/js/yui3/selector-css2/selector-css2-min.js
+share/bugzilla/js/yui3/selector-css3/selector-css3-min.js
+share/bugzilla/js/yui3/selector-native/selector-native-min.js
+share/bugzilla/js/yui3/selector/selector-min.js
+share/bugzilla/js/yui3/series-area-stacked/series-area-stacked-min.js
+share/bugzilla/js/yui3/series-area/series-area-min.js
+share/bugzilla/js/yui3/series-areaspline-stacked/series-areaspline-stacked-min.js
+share/bugzilla/js/yui3/series-areaspline/series-areaspline-min.js
+share/bugzilla/js/yui3/series-bar-stacked/series-bar-stacked-min.js
+share/bugzilla/js/yui3/series-bar/series-bar-min.js
+share/bugzilla/js/yui3/series-base/series-base-min.js
+share/bugzilla/js/yui3/series-candlestick/series-candlestick-min.js
+share/bugzilla/js/yui3/series-cartesian/series-cartesian-min.js
+share/bugzilla/js/yui3/series-column-stacked/series-column-stacked-min.js
+share/bugzilla/js/yui3/series-column/series-column-min.js
+share/bugzilla/js/yui3/series-combo-stacked/series-combo-stacked-min.js
+share/bugzilla/js/yui3/series-combo/series-combo-min.js
+share/bugzilla/js/yui3/series-combospline-stacked/series-combospline-stacked-min.js
+share/bugzilla/js/yui3/series-combospline/series-combospline-min.js
+share/bugzilla/js/yui3/series-curve-util/series-curve-util-min.js
+share/bugzilla/js/yui3/series-fill-util/series-fill-util-min.js
+share/bugzilla/js/yui3/series-histogram-base/series-histogram-base-min.js
+share/bugzilla/js/yui3/series-line-stacked/series-line-stacked-min.js
+share/bugzilla/js/yui3/series-line-util/series-line-util-min.js
+share/bugzilla/js/yui3/series-line/series-line-min.js
+share/bugzilla/js/yui3/series-marker-stacked/series-marker-stacked-min.js
+share/bugzilla/js/yui3/series-marker/series-marker-min.js
+share/bugzilla/js/yui3/series-ohlc/series-ohlc-min.js
+share/bugzilla/js/yui3/series-pie/series-pie-min.js
+share/bugzilla/js/yui3/series-plot-util/series-plot-util-min.js
+share/bugzilla/js/yui3/series-range/series-range-min.js
+share/bugzilla/js/yui3/series-spline-stacked/series-spline-stacked-min.js
+share/bugzilla/js/yui3/series-spline/series-spline-min.js
+share/bugzilla/js/yui3/series-stacked/series-stacked-min.js
+share/bugzilla/js/yui3/shim-plugin/shim-plugin-min.js
+share/bugzilla/js/yui3/slider-base/assets/skins/audio-light/rail-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/audio-light/rail-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/audio-light/slider-base.css
+share/bugzilla/js/yui3/slider-base/assets/skins/audio-light/slider-skin.css
+share/bugzilla/js/yui3/slider-base/assets/skins/audio-light/thumb-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/audio-light/thumb-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/audio/rail-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/audio/rail-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/audio/slider-base.css
+share/bugzilla/js/yui3/slider-base/assets/skins/audio/slider-skin.css
+share/bugzilla/js/yui3/slider-base/assets/skins/audio/thumb-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/audio/thumb-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/rail-x-dots.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/rail-x-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/rail-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/rail-y-dots.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/rail-y-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/rail-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/slider-base.css
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/slider-skin.css
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/thumb-x-line.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/thumb-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/thumb-y-line.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule-dark/thumb-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/rail-x-dots.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/rail-x-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/rail-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/rail-y-dots.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/rail-y-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/rail-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/slider-base.css
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/slider-skin.css
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/thumb-x-line.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/thumb-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/thumb-y-line.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/thumb-y-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/capsule/thumb-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/night/rail-x-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/night/rail-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/night/rail-y-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/night/rail-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/night/slider-base.css
+share/bugzilla/js/yui3/slider-base/assets/skins/night/slider-skin.css
+share/bugzilla/js/yui3/slider-base/assets/skins/night/thumb-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/night/thumb-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round-dark/rail-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round-dark/rail-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round-dark/slider-base.css
+share/bugzilla/js/yui3/slider-base/assets/skins/round-dark/slider-skin.css
+share/bugzilla/js/yui3/slider-base/assets/skins/round-dark/thumb-x-grip.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round-dark/thumb-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round-dark/thumb-y-grip.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round-dark/thumb-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round/rail-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round/rail-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round/slider-base.css
+share/bugzilla/js/yui3/slider-base/assets/skins/round/slider-skin.css
+share/bugzilla/js/yui3/slider-base/assets/skins/round/thumb-x-grip.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round/thumb-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round/thumb-y-grip.png
+share/bugzilla/js/yui3/slider-base/assets/skins/round/thumb-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam-dark/rail-x-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam-dark/rail-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam-dark/rail-y-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam-dark/rail-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam-dark/slider-base.css
+share/bugzilla/js/yui3/slider-base/assets/skins/sam-dark/slider-skin.css
+share/bugzilla/js/yui3/slider-base/assets/skins/sam-dark/thumb-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam-dark/thumb-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam/rail-x-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam/rail-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam/rail-y-lines.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam/rail-y.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam/slider-base.css
+share/bugzilla/js/yui3/slider-base/assets/skins/sam/slider-skin.css
+share/bugzilla/js/yui3/slider-base/assets/skins/sam/thumb-x.png
+share/bugzilla/js/yui3/slider-base/assets/skins/sam/thumb-y.png
+share/bugzilla/js/yui3/slider-base/assets/slider-base-core.css
+share/bugzilla/js/yui3/slider-base/assets/slider-core.css
+share/bugzilla/js/yui3/slider-base/assets/thumb-x-oblong-dark.png
+share/bugzilla/js/yui3/slider-base/assets/thumb-x-oblong.png
+share/bugzilla/js/yui3/slider-base/assets/thumb-x-oblong2-dark.png
+share/bugzilla/js/yui3/slider-base/assets/thumb-x-oblong2.png
+share/bugzilla/js/yui3/slider-base/assets/thumb-y-oblong-dark.png
+share/bugzilla/js/yui3/slider-base/assets/thumb-y-oblong.png
+share/bugzilla/js/yui3/slider-base/assets/thumb-y-oblong2-dark.png
+share/bugzilla/js/yui3/slider-base/assets/thumb-y-oblong2.png
+share/bugzilla/js/yui3/slider-base/slider-base-min.js
+share/bugzilla/js/yui3/slider-value-range/assets/thumb-x-oblong-dark.png
+share/bugzilla/js/yui3/slider-value-range/assets/thumb-x-oblong.png
+share/bugzilla/js/yui3/slider-value-range/assets/thumb-x-oblong2-dark.png
+share/bugzilla/js/yui3/slider-value-range/assets/thumb-x-oblong2.png
+share/bugzilla/js/yui3/slider-value-range/assets/thumb-y-oblong-dark.png
+share/bugzilla/js/yui3/slider-value-range/assets/thumb-y-oblong.png
+share/bugzilla/js/yui3/slider-value-range/assets/thumb-y-oblong2-dark.png
+share/bugzilla/js/yui3/slider-value-range/assets/thumb-y-oblong2.png
+share/bugzilla/js/yui3/slider-value-range/slider-value-range-min.js
+share/bugzilla/js/yui3/sortable-scroll/sortable-scroll-min.js
+share/bugzilla/js/yui3/sortable/sortable-min.js
+share/bugzilla/js/yui3/stylesheet/stylesheet-min.js
+share/bugzilla/js/yui3/substitute/substitute-min.js
+share/bugzilla/js/yui3/swf/swf-min.js
+share/bugzilla/js/yui3/swfdetect/swfdetect-min.js
+share/bugzilla/js/yui3/tabview-base/tabview-base-min.js
+share/bugzilla/js/yui3/tabview-plugin/tabview-plugin-min.js
+share/bugzilla/js/yui3/tabview/assets/skins/night/tabview.css
+share/bugzilla/js/yui3/tabview/assets/skins/sam/tabview.css
+share/bugzilla/js/yui3/tabview/assets/tabview-core.css
+share/bugzilla/js/yui3/tabview/tabview-min.js
+share/bugzilla/js/yui3/template-base/template-base-min.js
+share/bugzilla/js/yui3/template-micro/template-micro-min.js
+share/bugzilla/js/yui3/test-console/assets/skins/sam/test-console.css
+share/bugzilla/js/yui3/test-console/assets/test-console-core.css
+share/bugzilla/js/yui3/test-console/test-console-min.js
+share/bugzilla/js/yui3/test/test-min.js
+share/bugzilla/js/yui3/text-accentfold/text-accentfold-min.js
+share/bugzilla/js/yui3/text-data-accentfold/text-data-accentfold-min.js
+share/bugzilla/js/yui3/text-data-wordbreak/text-data-wordbreak-min.js
+share/bugzilla/js/yui3/text-wordbreak/text-wordbreak-min.js
+share/bugzilla/js/yui3/timers/timers-min.js
+share/bugzilla/js/yui3/transition-timer/transition-timer-min.js
+share/bugzilla/js/yui3/transition/transition-min.js
+share/bugzilla/js/yui3/tree-labelable/tree-labelable-min.js
+share/bugzilla/js/yui3/tree-lazy/tree-lazy-min.js
+share/bugzilla/js/yui3/tree-node/tree-node-min.js
+share/bugzilla/js/yui3/tree-openable/tree-openable-min.js
+share/bugzilla/js/yui3/tree-selectable/tree-selectable-min.js
+share/bugzilla/js/yui3/tree-sortable/tree-sortable-min.js
+share/bugzilla/js/yui3/tree/tree-min.js
+share/bugzilla/js/yui3/uploader-deprecated/assets/uploader.swf
+share/bugzilla/js/yui3/uploader-flash/assets/uploader-flash-core.css
+share/bugzilla/js/yui3/uploader-flash/uploader-flash-min.js
+share/bugzilla/js/yui3/uploader-html5/assets/uploader-flash-core.css
+share/bugzilla/js/yui3/uploader-html5/uploader-html5-min.js
+share/bugzilla/js/yui3/uploader-queue/assets/uploader-flash-core.css
+share/bugzilla/js/yui3/uploader-queue/uploader-queue-min.js
+share/bugzilla/js/yui3/uploader/assets/flashuploader.swf
+share/bugzilla/js/yui3/uploader/assets/uploader-flash-core.css
+share/bugzilla/js/yui3/uploader/uploader-min.js
+share/bugzilla/js/yui3/view-node-map/view-node-map-min.js
+share/bugzilla/js/yui3/view/view-min.js
+share/bugzilla/js/yui3/widget-anim/widget-anim-min.js
+share/bugzilla/js/yui3/widget-autohide/widget-autohide-min.js
+share/bugzilla/js/yui3/widget-base-ie/widget-base-ie-min.js
+share/bugzilla/js/yui3/widget-base/assets/skins/night/widget-base.css
+share/bugzilla/js/yui3/widget-base/assets/skins/sam/widget-base.css
+share/bugzilla/js/yui3/widget-base/assets/widget-base-core.css
+share/bugzilla/js/yui3/widget-base/widget-base-min.js
+share/bugzilla/js/yui3/widget-buttons/assets/skins/night/sprite_icons.gif
+share/bugzilla/js/yui3/widget-buttons/assets/skins/sam/sprite_icons.gif
+share/bugzilla/js/yui3/widget-buttons/widget-buttons-min.js
+share/bugzilla/js/yui3/widget-child/widget-child-min.js
+share/bugzilla/js/yui3/widget-htmlparser/widget-htmlparser-min.js
+share/bugzilla/js/yui3/widget-modality/assets/skins/night/widget-modality.css
+share/bugzilla/js/yui3/widget-modality/assets/skins/sam/widget-modality.css
+share/bugzilla/js/yui3/widget-modality/assets/widget-modality-core.css
+share/bugzilla/js/yui3/widget-modality/widget-modality-min.js
+share/bugzilla/js/yui3/widget-parent/widget-parent-min.js
+share/bugzilla/js/yui3/widget-position-align/widget-position-align-min.js
+share/bugzilla/js/yui3/widget-position-constrain/widget-position-constrain-min.js
+share/bugzilla/js/yui3/widget-position/widget-position-min.js
+share/bugzilla/js/yui3/widget-skin/widget-skin-min.js
+share/bugzilla/js/yui3/widget-stack/assets/skins/night/widget-stack.css
+share/bugzilla/js/yui3/widget-stack/assets/skins/sam/widget-stack.css
+share/bugzilla/js/yui3/widget-stack/assets/widget-stack-core.css
+share/bugzilla/js/yui3/widget-stack/widget-stack-min.js
+share/bugzilla/js/yui3/widget-stdmod/widget-stdmod-min.js
+share/bugzilla/js/yui3/widget-uievents/widget-uievents-min.js
+share/bugzilla/js/yui3/yql-jsonp/yql-jsonp-min.js
+share/bugzilla/js/yui3/yql-nodejs/yql-nodejs-min.js
+share/bugzilla/js/yui3/yql-winjs/yql-winjs-min.js
+share/bugzilla/js/yui3/yql/yql-min.js
+share/bugzilla/js/yui3/yui-base/yui-base-min.js
+share/bugzilla/js/yui3/yui-core/yui-core-min.js
+share/bugzilla/js/yui3/yui-later/yui-later-min.js
+share/bugzilla/js/yui3/yui-log-nodejs/yui-log-nodejs-min.js
+share/bugzilla/js/yui3/yui-log/yui-log-min.js
+share/bugzilla/js/yui3/yui-nodejs/yui-nodejs-min.js
+share/bugzilla/js/yui3/yui-throttle/yui-throttle-min.js
+share/bugzilla/js/yui3/yui/yui-min.js
+share/bugzilla/jsonrpc.cgi
+share/bugzilla/long_list.cgi
+share/bugzilla/metrics.pl
+share/bugzilla/migrate.pl
+share/bugzilla/mod_perl.pl
+share/bugzilla/new_bug.cgi
+share/bugzilla/page.cgi
+share/bugzilla/post_bug.cgi
+share/bugzilla/process_bug.cgi
+share/bugzilla/query.cgi
+share/bugzilla/quips.cgi
+share/bugzilla/relogin.cgi
+share/bugzilla/report.cgi
+share/bugzilla/reports.cgi
+share/bugzilla/request.cgi
+share/bugzilla/reset_password.cgi
+share/bugzilla/rest.cgi
+share/bugzilla/robots.cgi
+share/bugzilla/runtests.pl
+share/bugzilla/sanitycheck.cgi
+share/bugzilla/sanitycheck.pl
+share/bugzilla/search_plugin.cgi
+share/bugzilla/sentry.pl
+share/bugzilla/show_activity.cgi
+share/bugzilla/show_bug.cgi
+share/bugzilla/showattachment.cgi
+share/bugzilla/showdependencygraph.cgi
+share/bugzilla/showdependencytree.cgi
+share/bugzilla/summarize_time.cgi
+share/bugzilla/template/en/default/account/auth/delegation.html.tmpl
+share/bugzilla/template/en/default/account/auth/login-small.html.tmpl
+share/bugzilla/template/en/default/account/auth/login.html.tmpl
+share/bugzilla/template/en/default/account/cancel-token.txt.tmpl
+share/bugzilla/template/en/default/account/create.html.tmpl
+share/bugzilla/template/en/default/account/created.html.tmpl
+share/bugzilla/template/en/default/account/email/change-new.txt.tmpl
+share/bugzilla/template/en/default/account/email/change-old.txt.tmpl
+share/bugzilla/template/en/default/account/email/confirm-new.html.tmpl
+share/bugzilla/template/en/default/account/email/confirm.html.tmpl
+share/bugzilla/template/en/default/account/email/request-new.txt.tmpl
+share/bugzilla/template/en/default/account/password/forgotten-password.txt.tmpl
+share/bugzilla/template/en/default/account/password/set-forgotten-password.html.tmpl
+share/bugzilla/template/en/default/account/prefs/account.html.tmpl
+share/bugzilla/template/en/default/account/prefs/apikey.html.tmpl
+share/bugzilla/template/en/default/account/prefs/email.html.tmpl
+share/bugzilla/template/en/default/account/prefs/mfa.html.tmpl
+share/bugzilla/template/en/default/account/prefs/permissions.html.tmpl
+share/bugzilla/template/en/default/account/prefs/prefs.html.tmpl
+share/bugzilla/template/en/default/account/prefs/saved-searches.html.tmpl
+share/bugzilla/template/en/default/account/prefs/sessions.html.tmpl
+share/bugzilla/template/en/default/account/prefs/settings.html.tmpl
+share/bugzilla/template/en/default/account/prefs/tabs.html.tmpl
+share/bugzilla/template/en/default/account/profile-activity.html.tmpl
+share/bugzilla/template/en/default/account/reset-password.html.tmpl
+share/bugzilla/template/en/default/admin/admin.html.tmpl
+share/bugzilla/template/en/default/admin/classifications/add.html.tmpl
+share/bugzilla/template/en/default/admin/classifications/del.html.tmpl
+share/bugzilla/template/en/default/admin/classifications/edit-common.html.tmpl
+share/bugzilla/template/en/default/admin/classifications/edit.html.tmpl
+share/bugzilla/template/en/default/admin/classifications/footer.html.tmpl
+share/bugzilla/template/en/default/admin/classifications/reclassify.html.tmpl
+share/bugzilla/template/en/default/admin/classifications/select.html.tmpl
+share/bugzilla/template/en/default/admin/components/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/admin/components/create.html.tmpl
+share/bugzilla/template/en/default/admin/components/edit-common.html.tmpl
+share/bugzilla/template/en/default/admin/components/edit.html.tmpl
+share/bugzilla/template/en/default/admin/components/footer.html.tmpl
+share/bugzilla/template/en/default/admin/components/list.html.tmpl
+share/bugzilla/template/en/default/admin/components/select-product.html.tmpl
+share/bugzilla/template/en/default/admin/confirm-action.html.tmpl
+share/bugzilla/template/en/default/admin/custom_fields/cf-js.js.tmpl
+share/bugzilla/template/en/default/admin/custom_fields/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/admin/custom_fields/create.html.tmpl
+share/bugzilla/template/en/default/admin/custom_fields/edit.html.tmpl
+share/bugzilla/template/en/default/admin/custom_fields/list.html.tmpl
+share/bugzilla/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/admin/fieldvalues/create.html.tmpl
+share/bugzilla/template/en/default/admin/fieldvalues/edit.html.tmpl
+share/bugzilla/template/en/default/admin/fieldvalues/footer.html.tmpl
+share/bugzilla/template/en/default/admin/fieldvalues/list.html.tmpl
+share/bugzilla/template/en/default/admin/fieldvalues/select-field.html.tmpl
+share/bugzilla/template/en/default/admin/flag-type/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/admin/flag-type/edit.html.tmpl
+share/bugzilla/template/en/default/admin/flag-type/list.html.tmpl
+share/bugzilla/template/en/default/admin/groups/confirm-remove.html.tmpl
+share/bugzilla/template/en/default/admin/groups/create.html.tmpl
+share/bugzilla/template/en/default/admin/groups/delete.html.tmpl
+share/bugzilla/template/en/default/admin/groups/edit.html.tmpl
+share/bugzilla/template/en/default/admin/groups/email/idle-member-removal-header.txt.tmpl
+share/bugzilla/template/en/default/admin/groups/email/idle-member-removal.html.tmpl
+share/bugzilla/template/en/default/admin/groups/email/idle-member-removal.txt.tmpl
+share/bugzilla/template/en/default/admin/groups/list.html.tmpl
+share/bugzilla/template/en/default/admin/keywords/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/admin/keywords/create.html.tmpl
+share/bugzilla/template/en/default/admin/keywords/edit.html.tmpl
+share/bugzilla/template/en/default/admin/keywords/list.html.tmpl
+share/bugzilla/template/en/default/admin/milestones/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/admin/milestones/create.html.tmpl
+share/bugzilla/template/en/default/admin/milestones/edit.html.tmpl
+share/bugzilla/template/en/default/admin/milestones/footer.html.tmpl
+share/bugzilla/template/en/default/admin/milestones/list.html.tmpl
+share/bugzilla/template/en/default/admin/milestones/select-product.html.tmpl
+share/bugzilla/template/en/default/admin/params/admin.html.tmpl
+share/bugzilla/template/en/default/admin/params/advanced.html.tmpl
+share/bugzilla/template/en/default/admin/params/attachment.html.tmpl
+share/bugzilla/template/en/default/admin/params/auth.html.tmpl
+share/bugzilla/template/en/default/admin/params/bugchange.html.tmpl
+share/bugzilla/template/en/default/admin/params/bugfields.html.tmpl
+share/bugzilla/template/en/default/admin/params/common.html.tmpl
+share/bugzilla/template/en/default/admin/params/dependencygraph.html.tmpl
+share/bugzilla/template/en/default/admin/params/editparams.html.tmpl
+share/bugzilla/template/en/default/admin/params/elastic.html.tmpl
+share/bugzilla/template/en/default/admin/params/general.html.tmpl
+share/bugzilla/template/en/default/admin/params/groupsecurity.html.tmpl
+share/bugzilla/template/en/default/admin/params/index.html.tmpl
+share/bugzilla/template/en/default/admin/params/ldap.html.tmpl
+share/bugzilla/template/en/default/admin/params/mta.html.tmpl
+share/bugzilla/template/en/default/admin/params/patchviewer.html.tmpl
+share/bugzilla/template/en/default/admin/params/query.html.tmpl
+share/bugzilla/template/en/default/admin/params/radius.html.tmpl
+share/bugzilla/template/en/default/admin/params/shadowdb.html.tmpl
+share/bugzilla/template/en/default/admin/params/usermatch.html.tmpl
+share/bugzilla/template/en/default/admin/products/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/admin/products/create.html.tmpl
+share/bugzilla/template/en/default/admin/products/edit-common.html.tmpl
+share/bugzilla/template/en/default/admin/products/edit.html.tmpl
+share/bugzilla/template/en/default/admin/products/footer.html.tmpl
+share/bugzilla/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl
+share/bugzilla/template/en/default/admin/products/groupcontrol/edit.html.tmpl
+share/bugzilla/template/en/default/admin/products/groupcontrol/updated.html.tmpl
+share/bugzilla/template/en/default/admin/products/list-classifications.html.tmpl
+share/bugzilla/template/en/default/admin/products/list.html.tmpl
+share/bugzilla/template/en/default/admin/products/updated.html.tmpl
+share/bugzilla/template/en/default/admin/reports/job_queue.html.tmpl
+share/bugzilla/template/en/default/admin/sanitycheck/list.html.tmpl
+share/bugzilla/template/en/default/admin/sanitycheck/messages.html.tmpl
+share/bugzilla/template/en/default/admin/settings/edit.html.tmpl
+share/bugzilla/template/en/default/admin/sudo.html.tmpl
+share/bugzilla/template/en/default/admin/table.html.tmpl
+share/bugzilla/template/en/default/admin/users/bounce-disabled.txt.tmpl
+share/bugzilla/template/en/default/admin/users/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/admin/users/create.html.tmpl
+share/bugzilla/template/en/default/admin/users/edit.html.tmpl
+share/bugzilla/template/en/default/admin/users/list.html.tmpl
+share/bugzilla/template/en/default/admin/users/listselectvars.html.tmpl
+share/bugzilla/template/en/default/admin/users/responsibilities.html.tmpl
+share/bugzilla/template/en/default/admin/users/search.html.tmpl
+share/bugzilla/template/en/default/admin/users/userdata.html.tmpl
+share/bugzilla/template/en/default/admin/versions/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/admin/versions/create.html.tmpl
+share/bugzilla/template/en/default/admin/versions/edit.html.tmpl
+share/bugzilla/template/en/default/admin/versions/footer.html.tmpl
+share/bugzilla/template/en/default/admin/versions/list.html.tmpl
+share/bugzilla/template/en/default/admin/versions/select-product.html.tmpl
+share/bugzilla/template/en/default/admin/workflow/comment.html.tmpl
+share/bugzilla/template/en/default/admin/workflow/edit.html.tmpl
+share/bugzilla/template/en/default/attachment/choose.html.tmpl
+share/bugzilla/template/en/default/attachment/confirm-delete.html.tmpl
+share/bugzilla/template/en/default/attachment/create.html.tmpl
+share/bugzilla/template/en/default/attachment/created.html.tmpl
+share/bugzilla/template/en/default/attachment/createformcontents.html.tmpl
+share/bugzilla/template/en/default/attachment/delete_reason.txt.tmpl
+share/bugzilla/template/en/default/attachment/diff-file.html.tmpl
+share/bugzilla/template/en/default/attachment/diff-footer.html.tmpl
+share/bugzilla/template/en/default/attachment/diff-header.html.tmpl
+share/bugzilla/template/en/default/attachment/edit.html.tmpl
+share/bugzilla/template/en/default/attachment/list.html.tmpl
+share/bugzilla/template/en/default/attachment/midair.html.tmpl
+share/bugzilla/template/en/default/attachment/show-multiple.html.tmpl
+share/bugzilla/template/en/default/attachment/updated.html.tmpl
+share/bugzilla/template/en/default/bug/activity/show.html.tmpl
+share/bugzilla/template/en/default/bug/activity/table.html.tmpl
+share/bugzilla/template/en/default/bug/choose.html.tmpl
+share/bugzilla/template/en/default/bug/comment.html.tmpl
+share/bugzilla/template/en/default/bug/comments.html.tmpl
+share/bugzilla/template/en/default/bug/create/comment-guided.txt.tmpl
+share/bugzilla/template/en/default/bug/create/comment.txt.tmpl
+share/bugzilla/template/en/default/bug/create/create-guided.html.tmpl
+share/bugzilla/template/en/default/bug/create/create.html.tmpl
+share/bugzilla/template/en/default/bug/create/created.html.tmpl
+share/bugzilla/template/en/default/bug/create/make-template.html.tmpl
+share/bugzilla/template/en/default/bug/create/user-message.html.tmpl
+share/bugzilla/template/en/default/bug/dependency-graph.html.tmpl
+share/bugzilla/template/en/default/bug/dependency-tree.html.tmpl
+share/bugzilla/template/en/default/bug/edit.html.tmpl
+share/bugzilla/template/en/default/bug/field-events.js.tmpl
+share/bugzilla/template/en/default/bug/field-help.none.tmpl
+share/bugzilla/template/en/default/bug/field-label.html.tmpl
+share/bugzilla/template/en/default/bug/field.html.tmpl
+share/bugzilla/template/en/default/bug/format_comment.txt.tmpl
+share/bugzilla/template/en/default/bug/knob.html.tmpl
+share/bugzilla/template/en/default/bug/link.html.tmpl
+share/bugzilla/template/en/default/bug/navigate.html.tmpl
+share/bugzilla/template/en/default/bug/new_bug.html.tmpl
+share/bugzilla/template/en/default/bug/process/bugmail.html.tmpl
+share/bugzilla/template/en/default/bug/process/confirm-duplicate.html.tmpl
+share/bugzilla/template/en/default/bug/process/header.html.tmpl
+share/bugzilla/template/en/default/bug/process/midair.html.tmpl
+share/bugzilla/template/en/default/bug/process/results.html.tmpl
+share/bugzilla/template/en/default/bug/process/updates-disabled.html.tmpl
+share/bugzilla/template/en/default/bug/process/verify-new-product.html.tmpl
+share/bugzilla/template/en/default/bug/show-header.html.tmpl
+share/bugzilla/template/en/default/bug/show-multiple.html.tmpl
+share/bugzilla/template/en/default/bug/show.html.tmpl
+share/bugzilla/template/en/default/bug/show.xml.tmpl
+share/bugzilla/template/en/default/bug/summarize-time.html.tmpl
+share/bugzilla/template/en/default/bug/tagging.html.tmpl
+share/bugzilla/template/en/default/bug/time.html.tmpl
+share/bugzilla/template/en/default/config.js.tmpl
+share/bugzilla/template/en/default/config.rdf.tmpl
+share/bugzilla/template/en/default/email/bugmail-common.txt.tmpl
+share/bugzilla/template/en/default/email/bugmail-header.txt.tmpl
+share/bugzilla/template/en/default/email/bugmail.html.tmpl
+share/bugzilla/template/en/default/email/bugmail.txt.tmpl
+share/bugzilla/template/en/default/email/header-common.txt.tmpl
+share/bugzilla/template/en/default/email/lockout.txt.tmpl
+share/bugzilla/template/en/default/email/new-api-key.txt.tmpl
+share/bugzilla/template/en/default/email/sanitycheck.txt.tmpl
+share/bugzilla/template/en/default/email/ses-complaint.txt.tmpl
+share/bugzilla/template/en/default/email/sudo.txt.tmpl
+share/bugzilla/template/en/default/email/whine.txt.tmpl
+share/bugzilla/template/en/default/extensions/config.pm.tmpl
+share/bugzilla/template/en/default/extensions/extension.pm.tmpl
+share/bugzilla/template/en/default/extensions/hook-readme.txt.tmpl
+share/bugzilla/template/en/default/extensions/license.txt.tmpl
+share/bugzilla/template/en/default/extensions/name-readme.txt.tmpl
+share/bugzilla/template/en/default/extensions/util.pm.tmpl
+share/bugzilla/template/en/default/extensions/web-readme.txt.tmpl
+share/bugzilla/template/en/default/filterexceptions.pl
+share/bugzilla/template/en/default/flag/list.html.tmpl
+share/bugzilla/template/en/default/global/banner.html.tmpl
+share/bugzilla/template/en/default/global/choose-classification.html.tmpl
+share/bugzilla/template/en/default/global/choose-product.html.tmpl
+share/bugzilla/template/en/default/global/code-error.html.tmpl
+share/bugzilla/template/en/default/global/confirm-action.html.tmpl
+share/bugzilla/template/en/default/global/confirm-user-match.html.tmpl
+share/bugzilla/template/en/default/global/docslinks.html.tmpl
+share/bugzilla/template/en/default/global/field-descs.none.tmpl
+share/bugzilla/template/en/default/global/footer.html.tmpl
+share/bugzilla/template/en/default/global/header-search-dropdown.html.tmpl
+share/bugzilla/template/en/default/global/header.html.tmpl
+share/bugzilla/template/en/default/global/hidden-fields.html.tmpl
+share/bugzilla/template/en/default/global/initialize.none.tmpl
+share/bugzilla/template/en/default/global/js-products.html.tmpl
+share/bugzilla/template/en/default/global/message.html.tmpl
+share/bugzilla/template/en/default/global/message.txt.tmpl
+share/bugzilla/template/en/default/global/messages.html.tmpl
+share/bugzilla/template/en/default/global/password-features.html.tmpl
+share/bugzilla/template/en/default/global/reason-descs.none.tmpl
+share/bugzilla/template/en/default/global/select-menu.html.tmpl
+share/bugzilla/template/en/default/global/setting-descs.none.tmpl
+share/bugzilla/template/en/default/global/site-navigation.html.tmpl
+share/bugzilla/template/en/default/global/tabs.html.tmpl
+share/bugzilla/template/en/default/global/textarea.html.tmpl
+share/bugzilla/template/en/default/global/user-error.html.tmpl
+share/bugzilla/template/en/default/global/user.html.tmpl
+share/bugzilla/template/en/default/global/userselect.html.tmpl
+share/bugzilla/template/en/default/global/value-descs.js.tmpl
+share/bugzilla/template/en/default/global/value-descs.none.tmpl
+share/bugzilla/template/en/default/global/variables.none.tmpl
+share/bugzilla/template/en/default/index.html.tmpl
+share/bugzilla/template/en/default/list/change-columns.html.tmpl
+share/bugzilla/template/en/default/list/edit-multiple.html.tmpl
+share/bugzilla/template/en/default/list/list-simple.html.tmpl
+share/bugzilla/template/en/default/list/list.atom.tmpl
+share/bugzilla/template/en/default/list/list.csv.tmpl
+share/bugzilla/template/en/default/list/list.html.tmpl
+share/bugzilla/template/en/default/list/list.ics.tmpl
+share/bugzilla/template/en/default/list/list.rdf.tmpl
+share/bugzilla/template/en/default/list/quips.html.tmpl
+share/bugzilla/template/en/default/list/server-push.html.tmpl
+share/bugzilla/template/en/default/list/table.html.tmpl
+share/bugzilla/template/en/default/mfa/dummy/verify.html.tmpl
+share/bugzilla/template/en/default/mfa/duo/not_enrolled.html.tmpl
+share/bugzilla/template/en/default/mfa/duo/verify.html.tmpl
+share/bugzilla/template/en/default/mfa/protected.html.tmpl
+share/bugzilla/template/en/default/mfa/recovery.html.tmpl
+share/bugzilla/template/en/default/mfa/totp/enroll.html.tmpl
+share/bugzilla/template/en/default/mfa/totp/verify.html.tmpl
+share/bugzilla/template/en/default/pages/bug-writing.html.tmpl
+share/bugzilla/template/en/default/pages/bugzilla.dtd.tmpl
+share/bugzilla/template/en/default/pages/linked.html.tmpl
+share/bugzilla/template/en/default/pages/linkify.html.tmpl
+share/bugzilla/template/en/default/pages/quicksearch.html.tmpl
+share/bugzilla/template/en/default/pages/release-notes.html.tmpl
+share/bugzilla/template/en/default/pages/release-notes3.html.tmpl
+share/bugzilla/template/en/default/pages/sudo.html.tmpl
+share/bugzilla/template/en/default/reports/chart.csv.tmpl
+share/bugzilla/template/en/default/reports/chart.html.tmpl
+share/bugzilla/template/en/default/reports/chart.png.tmpl
+share/bugzilla/template/en/default/reports/components.html.tmpl
+share/bugzilla/template/en/default/reports/create-chart.html.tmpl
+share/bugzilla/template/en/default/reports/delete-series.html.tmpl
+share/bugzilla/template/en/default/reports/duplicates-simple.html.tmpl
+share/bugzilla/template/en/default/reports/duplicates-table.html.tmpl
+share/bugzilla/template/en/default/reports/duplicates.html.tmpl
+share/bugzilla/template/en/default/reports/edit-series.html.tmpl
+share/bugzilla/template/en/default/reports/keywords.html.tmpl
+share/bugzilla/template/en/default/reports/menu.html.tmpl
+share/bugzilla/template/en/default/reports/old-charts.html.tmpl
+share/bugzilla/template/en/default/reports/report-bar.png.tmpl
+share/bugzilla/template/en/default/reports/report-line.png.tmpl
+share/bugzilla/template/en/default/reports/report-pie.png.tmpl
+share/bugzilla/template/en/default/reports/report-simple.html.tmpl
+share/bugzilla/template/en/default/reports/report-table.csv.tmpl
+share/bugzilla/template/en/default/reports/report-table.html.tmpl
+share/bugzilla/template/en/default/reports/report.csv.tmpl
+share/bugzilla/template/en/default/reports/report.html.tmpl
+share/bugzilla/template/en/default/reports/series-common.html.tmpl
+share/bugzilla/template/en/default/reports/series.html.tmpl
+share/bugzilla/template/en/default/request/email.txt.tmpl
+share/bugzilla/template/en/default/request/queue.csv.tmpl
+share/bugzilla/template/en/default/request/queue.html.tmpl
+share/bugzilla/template/en/default/request/queue.json.tmpl
+share/bugzilla/template/en/default/rest.html.tmpl
+share/bugzilla/template/en/default/robots.txt.tmpl
+share/bugzilla/template/en/default/search/boolean-charts.html.tmpl
+share/bugzilla/template/en/default/search/field.html.tmpl
+share/bugzilla/template/en/default/search/form.html.tmpl
+share/bugzilla/template/en/default/search/knob.html.tmpl
+share/bugzilla/template/en/default/search/search-advanced.html.tmpl
+share/bugzilla/template/en/default/search/search-create-series.html.tmpl
+share/bugzilla/template/en/default/search/search-google.html.tmpl
+share/bugzilla/template/en/default/search/search-instant.html.tmpl
+share/bugzilla/template/en/default/search/search-plugin.xml.tmpl
+share/bugzilla/template/en/default/search/search-report-graph.html.tmpl
+share/bugzilla/template/en/default/search/search-report-select.html.tmpl
+share/bugzilla/template/en/default/search/search-report-table.html.tmpl
+share/bugzilla/template/en/default/search/search-specific.html.tmpl
+share/bugzilla/template/en/default/search/tabs.html.tmpl
+share/bugzilla/template/en/default/search/type-select.html.tmpl
+share/bugzilla/template/en/default/setup/strings.txt.pl
+share/bugzilla/template/en/default/welcome-admin.html.tmpl
+share/bugzilla/template/en/default/whine/mail.html.tmpl
+share/bugzilla/template/en/default/whine/mail.txt.tmpl
+share/bugzilla/template/en/default/whine/multipart-mime.txt.tmpl
+share/bugzilla/template/en/default/whine/schedule.html.tmpl
+share/bugzilla/testagent.cgi
+share/bugzilla/testserver.pl
+share/bugzilla/token.cgi
+share/bugzilla/userprefs.cgi
+share/bugzilla/view_job_queue.cgi
+share/bugzilla/votes.cgi
+share/bugzilla/whine.pl
+share/bugzilla/whineatnews.pl
+share/bugzilla/xml.cgi
+share/bugzilla/xmlrpc.cgi
+share/examples/bugzilla/bugzilla.conf
+share/examples/bugzilla/localconfig
+@pkgdir share/doc/bugzilla/en
+@pkgdir share/bugzilla/xt
+@pkgdir share/bugzilla/t
+@pkgdir share/bugzilla/skins
+@pkgdir share/bugzilla/lib
+@pkgdir share/bugzilla/graphs
+@pkgdir share/bugzilla/docs/en/html/api/Bugzilla
+@pkgdir share/bugzilla/data
+@pkgdir share/bugzilla/contrib
diff --git a/harmony/TODO b/harmony/TODO
new file mode 100644
index 0000000000..2ef10e2dcc
--- /dev/null
+++ b/harmony/TODO
@@ -0,0 +1,4 @@
+TODO
+- Remove redundant dependencies
+- See that it works
+- Figure out what to do with options vs. "configure"
diff --git a/harmony/distinfo b/harmony/distinfo
new file mode 100644
index 0000000000..84b132d182
--- /dev/null
+++ b/harmony/distinfo
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.11 2017/01/16 14:06:43 mef Exp $
+
+SHA1 (harmony-32272f8af620a0eebb0fb5b3e21389719abca17e-32272f8af620a0eebb0fb5b3e21389719abca17e.tar.gz) = 3b9566c5d7e657d7f1efdc222f96ad566fb319b3
+RMD160 (harmony-32272f8af620a0eebb0fb5b3e21389719abca17e-32272f8af620a0eebb0fb5b3e21389719abca17e.tar.gz) = 7fd0481d8daee54d421d0c37ddc1d561ae4d13d8
+SHA512 (harmony-32272f8af620a0eebb0fb5b3e21389719abca17e-32272f8af620a0eebb0fb5b3e21389719abca17e.tar.gz) = 32582934208662b12c9be8b99d62873871ad875aa2a5164870eb0cf4e2a4ca507184b832ea43e3dba512d51c7f9b56b42d52ac03086c470f257a7da7841a4525
+Size (harmony-32272f8af620a0eebb0fb5b3e21389719abca17e-32272f8af620a0eebb0fb5b3e21389719abca17e.tar.gz) = 6823645 bytes
+SHA1 (patch-Makefile.PL) = 4011d2313cb1612bbff54610ba99ddf89170c696
diff --git a/harmony/files/bugzilla.conf b/harmony/files/bugzilla.conf
new file mode 100644
index 0000000000..6203370294
--- /dev/null
+++ b/harmony/files/bugzilla.conf
@@ -0,0 +1,16 @@
+# $NetBSD: bugzilla.conf,v 1.1.1.1 2007/08/27 17:51:33 adrianp Exp $
+#
+# Bugzilla configuration file fragment for Apache
+
+<IfModule mod_alias.c>
+    Alias /bugzilla/ "@BZDIR@/"
+</IfModule>
+
+<Directory "@BZDIR@">
+    AddHandler cgi-script .cgi
+    Options +ExecCGI
+    AllowOverride Limit
+    DirectoryIndex index.cgi index.html
+    Order allow,deny
+    Allow from all
+</Directory>
diff --git a/harmony/files/localconfig b/harmony/files/localconfig
new file mode 100644
index 0000000000..7a9d10f8d4
--- /dev/null
+++ b/harmony/files/localconfig
@@ -0,0 +1,90 @@
+
+# If you are using Apache as your web server, Bugzilla can create .htaccess
+# files for you that will instruct Apache not to serve files that shouldn't
+# be accessed from the web (like your local configuration data and non-cgi
+# executable files).  For this to work, the directory your Bugzilla
+# installation is in must be within the jurisdiction of a <Directory> block
+# in the httpd.conf file that has 'AllowOverride Limit' in it.  If it has
+# 'AllowOverride All' or other options with Limit, that's fine.
+# (Older Apache installations may use an access.conf file to store these
+# <Directory> blocks.)
+# If this is set to 1, Bugzilla will create these files if they don't exist.
+# If this is set to 0, Bugzilla will not create these files.
+$create_htaccess = 1;
+
+# This is the group your web server runs as.
+# If you have a Windows box, ignore this setting.
+# If you do not have access to the group your web server runs under,
+# set this to "". If you do set this to "", then your Bugzilla installation
+# will be _VERY_ insecure, because some files will be world readable/writable,
+# and so anyone who can get local access to your machine can do whatever they
+# want. You should only have this set to "" if this is a testing installation
+# and you cannot set this up any other way. YOU HAVE BEEN WARNED!
+# If you set this to anything other than "", you will need to run checksetup.pl
+# asroot, or as a user who is a member of the specified group.
+$webservergroup = '@BZ_WEB_GROUP@';
+
+# What SQL database to use. Default is mysql. List of supported databases
+# can be obtained by listing Bugzilla/DB directory - every module corresponds
+# to one supported database and the name corresponds to a driver name.
+$db_driver = '@DBDRIVER@';
+
+# The DNS name of the host that the database server runs on.
+$db_host = 'localhost';
+
+# The name of the database
+$db_name = 'bugs';
+
+# Who we connect to the database as.
+$db_user = 'bugs';
+
+# Enter your database password here. It's normally advisable to specify
+# a password for your bugzilla database user.
+# If you use apostrophe (') or a backslash (\) in your password, you'll
+# need to escape it by preceding it with a '\' character. (\') or (\)
+# (Far simpler just not to use those characters.)
+$db_pass = '';
+
+# Sometimes the database server is running on a non-standard port. If that's
+# the case for your database server, set this to the port number that your
+# database server is running on. Setting this to 0 means "use the default
+# port for my database server."
+$db_port = 0;
+
+# MySQL Only: Enter a path to the unix socket for MySQL. If this is
+# blank, then MySQL's compiled-in default will be used. You probably
+# want that.
+$db_sock = '';
+
+# Should checksetup.pl try to verify that your database setup is correct?
+# (with some combinations of database servers/Perl modules/moonphase this
+# doesn't work)
+$db_check = 1;
+
+# With the introduction of a configurable index page using the
+# template toolkit, Bugzilla's main index page is now index.cgi.
+# Most web servers will allow you to use index.cgi as a directory
+# index, and many come preconfigured that way, but if yours doesn't
+# then you'll need an index.html file that provides redirection
+# to index.cgi. Setting $index_html to 1 below will allow
+# checksetup.pl to create one for you if it doesn't exist.
+# NOTE: checksetup.pl will not replace an existing file, so if you
+#       wish to have checksetup.pl create one for you, you must
+#       make sure that index.html doesn't already exist
+$index_html = 0;
+
+# For some optional functions of Bugzilla (such as the pretty-print patch
+# viewer), we need the cvs binary to access files and revisions.
+# Because it's possible that this program is not in your path, you can specify
+# its location here.  Please specify the full path to the executable.
+$cvsbin = '@CVS@';
+
+# For some optional functions of Bugzilla (such as the pretty-print patch
+# viewer), we need the interdiff binary to make diffs between two patches.
+# Because it's possible that this program is not in your path, you can specify
+# its location here.  Please specify the full path to the executable.
+$interdiffbin = '@PREFIX@/bin/interdiff';
+
+# The interdiff feature needs diff, so we have to have that path.
+# Please specify the directory name only; do not use trailing slash.
+$diffpath = '/usr/bin';
diff --git a/harmony/options.mk b/harmony/options.mk
new file mode 100644
index 0000000000..3b42699cd0
--- /dev/null
+++ b/harmony/options.mk
@@ -0,0 +1,125 @@
+# $NetBSD: options.mk,v 1.7 2016/07/09 13:21:05 rillig Exp $
+
+
+PKG_OPTIONS_VAR=	PKG_OPTIONS.bugzilla
+
+PKG_OPTIONS_REQUIRED_GROUPS=	db
+PKG_OPTIONS_GROUP.db=		mysql pgsql oracle sqlite
+
+PKG_SUPPORTED_OPTIONS=	bugzilla-notify bugzilla-graphicalreports
+PKG_SUPPORTED_OPTIONS+=	bugzilla-inboundemail bugzilla-movebugs
+PKG_SUPPORTED_OPTIONS+=	bugzilla-imagemagick bugzilla-patchviewer
+PKG_SUPPORTED_OPTIONS+=	bugzilla-descriptions bugzilla-xmlrpc
+PKG_SUPPORTED_OPTIONS+=	bugzilla-modperl radius
+PKG_SUPPORTED_OPTIONS+=	mysql pgsql oracle ldap sqlite
+PKG_SUGGESTED_OPTIONS=	sqlite pgsql mysql
+
+.include "../../mk/bsd.options.mk"
+
+###
+### Use mysql or postgresql backend
+###
+.if !empty(PKG_OPTIONS:Mmysql)
+DEPENDS+=	p5-DBD-mysql>=4.000:../../databases/p5-DBD-mysql
+DBDRIVER=	mysql
+.elif !empty(PKG_OPTIONS:Msqlite)
+DEPENDS+=	p5-DBD-SQLite>=1.54:../../databases/p5-DBD-SQLite
+DEPENDS+=	sqlite3-[0-9]*:../../databases/sqlite3
+DBDRIVER=	sqlite
+.elif !empty(PKG_OPTIONS:Mpgsql)
+DEPENDS+=	p5-DBD-postgresql>=1.45:../../databases/p5-DBD-postgresql
+DBDRIVER=	pg
+.elif !empty(PKG_OPTIONS:Moracle)
+DEPENDS+=	p5-DBD-Oracle>=1.19:../../databases/p5-DBD-Oracle
+DBDRIVER=	oracle
+.endif
+
+###
+### Automatic Update Notifications
+###
+.if !empty(PKG_OPTIONS:Mbugzilla-notify)
+DEPENDS+=	p5-libwww-[0-9]*:../../www/p5-libwww
+.endif
+
+###
+### RADIUS authentication
+###
+.if !empty(PKG_OPTIONS:Mradius)
+DEPENDS+=	p5-RadiusPerl-[0-9]*:../../net/p5-RadiusPerl
+.endif
+
+###
+### More HTML in Product/Group Descriptions
+###
+.if !empty(PKG_OPTIONS:Mbugzilla-descriptions)
+DEPENDS+=	p5-HTML-Scrubber-[0-9]*:../../www/p5-HTML-Scrubber
+DEPENDS+=	p5-HTML-Parser>=3.40:../../www/p5-HTML-Parser
+.endif
+
+###
+### mod_perl
+###
+.if !empty(PKG_OPTIONS:Mbugzilla-modperl)
+DEPENDS+=	p5-CGI>=3.11:../../www/p5-CGI
+DEPENDS+=	p5-Apache-DBI>=0.96:../../databases/p5-Apache-DBI
+.  if defined(PKG_APACHE)
+.    include "../../www/ap2-perl/buildlink3.mk"
+.  endif
+.endif
+
+###
+### XML-RPC Interface
+###
+.if !empty(PKG_OPTIONS:Mbugzilla-xmlrpc)
+DEPENDS+=	p5-SOAP-Lite-[0-9]*:../../net/p5-SOAP-Lite
+.endif
+
+###
+### Inbound Email
+###
+.if !empty(PKG_OPTIONS:Mbugzilla-inboundemail)
+DEPENDS+=	p5-Email-MIME-Attachment-Stripper-[0-9]*:../../mail/p5-Email-MIME-Attachment-Stripper
+DEPENDS+=	p5-Email-Reply-[0-9]*:../../mail/p5-Email-Reply
+.endif
+
+###
+### If you want to convert BMP image attachments to PNG to conserve
+### disk space.
+###
+.if !empty(PKG_OPTIONS:Mbugzilla-imagemagick)
+DEPENDS+=	p5-PerlMagick-[0-9]*:../../graphics/p5-PerlMagick
+.endif
+
+###
+### Use OpenLDAP for authentication
+###
+.if !empty(PKG_OPTIONS:Mldap)
+DEPENDS+=	p5-perl-ldap-[0-9]*:../../databases/p5-perl-ldap
+.endif
+
+###
+### Generation of graphical reports
+###
+.if !empty(PKG_OPTIONS:Mbugzilla-graphicalreports)
+DEPENDS+=	gd>=1.20:../../graphics/gd
+DEPENDS+=	p5-Chart>=1.0:../../graphics/p5-Chart
+DEPENDS+=	p5-GDTextUtil-[0-9]*:../../graphics/p5-GDTextUtil
+DEPENDS+=	p5-GDGraph-[0-9]*:../../graphics/p5-GDGraph
+DEPENDS+=	p5-Template-GD-[0-9]*:../../graphics/p5-Template-GD
+.endif
+
+###
+### Patchviewer support
+###
+.if !empty(PKG_OPTIONS:Mbugzilla-patchviewer)
+DEPENDS+=	p5-PatchReader>=0.9.4:../../devel/p5-PatchReader
+DEPENDS+=	patchutils-[0-9]*:../../devel/patchutils
+.endif
+
+###
+### Add support for bulk import/export of bugs in XML format
+###
+.if !empty(PKG_OPTIONS:Mbugzilla-movebugs)
+DEPENDS+=	p5-XML-Twig-[0-9]*:../../textproc/p5-XML-Twig
+DEPENDS+=	p5-MIME-tools>=5.406:../../mail/p5-MIME-tools
+.endif
diff --git a/harmony/patches/patch-Makefile.PL b/harmony/patches/patch-Makefile.PL
new file mode 100644
index 0000000000..0553451237
--- /dev/null
+++ b/harmony/patches/patch-Makefile.PL
@@ -0,0 +1,62 @@
+$NetBSD$
+
+We dont have Linux::Pid currently.
+
+--- Makefile.PL.orig	2018-03-05 00:05:54.000000000 +0000
++++ Makefile.PL
+@@ -202,10 +202,6 @@ my %optional_features = (
+         },
+         description => 'Move Bugs Between Installations'
+     },
+-    oracle => {
+-        description => 'Oracle database support',
+-        prereqs => { runtime => { requires => { 'DBD::Oracle' => '1.19' } } }
+-    },
+     s3 => {
+         description => 'Amazon S3 Attachment Storage',
+         prereqs => {
+@@ -239,7 +235,7 @@ my %optional_features = (
+         description => 'JSON-RPC Interface',
+         prereqs     => {
+             runtime =>
+-                { requires => { 'JSON::RPC' => '== 1.01', 'Test::Taint' => '1.06' } }
++                { requires => { 'JSON::RPC' => '1.01', 'Test::Taint' => '1.06' } }
+         }
+     },
+     graphical_reports => {
+@@ -298,19 +294,11 @@ my %optional_features = (
+             runtime => {
+                 requires => {
+                     'Test::Taint' => '1.06',
+-                    'JSON::RPC' => '==1.01',
++                    'JSON::RPC' => '1.01',
+                 }
+             }
+         }
+     },
+-    linux_pid => {
+-        description => 'Linux::PID for MozReview',
+-        prereqs => {
+-            runtime => {
+-                requires => { 'Linux::Pid' => 0 },
+-            },
+-        },
+-    },
+     jobqueue => {
+         description => 'Mail Queueing',
+         prereqs     => {
+@@ -391,14 +379,12 @@ my @bmo_features = grep {
+     !m{
+         ^
+         (?: pg
+-          | oracle
+           | mod_perl
+           | psgi
+           | sqlite
+           | auth_ldap
+           | auth_radius
+           | smtp_auth
+-          | linux_pid
+           | updates)
+         $
+     }mxs;


Home | Main Index | Thread Index | Old Index