Index: head/devel/bugzilla/Makefile =================================================================== --- head/devel/bugzilla/Makefile (revision 161192) +++ head/devel/bugzilla/Makefile (revision 161193) @@ -1,130 +1,144 @@ # New ports collection makefile for: bugzilla # Date created: 28 September 2001 # Whom: Alexey Zelkin # # $FreeBSD$ # PORTNAME?= bugzilla -PORTVERSION?= 2.20.1 +PORTVERSION?= 2.22 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= webtools webtools/archived MAINTAINER?= skv@FreeBSD.org COMMENT?= Bug-tracking system developed by Mozilla Project -OPTIONS= CHARTING_MODULES "Bug charting support" on \ +OPTIONS= MYSQL "MySQL database support" on \ + PGSQL "PostgreSQL database support" off \ + CHARTING_MODULES "Bug charting support" on \ GRAPHVIZ "Use GraphViz" off \ EMAIL_GATEWAY "Use email gateway" off \ EXPORT_IMPORT "Import/export bugs (via XML)" off \ CONTRIB "Install user-contributed scripts" off \ LDAP "Enable LDAP support" off -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql \ +RUN_DEPENDS+= \ ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm \ ${SITE_PERL}/AppConfig.pm:${PORTSDIR}/devel/p5-AppConfig \ ${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \ ${SITE_PERL}/${PERL_ARCH}/Template.pm:${PORTSDIR}/www/p5-Template-Toolkit \ ${SITE_PERL}/Text/Wrap.pm:${PORTSDIR}/textproc/p5-Text-Tabs+Wrap \ ${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper \ ${SITE_PERL}/${PERL_ARCH}/File/Spec.pm:${PORTSDIR}/devel/p5-PathTools \ ${SITE_PERL}/PatchReader.pm:${PORTSDIR}/devel/p5-PatchReader CONFLICTS?= ja-bugzilla-2.* USE_PERL5= yes -USE_REINPLACE= yes BINMODE= 700 PKGMESSAGE= ${WRKDIR}/pkg-message .ifndef BUGZILLADIR .ifdef APACHE_DATADIR BUGZILLADIR= ${APACHE_DATADIR}/data/bugzilla .else BUGZILLADIR= ${PREFIX}/www/data/bugzilla .endif .endif PLIST_SUB+= BUGZILLADIR=${BUGZILLADIR:S!^${PREFIX}/!!} CONTRIB_DOCS= README README.Mailif bugmail_help.html bugzilla.procmailrc DATA_DIRS_LIST= images js skins/standard skins/standard/global \ skins/standard/index .include +.ifdef WITH_MYSQL +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql +USE_MYSQL= yes +DEFAULT_MYSQL_VER= 41 +BROKEN_WITH_MYSQL= 323 +.endif + +.ifdef WITH_PGSQL +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg +USE_PGSQL= yes +.endif + .ifdef WITH_CHARTING_MODULES RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD \ ${SITE_PERL}/Chart/Base.pm:${PORTSDIR}/graphics/p5-chart \ ${SITE_PERL}/GD/Graph.pm:${PORTSDIR}/graphics/p5-GD-Graph \ ${SITE_PERL}/GD/Text/Align.pm:${PORTSDIR}/graphics/p5-GD-TextUtil .endif .ifdef WITH_GRAPHVIZ RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz .endif .ifdef WITH_EMAIL_GATEWAY RUN_DEPENDS+= ${SITE_PERL}/MIME/Parser.pm:${PORTSDIR}/mail/p5-MIME-Tools .endif .ifdef WITH_EXPORT_IMPORT -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ + ${SITE_PERL}/XML/Twig.pm:${PORTSDIR}/textproc/p5-XML-Twig .endif .ifdef WITH_CONTRIB PLIST_SUB+= CONTRIB="" .else PLIST_SUB+= CONTRIB="@comment " .endif .ifdef WITH_LDAP RUN_DEPENDS+= ${SITE_PERL}/Net/LDAP.pm:${PORTSDIR}/net/p5-perl-ldap .endif post-patch: @${PERL} -pi -e "s!(?<=webservergroup_default = ')apache!www!" \ ${WRKSRC}/checksetup.pl @${FIND} ${WRKSRC} \( -name "CVS" -or -name ".cvsignore" -or -name "*.orig" \ -or -name "README.docs" \) | ${XARGS} ${RM} -rf @${FIND} ${WRKSRC} -name "*.p[ml]" | \ ${XARGS} ${REINPLACE_CMD} -i '' -e 's!/usr/lib/sendmail!/usr/sbin/sendmail!' do-build: @${SED} -e "s:%%BUGZILLADIR%%:${BUGZILLADIR}:g; s:%%DOCSDIR%%:${DOCSDIR}:g" \ ${MASTERDIR}/pkg-message >${PKGMESSAGE} do-install: ${MKDIR} ${BUGZILLADIR} ${FIND} ${WRKSRC} \! -type d -maxdepth 1 \! -name "UPGRADING*" -exec \ ${INSTALL_SCRIPT} {} ${BUGZILLADIR} \; @${MKDIR} ${DATA_DIRS_LIST:S!^!${BUGZILLADIR}/!} .for D in ${DATA_DIRS_LIST} ${INSTALL_DATA} ${WRKSRC}/${D}/*.* ${BUGZILLADIR}/${D} .endfor ${TAR} -C ${WRKSRC} -cf - Bugzilla template | ${TAR} --unlink -C ${BUGZILLADIR} -xf - .ifndef NOPORTDOCS .for D in html images/callouts images pdf txt xml "" ${MKDIR} ${DOCSDIR}/${D} ${INSTALL_DATA} ${WRKSRC}/docs/${D}/*.* ${DOCSDIR}/${D}/ .endfor .endif .ifdef WITH_CONTRIB ${MKDIR} ${BUGZILLADIR}/contrib @cd ${WRKSRC}/contrib && \ ${FIND} . -type d -exec ${MKDIR} "${BUGZILLADIR}/contrib/{}" \; && \ ${FIND} . -type f -exec ${INSTALL_DATA} "{}" "${BUGZILLADIR}/contrib/{}" \; .ifndef NOPORTDOCS ${MKDIR} ${DOCSDIR}/contrib ${INSTALL_DATA} ${CONTRIB_DOCS:S!^!${WRKSRC}/contrib/!} ${DOCSDIR}/contrib .endif .endif .if !defined(BATCH) @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .endif .include Property changes on: head/devel/bugzilla/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.43 \ No newline at end of property +1.44 \ No newline at end of property Index: head/devel/bugzilla/distinfo =================================================================== --- head/devel/bugzilla/distinfo (revision 161192) +++ head/devel/bugzilla/distinfo (revision 161193) @@ -1,3 +1,3 @@ -MD5 (bugzilla-2.20.1.tar.gz) = b9c74195ce0f446be40b3e81104b934d -SHA256 (bugzilla-2.20.1.tar.gz) = c87d8c93d5dbd9d2dfd49552e47fd23d8748070929b26910772d712ad6716bbe -SIZE (bugzilla-2.20.1.tar.gz) = 1918866 +MD5 (bugzilla-2.22.tar.gz) = bbf2f1ec5607978d39855df104231973 +SHA256 (bugzilla-2.22.tar.gz) = 9d7e2144cd8499430c802ef5267dd2237aaec401546e5b9476db4f9ca19ebd4d +SIZE (bugzilla-2.22.tar.gz) = 1956898 Property changes on: head/devel/bugzilla/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/devel/bugzilla/pkg-plist =================================================================== --- head/devel/bugzilla/pkg-plist (revision 161192) +++ head/devel/bugzilla/pkg-plist (revision 161193) @@ -1,570 +1,624 @@ %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/README %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/README.Mailif %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/bugmail_help.html %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/bugzilla.procmailrc %%PORTDOCS%%%%DOCSDIR%%/html/Bugzilla-Guide.html %%PORTDOCS%%%%DOCSDIR%%/html/about.html %%PORTDOCS%%%%DOCSDIR%%/html/administration.html %%PORTDOCS%%%%DOCSDIR%%/html/bug_page.html %%PORTDOCS%%%%DOCSDIR%%/html/bugreports.html +%%PORTDOCS%%%%DOCSDIR%%/html/classifications.html %%PORTDOCS%%%%DOCSDIR%%/html/cmdline-bugmail.html %%PORTDOCS%%%%DOCSDIR%%/html/cmdline.html %%PORTDOCS%%%%DOCSDIR%%/html/components.html %%PORTDOCS%%%%DOCSDIR%%/html/configuration.html %%PORTDOCS%%%%DOCSDIR%%/html/conventions.html %%PORTDOCS%%%%DOCSDIR%%/html/copyright.html %%PORTDOCS%%%%DOCSDIR%%/html/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/cust-change-permissions.html %%PORTDOCS%%%%DOCSDIR%%/html/cust-hooks.html %%PORTDOCS%%%%DOCSDIR%%/html/cust-templates.html %%PORTDOCS%%%%DOCSDIR%%/html/customization.html %%PORTDOCS%%%%DOCSDIR%%/html/dbdoc.html %%PORTDOCS%%%%DOCSDIR%%/html/dbmodify.html %%PORTDOCS%%%%DOCSDIR%%/html/disclaimer.html %%PORTDOCS%%%%DOCSDIR%%/html/extraconfig.html %%PORTDOCS%%%%DOCSDIR%%/html/faq.html %%PORTDOCS%%%%DOCSDIR%%/html/flags-overview.html %%PORTDOCS%%%%DOCSDIR%%/html/flags.html %%PORTDOCS%%%%DOCSDIR%%/html/general-advice.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-0.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-1.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-10.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-2.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-3.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-4.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-5.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-6.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-7.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-8.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-9.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-howto.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl.html %%PORTDOCS%%%%DOCSDIR%%/html/glossary.html %%PORTDOCS%%%%DOCSDIR%%/html/groups.html %%PORTDOCS%%%%DOCSDIR%%/html/hintsandtips.html %%PORTDOCS%%%%DOCSDIR%%/html/index.html %%PORTDOCS%%%%DOCSDIR%%/html/install-perlmodules-manual.html %%PORTDOCS%%%%DOCSDIR%%/html/installation.html %%PORTDOCS%%%%DOCSDIR%%/html/installing-bugzilla.html %%PORTDOCS%%%%DOCSDIR%%/html/integration.html %%PORTDOCS%%%%DOCSDIR%%/html/lifecycle.html %%PORTDOCS%%%%DOCSDIR%%/html/list.html %%PORTDOCS%%%%DOCSDIR%%/html/milestones.html %%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-download.html %%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-instructions.html %%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-optional.html %%PORTDOCS%%%%DOCSDIR%%/html/myaccount.html %%PORTDOCS%%%%DOCSDIR%%/html/newversions.html %%PORTDOCS%%%%DOCSDIR%%/html/nonroot.html %%PORTDOCS%%%%DOCSDIR%%/html/os-specific.html %%PORTDOCS%%%%DOCSDIR%%/html/parameters.html %%PORTDOCS%%%%DOCSDIR%%/html/paranoid-security.html %%PORTDOCS%%%%DOCSDIR%%/html/patches.html %%PORTDOCS%%%%DOCSDIR%%/html/patchviewer.html %%PORTDOCS%%%%DOCSDIR%%/html/products.html %%PORTDOCS%%%%DOCSDIR%%/html/query.html %%PORTDOCS%%%%DOCSDIR%%/html/quips.html %%PORTDOCS%%%%DOCSDIR%%/html/reporting.html %%PORTDOCS%%%%DOCSDIR%%/html/security-bugzilla.html %%PORTDOCS%%%%DOCSDIR%%/html/security-mysql.html %%PORTDOCS%%%%DOCSDIR%%/html/security-os.html %%PORTDOCS%%%%DOCSDIR%%/html/security-webserver.html %%PORTDOCS%%%%DOCSDIR%%/html/security.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-bundlebugzilla.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-dbdsponge.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-index.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-passwd-encryption.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-perlmodule.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-relogin-everyone.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-testserver.html %%PORTDOCS%%%%DOCSDIR%%/html/trouble-filetemp.html %%PORTDOCS%%%%DOCSDIR%%/html/troubleshooting.html %%PORTDOCS%%%%DOCSDIR%%/html/upgrading.html %%PORTDOCS%%%%DOCSDIR%%/html/useradmin.html %%PORTDOCS%%%%DOCSDIR%%/html/userpreferences.html %%PORTDOCS%%%%DOCSDIR%%/html/using-intro.html %%PORTDOCS%%%%DOCSDIR%%/html/using.html %%PORTDOCS%%%%DOCSDIR%%/html/versions.html %%PORTDOCS%%%%DOCSDIR%%/html/voting.html %%PORTDOCS%%%%DOCSDIR%%/html/whining.html -%%PORTDOCS%%%%DOCSDIR%%/html/x3190.html +%%PORTDOCS%%%%DOCSDIR%%/html/x3269.html %%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.png %%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.xml %%PORTDOCS%%%%DOCSDIR%%/images/callouts/1.gif %%PORTDOCS%%%%DOCSDIR%%/images/callouts/2.gif %%PORTDOCS%%%%DOCSDIR%%/images/callouts/3.gif %%PORTDOCS%%%%DOCSDIR%%/images/caution.gif %%PORTDOCS%%%%DOCSDIR%%/images/note.gif %%PORTDOCS%%%%DOCSDIR%%/images/tip.gif %%PORTDOCS%%%%DOCSDIR%%/images/warning.gif %%PORTDOCS%%%%DOCSDIR%%/makedocs.pl %%PORTDOCS%%%%DOCSDIR%%/pdf/Bugzilla-Guide.pdf %%PORTDOCS%%%%DOCSDIR%%/rel_notes.txt %%PORTDOCS%%%%DOCSDIR%%/txt/Bugzilla-Guide.txt %%PORTDOCS%%%%DOCSDIR%%/xml/Bugzilla-Guide.xml %%PORTDOCS%%%%DOCSDIR%%/xml/about.xml %%PORTDOCS%%%%DOCSDIR%%/xml/administration.xml %%PORTDOCS%%%%DOCSDIR%%/xml/conventions.xml %%PORTDOCS%%%%DOCSDIR%%/xml/customization.xml %%PORTDOCS%%%%DOCSDIR%%/xml/dbschema.mysql %%PORTDOCS%%%%DOCSDIR%%/xml/faq.xml %%PORTDOCS%%%%DOCSDIR%%/xml/filetemp.patch %%PORTDOCS%%%%DOCSDIR%%/xml/gfdl.xml %%PORTDOCS%%%%DOCSDIR%%/xml/glossary.xml %%PORTDOCS%%%%DOCSDIR%%/xml/index.xml %%PORTDOCS%%%%DOCSDIR%%/xml/installation.xml %%PORTDOCS%%%%DOCSDIR%%/xml/integration.xml %%PORTDOCS%%%%DOCSDIR%%/xml/introduction.xml %%PORTDOCS%%%%DOCSDIR%%/xml/modules.xml %%PORTDOCS%%%%DOCSDIR%%/xml/patches.xml %%PORTDOCS%%%%DOCSDIR%%/xml/requiredsoftware.xml %%PORTDOCS%%%%DOCSDIR%%/xml/security.xml %%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml %%PORTDOCS%%%%DOCSDIR%%/xml/using.xml %%BUGZILLADIR%%/Bugzilla/Attachment.pm %%BUGZILLADIR%%/Bugzilla/Auth.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/Env.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI/Cookie.pm %%BUGZILLADIR%%/Bugzilla/Auth/README %%BUGZILLADIR%%/Bugzilla/Auth/Verify/DB.pm %%BUGZILLADIR%%/Bugzilla/Auth/Verify/LDAP.pm %%BUGZILLADIR%%/Bugzilla/Bug.pm %%BUGZILLADIR%%/Bugzilla/BugMail.pm %%BUGZILLADIR%%/Bugzilla/CGI.pm %%BUGZILLADIR%%/Bugzilla/Chart.pm +%%BUGZILLADIR%%/Bugzilla/Classification.pm +%%BUGZILLADIR%%/Bugzilla/Component.pm %%BUGZILLADIR%%/Bugzilla/Config.pm +%%BUGZILLADIR%%/Bugzilla/Config/Admin.pm +%%BUGZILLADIR%%/Bugzilla/Config/Attachment.pm +%%BUGZILLADIR%%/Bugzilla/Config/Auth.pm +%%BUGZILLADIR%%/Bugzilla/Config/BugChange.pm +%%BUGZILLADIR%%/Bugzilla/Config/BugFields.pm +%%BUGZILLADIR%%/Bugzilla/Config/BugMove.pm +%%BUGZILLADIR%%/Bugzilla/Config/Common.pm +%%BUGZILLADIR%%/Bugzilla/Config/Core.pm +%%BUGZILLADIR%%/Bugzilla/Config/DependencyGraph.pm +%%BUGZILLADIR%%/Bugzilla/Config/GroupSecurity.pm +%%BUGZILLADIR%%/Bugzilla/Config/L10n.pm +%%BUGZILLADIR%%/Bugzilla/Config/LDAP.pm +%%BUGZILLADIR%%/Bugzilla/Config/MTA.pm +%%BUGZILLADIR%%/Bugzilla/Config/PatchViewer.pm +%%BUGZILLADIR%%/Bugzilla/Config/Query.pm +%%BUGZILLADIR%%/Bugzilla/Config/ShadowDB.pm +%%BUGZILLADIR%%/Bugzilla/Config/UserMatch.pm %%BUGZILLADIR%%/Bugzilla/Constants.pm %%BUGZILLADIR%%/Bugzilla/DB.pm %%BUGZILLADIR%%/Bugzilla/DB/Mysql.pm %%BUGZILLADIR%%/Bugzilla/DB/Pg.pm %%BUGZILLADIR%%/Bugzilla/DB/Schema.pm %%BUGZILLADIR%%/Bugzilla/DB/Schema/Mysql.pm %%BUGZILLADIR%%/Bugzilla/DB/Schema/Pg.pm %%BUGZILLADIR%%/Bugzilla/Error.pm +%%BUGZILLADIR%%/Bugzilla/Field.pm %%BUGZILLADIR%%/Bugzilla/Flag.pm %%BUGZILLADIR%%/Bugzilla/FlagType.pm %%BUGZILLADIR%%/Bugzilla/Group.pm +%%BUGZILLADIR%%/Bugzilla/Milestone.pm +%%BUGZILLADIR%%/Bugzilla/Product.pm %%BUGZILLADIR%%/Bugzilla/Search.pm +%%BUGZILLADIR%%/Bugzilla/Search/Quicksearch.pm %%BUGZILLADIR%%/Bugzilla/Series.pm %%BUGZILLADIR%%/Bugzilla/Template.pm -%%BUGZILLADIR%%/Bugzilla/Token.pm -%%BUGZILLADIR%%/Bugzilla/User.pm -%%BUGZILLADIR%%/Bugzilla/Util.pm %%BUGZILLADIR%%/Bugzilla/Template/Plugin/Bugzilla.pm %%BUGZILLADIR%%/Bugzilla/Template/Plugin/Hook.pm %%BUGZILLADIR%%/Bugzilla/Template/Plugin/User.pm +%%BUGZILLADIR%%/Bugzilla/Token.pm +%%BUGZILLADIR%%/Bugzilla/User.pm %%BUGZILLADIR%%/Bugzilla/User/Setting.pm +%%BUGZILLADIR%%/Bugzilla/Util.pm +%%BUGZILLADIR%%/Bugzilla/Version.pm %%BUGZILLADIR%%/Bugzilla.pm -%%BUGZILLADIR%%/CGI.pl %%BUGZILLADIR%%/QUICKSTART %%BUGZILLADIR%%/README -%%BUGZILLADIR%%/ant.jpg %%BUGZILLADIR%%/attachment.cgi %%BUGZILLADIR%%/buglist.cgi %%BUGZILLADIR%%/bugzilla.dtd %%BUGZILLADIR%%/chart.cgi %%BUGZILLADIR%%/checksetup.pl %%BUGZILLADIR%%/colchange.cgi %%BUGZILLADIR%%/collectstats.pl %%BUGZILLADIR%%/config.cgi %%BUGZILLADIR%%/js/duplicates.js %%BUGZILLADIR%%/js/productform.js +%%BUGZILLADIR%%/js/TUI.js %%BUGZILLADIR%%/skins/standard/admin.css %%BUGZILLADIR%%/skins/standard/buglist.css %%BUGZILLADIR%%/skins/standard/duplicates.css %%BUGZILLADIR%%/skins/standard/editusers.css %%BUGZILLADIR%%/skins/standard/global.css %%BUGZILLADIR%%/skins/standard/index.css %%BUGZILLADIR%%/skins/standard/panel.css +%%BUGZILLADIR%%/skins/standard/params.css %%BUGZILLADIR%%/skins/standard/show_multiple.css %%BUGZILLADIR%%/skins/standard/summarize-time.css %%BUGZILLADIR%%/skins/standard/voting.css %%BUGZILLADIR%%/skins/standard/global/body-back.gif %%BUGZILLADIR%%/skins/standard/global/header.png -%%BUGZILLADIR%%/skins/standard/index/front.jpg %%BUGZILLADIR%%/skins/standard/index/front.png %%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm %%CONTRIB%%%%BUGZILLADIR%%/contrib/README %%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif %%CONTRIB%%%%BUGZILLADIR%%/contrib/bug_email.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugmail_help.html %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/README %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugdata.txt %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit.xml %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla.procmailrc %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla_email_append.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla_ldapsync.rb %%CONTRIB%%%%BUGZILLADIR%%/contrib/bzdbcopy.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugcount %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugids %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/buglist %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugs %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugslink %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/makequery %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/query.conf %%CONTRIB%%%%BUGZILLADIR%%/contrib/cvs-update.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnats2bz.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/README %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/gnatsparse.py %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/magic.py %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/specialuu.py %%CONTRIB%%%%BUGZILLADIR%%/contrib/jb2bz.py +%%CONTRIB%%%%BUGZILLADIR%%/contrib/merge-users.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/mysqld-watcher.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/sendbugmail.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/sendunsentbugmail.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/syncLDAP.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/yp_nomail.sh %%BUGZILLADIR%%/createaccount.cgi -%%BUGZILLADIR%%/defparams.pl %%BUGZILLADIR%%/describecomponents.cgi %%BUGZILLADIR%%/describekeywords.cgi -%%BUGZILLADIR%%/doeditparams.cgi %%BUGZILLADIR%%/duplicates.cgi %%BUGZILLADIR%%/duplicates.xul %%BUGZILLADIR%%/editclassifications.cgi %%BUGZILLADIR%%/editcomponents.cgi %%BUGZILLADIR%%/editflagtypes.cgi %%BUGZILLADIR%%/editgroups.cgi %%BUGZILLADIR%%/editkeywords.cgi %%BUGZILLADIR%%/editmilestones.cgi %%BUGZILLADIR%%/editparams.cgi %%BUGZILLADIR%%/editproducts.cgi %%BUGZILLADIR%%/editsettings.cgi %%BUGZILLADIR%%/editusers.cgi %%BUGZILLADIR%%/editvalues.cgi %%BUGZILLADIR%%/editversions.cgi %%BUGZILLADIR%%/editwhines.cgi %%BUGZILLADIR%%/enter_bug.cgi %%BUGZILLADIR%%/globals.pl %%BUGZILLADIR%%/images/padlock.png %%BUGZILLADIR%%/importxml.pl %%BUGZILLADIR%%/index.cgi -%%BUGZILLADIR%%/localconfig.js %%BUGZILLADIR%%/long_list.cgi -%%BUGZILLADIR%%/move.pl %%BUGZILLADIR%%/page.cgi %%BUGZILLADIR%%/post_bug.cgi %%BUGZILLADIR%%/process_bug.cgi %%BUGZILLADIR%%/productmenu.js %%BUGZILLADIR%%/query.cgi -%%BUGZILLADIR%%/quicksearch.html -%%BUGZILLADIR%%/quicksearch.js -%%BUGZILLADIR%%/quicksearchhack.html %%BUGZILLADIR%%/quips.cgi %%BUGZILLADIR%%/relogin.cgi %%BUGZILLADIR%%/report.cgi %%BUGZILLADIR%%/reports.cgi %%BUGZILLADIR%%/request.cgi %%BUGZILLADIR%%/robots.txt %%BUGZILLADIR%%/runtests.pl %%BUGZILLADIR%%/sanitycheck.cgi %%BUGZILLADIR%%/show_activity.cgi %%BUGZILLADIR%%/show_bug.cgi %%BUGZILLADIR%%/showattachment.cgi %%BUGZILLADIR%%/showdependencygraph.cgi %%BUGZILLADIR%%/showdependencytree.cgi %%BUGZILLADIR%%/sidebar.cgi %%BUGZILLADIR%%/summarize_time.cgi %%BUGZILLADIR%%/template/en/default/account/auth/ldap-error.html.tmpl %%BUGZILLADIR%%/template/en/default/account/auth/login.html.tmpl %%BUGZILLADIR%%/template/en/default/account/auth/login-small.html.tmpl %%BUGZILLADIR%%/template/en/default/account/cancel-token.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/create.html.tmpl %%BUGZILLADIR%%/template/en/default/account/created.html.tmpl %%BUGZILLADIR%%/template/en/default/account/email/change-new.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/email/change-old.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/email/confirm.html.tmpl %%BUGZILLADIR%%/template/en/default/account/exists.html.tmpl %%BUGZILLADIR%%/template/en/default/account/password/forgotten-password.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/password/set-forgotten-password.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/account.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/email.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/permissions.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/prefs.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/saved-searches.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/settings.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/sudo.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/table.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/add.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/del.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/new.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/reclassify.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/select.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/update.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/select-product.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/select-field.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/flag-type/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/flag-type/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/flag-type/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/change.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/remove.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/rebuild-cache.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/select-product.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/updated.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/admin.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/attachment.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/auth.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/bugchange.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/bugfields.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/bugmove.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/common.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/core.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/dependencygraph.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/editparams.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/groupsecurity.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/index.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/l10n.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/ldap.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/mta.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/patchviewer.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/query.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/shadowdb.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/usermatch.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/create.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/deleted.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/edit-common.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/list-classifications.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/edit.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/updated.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/settings/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/settings/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/listselectvars.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/search.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/userdata.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/select-product.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/choose.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/content-types.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/create.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/created.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/diff-file.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/diff-footer.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/diff-header.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/list.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/show-multiple.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/activity/show.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/activity/table.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/choose.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/comments.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/comment-guided.txt.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/comment.txt.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/create-guided.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/create.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/created.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/make-template.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/user-message.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/dependency-graph.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/dependency-tree.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/knob.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/navigate.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/bugmail.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/confirm-duplicate.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/header.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/midair.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/next.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/results.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/verify-new-product.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/show-multiple.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/show.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/show.xml.tmpl %%BUGZILLADIR%%/template/en/default/bug/summarize-time.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/time.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/votes/delete-all.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/votes/list-for-bug.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/votes/list-for-user.html.tmpl %%BUGZILLADIR%%/template/en/default/config.js.tmpl %%BUGZILLADIR%%/template/en/default/config.rdf.tmpl +%%BUGZILLADIR%%/template/en/default/email/sudo.txt.tmpl %%BUGZILLADIR%%/template/en/default/filterexceptions.pl %%BUGZILLADIR%%/template/en/default/flag/list.html.tmpl %%BUGZILLADIR%%/template/en/default/global/banner.html.tmpl %%BUGZILLADIR%%/template/en/default/global/choose-classification.html.tmpl %%BUGZILLADIR%%/template/en/default/global/choose-product.html.tmpl %%BUGZILLADIR%%/template/en/default/global/code-error.html.tmpl %%BUGZILLADIR%%/template/en/default/global/confirm-user-match.html.tmpl %%BUGZILLADIR%%/template/en/default/global/field-descs.none.tmpl %%BUGZILLADIR%%/template/en/default/global/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/global/header.html.tmpl %%BUGZILLADIR%%/template/en/default/global/help-header.html.tmpl %%BUGZILLADIR%%/template/en/default/global/help.html.tmpl %%BUGZILLADIR%%/template/en/default/global/hidden-fields.html.tmpl %%BUGZILLADIR%%/template/en/default/global/initialize.none.tmpl %%BUGZILLADIR%%/template/en/default/global/message.html.tmpl %%BUGZILLADIR%%/template/en/default/global/messages.html.tmpl +%%BUGZILLADIR%%/template/en/default/global/message.txt.tmpl +%%BUGZILLADIR%%/template/en/default/global/per-bug-queries.html.tmpl %%BUGZILLADIR%%/template/en/default/global/select-menu.html.tmpl %%BUGZILLADIR%%/template/en/default/global/setting-descs.none.tmpl %%BUGZILLADIR%%/template/en/default/global/site-navigation.html.tmpl +%%BUGZILLADIR%%/template/en/default/global/tabs.html.tmpl %%BUGZILLADIR%%/template/en/default/global/useful-links.html.tmpl %%BUGZILLADIR%%/template/en/default/global/user-error.html.tmpl %%BUGZILLADIR%%/template/en/default/global/userselect.html.tmpl %%BUGZILLADIR%%/template/en/default/global/variables.none.tmpl %%BUGZILLADIR%%/template/en/default/index.html.tmpl %%BUGZILLADIR%%/template/en/default/list/change-columns.html.tmpl %%BUGZILLADIR%%/template/en/default/list/edit-multiple.html.tmpl %%BUGZILLADIR%%/template/en/default/list/list-simple.html.tmpl %%BUGZILLADIR%%/template/en/default/list/list.atom.tmpl %%BUGZILLADIR%%/template/en/default/list/list.csv.tmpl %%BUGZILLADIR%%/template/en/default/list/list.html.tmpl %%BUGZILLADIR%%/template/en/default/list/list.ics.tmpl %%BUGZILLADIR%%/template/en/default/list/list.js.tmpl %%BUGZILLADIR%%/template/en/default/list/list.rdf.tmpl %%BUGZILLADIR%%/template/en/default/list/quips.html.tmpl %%BUGZILLADIR%%/template/en/default/list/server-push.html.tmpl %%BUGZILLADIR%%/template/en/default/list/table.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/bug-writing.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/fields.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/linked.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/linkify.html.tmpl +%%BUGZILLADIR%%/template/en/default/pages/quicksearch.html.tmpl +%%BUGZILLADIR%%/template/en/default/pages/quicksearchhack.html.tmpl +%%BUGZILLADIR%%/template/en/default/pages/sudo.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/voting.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/chart.csv.tmpl %%BUGZILLADIR%%/template/en/default/reports/chart.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/chart.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/components.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/create-chart.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates-simple.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates-table.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates.rdf.tmpl %%BUGZILLADIR%%/template/en/default/reports/edit-series.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/keywords.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/menu.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-bar.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-line.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-pie.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-simple.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-table.csv.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-table.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/report.csv.tmpl %%BUGZILLADIR%%/template/en/default/reports/report.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/series-common.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/series.html.tmpl %%BUGZILLADIR%%/template/en/default/request/email.txt.tmpl %%BUGZILLADIR%%/template/en/default/request/queue.html.tmpl %%BUGZILLADIR%%/template/en/default/search/boolean-charts.html.tmpl %%BUGZILLADIR%%/template/en/default/search/form.html.tmpl %%BUGZILLADIR%%/template/en/default/search/knob.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-advanced.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-create-series.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-help.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-report-graph.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-report-select.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-report-table.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-specific.html.tmpl %%BUGZILLADIR%%/template/en/default/search/tabs.html.tmpl %%BUGZILLADIR%%/template/en/default/sidebar.xul.tmpl %%BUGZILLADIR%%/template/en/default/whine/mail.html.tmpl %%BUGZILLADIR%%/template/en/default/whine/mail.txt.tmpl %%BUGZILLADIR%%/template/en/default/whine/multipart-mime.txt.tmpl %%BUGZILLADIR%%/template/en/default/whine/schedule.html.tmpl %%BUGZILLADIR%%/template/en/extension/filterexceptions.pl %%BUGZILLADIR%%/testagent.cgi %%BUGZILLADIR%%/testserver.pl %%BUGZILLADIR%%/token.cgi %%BUGZILLADIR%%/userprefs.cgi %%BUGZILLADIR%%/votes.cgi %%BUGZILLADIR%%/whine.pl %%BUGZILLADIR%%/whineatnews.pl %%BUGZILLADIR%%/xml.cgi @dirrm %%BUGZILLADIR%%/template/en/extension @dirrm %%BUGZILLADIR%%/template/en/default/whine @dirrm %%BUGZILLADIR%%/template/en/default/search @dirrm %%BUGZILLADIR%%/template/en/default/request @dirrm %%BUGZILLADIR%%/template/en/default/reports @dirrm %%BUGZILLADIR%%/template/en/default/pages @dirrm %%BUGZILLADIR%%/template/en/default/list @dirrm %%BUGZILLADIR%%/template/en/default/global @dirrm %%BUGZILLADIR%%/template/en/default/flag +@dirrm %%BUGZILLADIR%%/template/en/default/email @dirrm %%BUGZILLADIR%%/template/en/default/bug/votes @dirrm %%BUGZILLADIR%%/template/en/default/bug/process @dirrm %%BUGZILLADIR%%/template/en/default/bug/create @dirrm %%BUGZILLADIR%%/template/en/default/bug/activity @dirrm %%BUGZILLADIR%%/template/en/default/bug @dirrm %%BUGZILLADIR%%/template/en/default/attachment @dirrm %%BUGZILLADIR%%/template/en/default/admin/versions @dirrm %%BUGZILLADIR%%/template/en/default/admin/users @dirrm %%BUGZILLADIR%%/template/en/default/admin/settings @dirrm %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol @dirrm %%BUGZILLADIR%%/template/en/default/admin/products +@dirrm %%BUGZILLADIR%%/template/en/default/admin/params @dirrm %%BUGZILLADIR%%/template/en/default/admin/milestones @dirrm %%BUGZILLADIR%%/template/en/default/admin/keywords @dirrm %%BUGZILLADIR%%/template/en/default/admin/groups @dirrm %%BUGZILLADIR%%/template/en/default/admin/fieldvalues @dirrm %%BUGZILLADIR%%/template/en/default/admin/flag-type @dirrm %%BUGZILLADIR%%/template/en/default/admin/components @dirrm %%BUGZILLADIR%%/template/en/default/admin/classifications @dirrm %%BUGZILLADIR%%/template/en/default/admin @dirrm %%BUGZILLADIR%%/template/en/default/account/prefs @dirrm %%BUGZILLADIR%%/template/en/default/account/password @dirrm %%BUGZILLADIR%%/template/en/default/account/email @dirrm %%BUGZILLADIR%%/template/en/default/account/auth @dirrm %%BUGZILLADIR%%/template/en/default/account @dirrm %%BUGZILLADIR%%/template/en/default @dirrm %%BUGZILLADIR%%/template/en @dirrmtry %%BUGZILLADIR%%/template %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/gnatsparse %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib @dirrm %%BUGZILLADIR%%/Bugzilla/User @dirrm %%BUGZILLADIR%%/Bugzilla/Template/Plugin @dirrm %%BUGZILLADIR%%/Bugzilla/Template +@dirrm %%BUGZILLADIR%%/Bugzilla/Search @dirrm %%BUGZILLADIR%%/Bugzilla/DB/Schema @dirrm %%BUGZILLADIR%%/Bugzilla/DB +@dirrm %%BUGZILLADIR%%/Bugzilla/Config @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Verify @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login @dirrm %%BUGZILLADIR%%/Bugzilla/Auth @dirrmtry %%BUGZILLADIR%%/Bugzilla @dirrmtry %%BUGZILLADIR%%/data @dirrmtry %%BUGZILLADIR%%/graphs @dirrm %%BUGZILLADIR%%/images @dirrm %%BUGZILLADIR%%/js @dirrm %%BUGZILLADIR%%/skins/standard/index @dirrm %%BUGZILLADIR%%/skins/standard/global @dirrm %%BUGZILLADIR%%/skins/standard @dirrm %%BUGZILLADIR%%/skins @dirrmtry %%BUGZILLADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%/xml %%PORTDOCS%%@dirrm %%DOCSDIR%%/txt %%PORTDOCS%%@dirrm %%DOCSDIR%%/pdf %%PORTDOCS%%@dirrm %%DOCSDIR%%/images/callouts %%PORTDOCS%%@dirrm %%DOCSDIR%%/images %%PORTDOCS%%@dirrm %%DOCSDIR%%/html %%CONTRIB%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/contrib %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrmtry www/data Property changes on: head/devel/bugzilla/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.19 \ No newline at end of property +1.20 \ No newline at end of property Index: head/devel/bugzilla2/Makefile =================================================================== --- head/devel/bugzilla2/Makefile (revision 161192) +++ head/devel/bugzilla2/Makefile (revision 161193) @@ -1,130 +1,144 @@ # New ports collection makefile for: bugzilla # Date created: 28 September 2001 # Whom: Alexey Zelkin # # $FreeBSD$ # PORTNAME?= bugzilla -PORTVERSION?= 2.20.1 +PORTVERSION?= 2.22 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= webtools webtools/archived MAINTAINER?= skv@FreeBSD.org COMMENT?= Bug-tracking system developed by Mozilla Project -OPTIONS= CHARTING_MODULES "Bug charting support" on \ +OPTIONS= MYSQL "MySQL database support" on \ + PGSQL "PostgreSQL database support" off \ + CHARTING_MODULES "Bug charting support" on \ GRAPHVIZ "Use GraphViz" off \ EMAIL_GATEWAY "Use email gateway" off \ EXPORT_IMPORT "Import/export bugs (via XML)" off \ CONTRIB "Install user-contributed scripts" off \ LDAP "Enable LDAP support" off -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql \ +RUN_DEPENDS+= \ ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm \ ${SITE_PERL}/AppConfig.pm:${PORTSDIR}/devel/p5-AppConfig \ ${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \ ${SITE_PERL}/${PERL_ARCH}/Template.pm:${PORTSDIR}/www/p5-Template-Toolkit \ ${SITE_PERL}/Text/Wrap.pm:${PORTSDIR}/textproc/p5-Text-Tabs+Wrap \ ${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper \ ${SITE_PERL}/${PERL_ARCH}/File/Spec.pm:${PORTSDIR}/devel/p5-PathTools \ ${SITE_PERL}/PatchReader.pm:${PORTSDIR}/devel/p5-PatchReader CONFLICTS?= ja-bugzilla-2.* USE_PERL5= yes -USE_REINPLACE= yes BINMODE= 700 PKGMESSAGE= ${WRKDIR}/pkg-message .ifndef BUGZILLADIR .ifdef APACHE_DATADIR BUGZILLADIR= ${APACHE_DATADIR}/data/bugzilla .else BUGZILLADIR= ${PREFIX}/www/data/bugzilla .endif .endif PLIST_SUB+= BUGZILLADIR=${BUGZILLADIR:S!^${PREFIX}/!!} CONTRIB_DOCS= README README.Mailif bugmail_help.html bugzilla.procmailrc DATA_DIRS_LIST= images js skins/standard skins/standard/global \ skins/standard/index .include +.ifdef WITH_MYSQL +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql +USE_MYSQL= yes +DEFAULT_MYSQL_VER= 41 +BROKEN_WITH_MYSQL= 323 +.endif + +.ifdef WITH_PGSQL +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg +USE_PGSQL= yes +.endif + .ifdef WITH_CHARTING_MODULES RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD \ ${SITE_PERL}/Chart/Base.pm:${PORTSDIR}/graphics/p5-chart \ ${SITE_PERL}/GD/Graph.pm:${PORTSDIR}/graphics/p5-GD-Graph \ ${SITE_PERL}/GD/Text/Align.pm:${PORTSDIR}/graphics/p5-GD-TextUtil .endif .ifdef WITH_GRAPHVIZ RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz .endif .ifdef WITH_EMAIL_GATEWAY RUN_DEPENDS+= ${SITE_PERL}/MIME/Parser.pm:${PORTSDIR}/mail/p5-MIME-Tools .endif .ifdef WITH_EXPORT_IMPORT -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ + ${SITE_PERL}/XML/Twig.pm:${PORTSDIR}/textproc/p5-XML-Twig .endif .ifdef WITH_CONTRIB PLIST_SUB+= CONTRIB="" .else PLIST_SUB+= CONTRIB="@comment " .endif .ifdef WITH_LDAP RUN_DEPENDS+= ${SITE_PERL}/Net/LDAP.pm:${PORTSDIR}/net/p5-perl-ldap .endif post-patch: @${PERL} -pi -e "s!(?<=webservergroup_default = ')apache!www!" \ ${WRKSRC}/checksetup.pl @${FIND} ${WRKSRC} \( -name "CVS" -or -name ".cvsignore" -or -name "*.orig" \ -or -name "README.docs" \) | ${XARGS} ${RM} -rf @${FIND} ${WRKSRC} -name "*.p[ml]" | \ ${XARGS} ${REINPLACE_CMD} -i '' -e 's!/usr/lib/sendmail!/usr/sbin/sendmail!' do-build: @${SED} -e "s:%%BUGZILLADIR%%:${BUGZILLADIR}:g; s:%%DOCSDIR%%:${DOCSDIR}:g" \ ${MASTERDIR}/pkg-message >${PKGMESSAGE} do-install: ${MKDIR} ${BUGZILLADIR} ${FIND} ${WRKSRC} \! -type d -maxdepth 1 \! -name "UPGRADING*" -exec \ ${INSTALL_SCRIPT} {} ${BUGZILLADIR} \; @${MKDIR} ${DATA_DIRS_LIST:S!^!${BUGZILLADIR}/!} .for D in ${DATA_DIRS_LIST} ${INSTALL_DATA} ${WRKSRC}/${D}/*.* ${BUGZILLADIR}/${D} .endfor ${TAR} -C ${WRKSRC} -cf - Bugzilla template | ${TAR} --unlink -C ${BUGZILLADIR} -xf - .ifndef NOPORTDOCS .for D in html images/callouts images pdf txt xml "" ${MKDIR} ${DOCSDIR}/${D} ${INSTALL_DATA} ${WRKSRC}/docs/${D}/*.* ${DOCSDIR}/${D}/ .endfor .endif .ifdef WITH_CONTRIB ${MKDIR} ${BUGZILLADIR}/contrib @cd ${WRKSRC}/contrib && \ ${FIND} . -type d -exec ${MKDIR} "${BUGZILLADIR}/contrib/{}" \; && \ ${FIND} . -type f -exec ${INSTALL_DATA} "{}" "${BUGZILLADIR}/contrib/{}" \; .ifndef NOPORTDOCS ${MKDIR} ${DOCSDIR}/contrib ${INSTALL_DATA} ${CONTRIB_DOCS:S!^!${WRKSRC}/contrib/!} ${DOCSDIR}/contrib .endif .endif .if !defined(BATCH) @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .endif .include Property changes on: head/devel/bugzilla2/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.43 \ No newline at end of property +1.44 \ No newline at end of property Index: head/devel/bugzilla2/distinfo =================================================================== --- head/devel/bugzilla2/distinfo (revision 161192) +++ head/devel/bugzilla2/distinfo (revision 161193) @@ -1,3 +1,3 @@ -MD5 (bugzilla-2.20.1.tar.gz) = b9c74195ce0f446be40b3e81104b934d -SHA256 (bugzilla-2.20.1.tar.gz) = c87d8c93d5dbd9d2dfd49552e47fd23d8748070929b26910772d712ad6716bbe -SIZE (bugzilla-2.20.1.tar.gz) = 1918866 +MD5 (bugzilla-2.22.tar.gz) = bbf2f1ec5607978d39855df104231973 +SHA256 (bugzilla-2.22.tar.gz) = 9d7e2144cd8499430c802ef5267dd2237aaec401546e5b9476db4f9ca19ebd4d +SIZE (bugzilla-2.22.tar.gz) = 1956898 Property changes on: head/devel/bugzilla2/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/devel/bugzilla2/pkg-plist =================================================================== --- head/devel/bugzilla2/pkg-plist (revision 161192) +++ head/devel/bugzilla2/pkg-plist (revision 161193) @@ -1,570 +1,624 @@ %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/README %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/README.Mailif %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/bugmail_help.html %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/bugzilla.procmailrc %%PORTDOCS%%%%DOCSDIR%%/html/Bugzilla-Guide.html %%PORTDOCS%%%%DOCSDIR%%/html/about.html %%PORTDOCS%%%%DOCSDIR%%/html/administration.html %%PORTDOCS%%%%DOCSDIR%%/html/bug_page.html %%PORTDOCS%%%%DOCSDIR%%/html/bugreports.html +%%PORTDOCS%%%%DOCSDIR%%/html/classifications.html %%PORTDOCS%%%%DOCSDIR%%/html/cmdline-bugmail.html %%PORTDOCS%%%%DOCSDIR%%/html/cmdline.html %%PORTDOCS%%%%DOCSDIR%%/html/components.html %%PORTDOCS%%%%DOCSDIR%%/html/configuration.html %%PORTDOCS%%%%DOCSDIR%%/html/conventions.html %%PORTDOCS%%%%DOCSDIR%%/html/copyright.html %%PORTDOCS%%%%DOCSDIR%%/html/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/cust-change-permissions.html %%PORTDOCS%%%%DOCSDIR%%/html/cust-hooks.html %%PORTDOCS%%%%DOCSDIR%%/html/cust-templates.html %%PORTDOCS%%%%DOCSDIR%%/html/customization.html %%PORTDOCS%%%%DOCSDIR%%/html/dbdoc.html %%PORTDOCS%%%%DOCSDIR%%/html/dbmodify.html %%PORTDOCS%%%%DOCSDIR%%/html/disclaimer.html %%PORTDOCS%%%%DOCSDIR%%/html/extraconfig.html %%PORTDOCS%%%%DOCSDIR%%/html/faq.html %%PORTDOCS%%%%DOCSDIR%%/html/flags-overview.html %%PORTDOCS%%%%DOCSDIR%%/html/flags.html %%PORTDOCS%%%%DOCSDIR%%/html/general-advice.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-0.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-1.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-10.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-2.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-3.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-4.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-5.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-6.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-7.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-8.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-9.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-howto.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl.html %%PORTDOCS%%%%DOCSDIR%%/html/glossary.html %%PORTDOCS%%%%DOCSDIR%%/html/groups.html %%PORTDOCS%%%%DOCSDIR%%/html/hintsandtips.html %%PORTDOCS%%%%DOCSDIR%%/html/index.html %%PORTDOCS%%%%DOCSDIR%%/html/install-perlmodules-manual.html %%PORTDOCS%%%%DOCSDIR%%/html/installation.html %%PORTDOCS%%%%DOCSDIR%%/html/installing-bugzilla.html %%PORTDOCS%%%%DOCSDIR%%/html/integration.html %%PORTDOCS%%%%DOCSDIR%%/html/lifecycle.html %%PORTDOCS%%%%DOCSDIR%%/html/list.html %%PORTDOCS%%%%DOCSDIR%%/html/milestones.html %%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-download.html %%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-instructions.html %%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-optional.html %%PORTDOCS%%%%DOCSDIR%%/html/myaccount.html %%PORTDOCS%%%%DOCSDIR%%/html/newversions.html %%PORTDOCS%%%%DOCSDIR%%/html/nonroot.html %%PORTDOCS%%%%DOCSDIR%%/html/os-specific.html %%PORTDOCS%%%%DOCSDIR%%/html/parameters.html %%PORTDOCS%%%%DOCSDIR%%/html/paranoid-security.html %%PORTDOCS%%%%DOCSDIR%%/html/patches.html %%PORTDOCS%%%%DOCSDIR%%/html/patchviewer.html %%PORTDOCS%%%%DOCSDIR%%/html/products.html %%PORTDOCS%%%%DOCSDIR%%/html/query.html %%PORTDOCS%%%%DOCSDIR%%/html/quips.html %%PORTDOCS%%%%DOCSDIR%%/html/reporting.html %%PORTDOCS%%%%DOCSDIR%%/html/security-bugzilla.html %%PORTDOCS%%%%DOCSDIR%%/html/security-mysql.html %%PORTDOCS%%%%DOCSDIR%%/html/security-os.html %%PORTDOCS%%%%DOCSDIR%%/html/security-webserver.html %%PORTDOCS%%%%DOCSDIR%%/html/security.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-bundlebugzilla.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-dbdsponge.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-index.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-passwd-encryption.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-perlmodule.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-relogin-everyone.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-testserver.html %%PORTDOCS%%%%DOCSDIR%%/html/trouble-filetemp.html %%PORTDOCS%%%%DOCSDIR%%/html/troubleshooting.html %%PORTDOCS%%%%DOCSDIR%%/html/upgrading.html %%PORTDOCS%%%%DOCSDIR%%/html/useradmin.html %%PORTDOCS%%%%DOCSDIR%%/html/userpreferences.html %%PORTDOCS%%%%DOCSDIR%%/html/using-intro.html %%PORTDOCS%%%%DOCSDIR%%/html/using.html %%PORTDOCS%%%%DOCSDIR%%/html/versions.html %%PORTDOCS%%%%DOCSDIR%%/html/voting.html %%PORTDOCS%%%%DOCSDIR%%/html/whining.html -%%PORTDOCS%%%%DOCSDIR%%/html/x3190.html +%%PORTDOCS%%%%DOCSDIR%%/html/x3269.html %%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.png %%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.xml %%PORTDOCS%%%%DOCSDIR%%/images/callouts/1.gif %%PORTDOCS%%%%DOCSDIR%%/images/callouts/2.gif %%PORTDOCS%%%%DOCSDIR%%/images/callouts/3.gif %%PORTDOCS%%%%DOCSDIR%%/images/caution.gif %%PORTDOCS%%%%DOCSDIR%%/images/note.gif %%PORTDOCS%%%%DOCSDIR%%/images/tip.gif %%PORTDOCS%%%%DOCSDIR%%/images/warning.gif %%PORTDOCS%%%%DOCSDIR%%/makedocs.pl %%PORTDOCS%%%%DOCSDIR%%/pdf/Bugzilla-Guide.pdf %%PORTDOCS%%%%DOCSDIR%%/rel_notes.txt %%PORTDOCS%%%%DOCSDIR%%/txt/Bugzilla-Guide.txt %%PORTDOCS%%%%DOCSDIR%%/xml/Bugzilla-Guide.xml %%PORTDOCS%%%%DOCSDIR%%/xml/about.xml %%PORTDOCS%%%%DOCSDIR%%/xml/administration.xml %%PORTDOCS%%%%DOCSDIR%%/xml/conventions.xml %%PORTDOCS%%%%DOCSDIR%%/xml/customization.xml %%PORTDOCS%%%%DOCSDIR%%/xml/dbschema.mysql %%PORTDOCS%%%%DOCSDIR%%/xml/faq.xml %%PORTDOCS%%%%DOCSDIR%%/xml/filetemp.patch %%PORTDOCS%%%%DOCSDIR%%/xml/gfdl.xml %%PORTDOCS%%%%DOCSDIR%%/xml/glossary.xml %%PORTDOCS%%%%DOCSDIR%%/xml/index.xml %%PORTDOCS%%%%DOCSDIR%%/xml/installation.xml %%PORTDOCS%%%%DOCSDIR%%/xml/integration.xml %%PORTDOCS%%%%DOCSDIR%%/xml/introduction.xml %%PORTDOCS%%%%DOCSDIR%%/xml/modules.xml %%PORTDOCS%%%%DOCSDIR%%/xml/patches.xml %%PORTDOCS%%%%DOCSDIR%%/xml/requiredsoftware.xml %%PORTDOCS%%%%DOCSDIR%%/xml/security.xml %%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml %%PORTDOCS%%%%DOCSDIR%%/xml/using.xml %%BUGZILLADIR%%/Bugzilla/Attachment.pm %%BUGZILLADIR%%/Bugzilla/Auth.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/Env.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI/Cookie.pm %%BUGZILLADIR%%/Bugzilla/Auth/README %%BUGZILLADIR%%/Bugzilla/Auth/Verify/DB.pm %%BUGZILLADIR%%/Bugzilla/Auth/Verify/LDAP.pm %%BUGZILLADIR%%/Bugzilla/Bug.pm %%BUGZILLADIR%%/Bugzilla/BugMail.pm %%BUGZILLADIR%%/Bugzilla/CGI.pm %%BUGZILLADIR%%/Bugzilla/Chart.pm +%%BUGZILLADIR%%/Bugzilla/Classification.pm +%%BUGZILLADIR%%/Bugzilla/Component.pm %%BUGZILLADIR%%/Bugzilla/Config.pm +%%BUGZILLADIR%%/Bugzilla/Config/Admin.pm +%%BUGZILLADIR%%/Bugzilla/Config/Attachment.pm +%%BUGZILLADIR%%/Bugzilla/Config/Auth.pm +%%BUGZILLADIR%%/Bugzilla/Config/BugChange.pm +%%BUGZILLADIR%%/Bugzilla/Config/BugFields.pm +%%BUGZILLADIR%%/Bugzilla/Config/BugMove.pm +%%BUGZILLADIR%%/Bugzilla/Config/Common.pm +%%BUGZILLADIR%%/Bugzilla/Config/Core.pm +%%BUGZILLADIR%%/Bugzilla/Config/DependencyGraph.pm +%%BUGZILLADIR%%/Bugzilla/Config/GroupSecurity.pm +%%BUGZILLADIR%%/Bugzilla/Config/L10n.pm +%%BUGZILLADIR%%/Bugzilla/Config/LDAP.pm +%%BUGZILLADIR%%/Bugzilla/Config/MTA.pm +%%BUGZILLADIR%%/Bugzilla/Config/PatchViewer.pm +%%BUGZILLADIR%%/Bugzilla/Config/Query.pm +%%BUGZILLADIR%%/Bugzilla/Config/ShadowDB.pm +%%BUGZILLADIR%%/Bugzilla/Config/UserMatch.pm %%BUGZILLADIR%%/Bugzilla/Constants.pm %%BUGZILLADIR%%/Bugzilla/DB.pm %%BUGZILLADIR%%/Bugzilla/DB/Mysql.pm %%BUGZILLADIR%%/Bugzilla/DB/Pg.pm %%BUGZILLADIR%%/Bugzilla/DB/Schema.pm %%BUGZILLADIR%%/Bugzilla/DB/Schema/Mysql.pm %%BUGZILLADIR%%/Bugzilla/DB/Schema/Pg.pm %%BUGZILLADIR%%/Bugzilla/Error.pm +%%BUGZILLADIR%%/Bugzilla/Field.pm %%BUGZILLADIR%%/Bugzilla/Flag.pm %%BUGZILLADIR%%/Bugzilla/FlagType.pm %%BUGZILLADIR%%/Bugzilla/Group.pm +%%BUGZILLADIR%%/Bugzilla/Milestone.pm +%%BUGZILLADIR%%/Bugzilla/Product.pm %%BUGZILLADIR%%/Bugzilla/Search.pm +%%BUGZILLADIR%%/Bugzilla/Search/Quicksearch.pm %%BUGZILLADIR%%/Bugzilla/Series.pm %%BUGZILLADIR%%/Bugzilla/Template.pm -%%BUGZILLADIR%%/Bugzilla/Token.pm -%%BUGZILLADIR%%/Bugzilla/User.pm -%%BUGZILLADIR%%/Bugzilla/Util.pm %%BUGZILLADIR%%/Bugzilla/Template/Plugin/Bugzilla.pm %%BUGZILLADIR%%/Bugzilla/Template/Plugin/Hook.pm %%BUGZILLADIR%%/Bugzilla/Template/Plugin/User.pm +%%BUGZILLADIR%%/Bugzilla/Token.pm +%%BUGZILLADIR%%/Bugzilla/User.pm %%BUGZILLADIR%%/Bugzilla/User/Setting.pm +%%BUGZILLADIR%%/Bugzilla/Util.pm +%%BUGZILLADIR%%/Bugzilla/Version.pm %%BUGZILLADIR%%/Bugzilla.pm -%%BUGZILLADIR%%/CGI.pl %%BUGZILLADIR%%/QUICKSTART %%BUGZILLADIR%%/README -%%BUGZILLADIR%%/ant.jpg %%BUGZILLADIR%%/attachment.cgi %%BUGZILLADIR%%/buglist.cgi %%BUGZILLADIR%%/bugzilla.dtd %%BUGZILLADIR%%/chart.cgi %%BUGZILLADIR%%/checksetup.pl %%BUGZILLADIR%%/colchange.cgi %%BUGZILLADIR%%/collectstats.pl %%BUGZILLADIR%%/config.cgi %%BUGZILLADIR%%/js/duplicates.js %%BUGZILLADIR%%/js/productform.js +%%BUGZILLADIR%%/js/TUI.js %%BUGZILLADIR%%/skins/standard/admin.css %%BUGZILLADIR%%/skins/standard/buglist.css %%BUGZILLADIR%%/skins/standard/duplicates.css %%BUGZILLADIR%%/skins/standard/editusers.css %%BUGZILLADIR%%/skins/standard/global.css %%BUGZILLADIR%%/skins/standard/index.css %%BUGZILLADIR%%/skins/standard/panel.css +%%BUGZILLADIR%%/skins/standard/params.css %%BUGZILLADIR%%/skins/standard/show_multiple.css %%BUGZILLADIR%%/skins/standard/summarize-time.css %%BUGZILLADIR%%/skins/standard/voting.css %%BUGZILLADIR%%/skins/standard/global/body-back.gif %%BUGZILLADIR%%/skins/standard/global/header.png -%%BUGZILLADIR%%/skins/standard/index/front.jpg %%BUGZILLADIR%%/skins/standard/index/front.png %%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm %%CONTRIB%%%%BUGZILLADIR%%/contrib/README %%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif %%CONTRIB%%%%BUGZILLADIR%%/contrib/bug_email.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugmail_help.html %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/README %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugdata.txt %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit.xml %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla.procmailrc %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla_email_append.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla_ldapsync.rb %%CONTRIB%%%%BUGZILLADIR%%/contrib/bzdbcopy.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugcount %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugids %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/buglist %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugs %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugslink %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/makequery %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/query.conf %%CONTRIB%%%%BUGZILLADIR%%/contrib/cvs-update.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnats2bz.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/README %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/gnatsparse.py %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/magic.py %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/specialuu.py %%CONTRIB%%%%BUGZILLADIR%%/contrib/jb2bz.py +%%CONTRIB%%%%BUGZILLADIR%%/contrib/merge-users.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/mysqld-watcher.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/sendbugmail.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/sendunsentbugmail.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/syncLDAP.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/yp_nomail.sh %%BUGZILLADIR%%/createaccount.cgi -%%BUGZILLADIR%%/defparams.pl %%BUGZILLADIR%%/describecomponents.cgi %%BUGZILLADIR%%/describekeywords.cgi -%%BUGZILLADIR%%/doeditparams.cgi %%BUGZILLADIR%%/duplicates.cgi %%BUGZILLADIR%%/duplicates.xul %%BUGZILLADIR%%/editclassifications.cgi %%BUGZILLADIR%%/editcomponents.cgi %%BUGZILLADIR%%/editflagtypes.cgi %%BUGZILLADIR%%/editgroups.cgi %%BUGZILLADIR%%/editkeywords.cgi %%BUGZILLADIR%%/editmilestones.cgi %%BUGZILLADIR%%/editparams.cgi %%BUGZILLADIR%%/editproducts.cgi %%BUGZILLADIR%%/editsettings.cgi %%BUGZILLADIR%%/editusers.cgi %%BUGZILLADIR%%/editvalues.cgi %%BUGZILLADIR%%/editversions.cgi %%BUGZILLADIR%%/editwhines.cgi %%BUGZILLADIR%%/enter_bug.cgi %%BUGZILLADIR%%/globals.pl %%BUGZILLADIR%%/images/padlock.png %%BUGZILLADIR%%/importxml.pl %%BUGZILLADIR%%/index.cgi -%%BUGZILLADIR%%/localconfig.js %%BUGZILLADIR%%/long_list.cgi -%%BUGZILLADIR%%/move.pl %%BUGZILLADIR%%/page.cgi %%BUGZILLADIR%%/post_bug.cgi %%BUGZILLADIR%%/process_bug.cgi %%BUGZILLADIR%%/productmenu.js %%BUGZILLADIR%%/query.cgi -%%BUGZILLADIR%%/quicksearch.html -%%BUGZILLADIR%%/quicksearch.js -%%BUGZILLADIR%%/quicksearchhack.html %%BUGZILLADIR%%/quips.cgi %%BUGZILLADIR%%/relogin.cgi %%BUGZILLADIR%%/report.cgi %%BUGZILLADIR%%/reports.cgi %%BUGZILLADIR%%/request.cgi %%BUGZILLADIR%%/robots.txt %%BUGZILLADIR%%/runtests.pl %%BUGZILLADIR%%/sanitycheck.cgi %%BUGZILLADIR%%/show_activity.cgi %%BUGZILLADIR%%/show_bug.cgi %%BUGZILLADIR%%/showattachment.cgi %%BUGZILLADIR%%/showdependencygraph.cgi %%BUGZILLADIR%%/showdependencytree.cgi %%BUGZILLADIR%%/sidebar.cgi %%BUGZILLADIR%%/summarize_time.cgi %%BUGZILLADIR%%/template/en/default/account/auth/ldap-error.html.tmpl %%BUGZILLADIR%%/template/en/default/account/auth/login.html.tmpl %%BUGZILLADIR%%/template/en/default/account/auth/login-small.html.tmpl %%BUGZILLADIR%%/template/en/default/account/cancel-token.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/create.html.tmpl %%BUGZILLADIR%%/template/en/default/account/created.html.tmpl %%BUGZILLADIR%%/template/en/default/account/email/change-new.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/email/change-old.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/email/confirm.html.tmpl %%BUGZILLADIR%%/template/en/default/account/exists.html.tmpl %%BUGZILLADIR%%/template/en/default/account/password/forgotten-password.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/password/set-forgotten-password.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/account.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/email.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/permissions.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/prefs.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/saved-searches.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/settings.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/sudo.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/table.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/add.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/del.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/new.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/reclassify.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/select.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/update.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/select-product.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/select-field.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/flag-type/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/flag-type/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/flag-type/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/change.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/remove.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/rebuild-cache.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/select-product.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/updated.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/admin.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/attachment.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/auth.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/bugchange.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/bugfields.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/bugmove.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/common.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/core.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/dependencygraph.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/editparams.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/groupsecurity.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/index.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/l10n.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/ldap.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/mta.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/patchviewer.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/query.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/shadowdb.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/usermatch.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/create.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/deleted.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/edit-common.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/list-classifications.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/edit.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/updated.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/settings/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/settings/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/listselectvars.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/search.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/userdata.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/select-product.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/choose.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/content-types.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/create.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/created.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/diff-file.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/diff-footer.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/diff-header.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/list.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/show-multiple.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/activity/show.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/activity/table.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/choose.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/comments.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/comment-guided.txt.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/comment.txt.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/create-guided.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/create.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/created.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/make-template.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/user-message.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/dependency-graph.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/dependency-tree.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/knob.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/navigate.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/bugmail.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/confirm-duplicate.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/header.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/midair.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/next.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/results.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/verify-new-product.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/show-multiple.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/show.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/show.xml.tmpl %%BUGZILLADIR%%/template/en/default/bug/summarize-time.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/time.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/votes/delete-all.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/votes/list-for-bug.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/votes/list-for-user.html.tmpl %%BUGZILLADIR%%/template/en/default/config.js.tmpl %%BUGZILLADIR%%/template/en/default/config.rdf.tmpl +%%BUGZILLADIR%%/template/en/default/email/sudo.txt.tmpl %%BUGZILLADIR%%/template/en/default/filterexceptions.pl %%BUGZILLADIR%%/template/en/default/flag/list.html.tmpl %%BUGZILLADIR%%/template/en/default/global/banner.html.tmpl %%BUGZILLADIR%%/template/en/default/global/choose-classification.html.tmpl %%BUGZILLADIR%%/template/en/default/global/choose-product.html.tmpl %%BUGZILLADIR%%/template/en/default/global/code-error.html.tmpl %%BUGZILLADIR%%/template/en/default/global/confirm-user-match.html.tmpl %%BUGZILLADIR%%/template/en/default/global/field-descs.none.tmpl %%BUGZILLADIR%%/template/en/default/global/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/global/header.html.tmpl %%BUGZILLADIR%%/template/en/default/global/help-header.html.tmpl %%BUGZILLADIR%%/template/en/default/global/help.html.tmpl %%BUGZILLADIR%%/template/en/default/global/hidden-fields.html.tmpl %%BUGZILLADIR%%/template/en/default/global/initialize.none.tmpl %%BUGZILLADIR%%/template/en/default/global/message.html.tmpl %%BUGZILLADIR%%/template/en/default/global/messages.html.tmpl +%%BUGZILLADIR%%/template/en/default/global/message.txt.tmpl +%%BUGZILLADIR%%/template/en/default/global/per-bug-queries.html.tmpl %%BUGZILLADIR%%/template/en/default/global/select-menu.html.tmpl %%BUGZILLADIR%%/template/en/default/global/setting-descs.none.tmpl %%BUGZILLADIR%%/template/en/default/global/site-navigation.html.tmpl +%%BUGZILLADIR%%/template/en/default/global/tabs.html.tmpl %%BUGZILLADIR%%/template/en/default/global/useful-links.html.tmpl %%BUGZILLADIR%%/template/en/default/global/user-error.html.tmpl %%BUGZILLADIR%%/template/en/default/global/userselect.html.tmpl %%BUGZILLADIR%%/template/en/default/global/variables.none.tmpl %%BUGZILLADIR%%/template/en/default/index.html.tmpl %%BUGZILLADIR%%/template/en/default/list/change-columns.html.tmpl %%BUGZILLADIR%%/template/en/default/list/edit-multiple.html.tmpl %%BUGZILLADIR%%/template/en/default/list/list-simple.html.tmpl %%BUGZILLADIR%%/template/en/default/list/list.atom.tmpl %%BUGZILLADIR%%/template/en/default/list/list.csv.tmpl %%BUGZILLADIR%%/template/en/default/list/list.html.tmpl %%BUGZILLADIR%%/template/en/default/list/list.ics.tmpl %%BUGZILLADIR%%/template/en/default/list/list.js.tmpl %%BUGZILLADIR%%/template/en/default/list/list.rdf.tmpl %%BUGZILLADIR%%/template/en/default/list/quips.html.tmpl %%BUGZILLADIR%%/template/en/default/list/server-push.html.tmpl %%BUGZILLADIR%%/template/en/default/list/table.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/bug-writing.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/fields.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/linked.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/linkify.html.tmpl +%%BUGZILLADIR%%/template/en/default/pages/quicksearch.html.tmpl +%%BUGZILLADIR%%/template/en/default/pages/quicksearchhack.html.tmpl +%%BUGZILLADIR%%/template/en/default/pages/sudo.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/voting.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/chart.csv.tmpl %%BUGZILLADIR%%/template/en/default/reports/chart.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/chart.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/components.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/create-chart.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates-simple.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates-table.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates.rdf.tmpl %%BUGZILLADIR%%/template/en/default/reports/edit-series.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/keywords.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/menu.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-bar.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-line.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-pie.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-simple.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-table.csv.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-table.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/report.csv.tmpl %%BUGZILLADIR%%/template/en/default/reports/report.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/series-common.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/series.html.tmpl %%BUGZILLADIR%%/template/en/default/request/email.txt.tmpl %%BUGZILLADIR%%/template/en/default/request/queue.html.tmpl %%BUGZILLADIR%%/template/en/default/search/boolean-charts.html.tmpl %%BUGZILLADIR%%/template/en/default/search/form.html.tmpl %%BUGZILLADIR%%/template/en/default/search/knob.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-advanced.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-create-series.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-help.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-report-graph.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-report-select.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-report-table.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-specific.html.tmpl %%BUGZILLADIR%%/template/en/default/search/tabs.html.tmpl %%BUGZILLADIR%%/template/en/default/sidebar.xul.tmpl %%BUGZILLADIR%%/template/en/default/whine/mail.html.tmpl %%BUGZILLADIR%%/template/en/default/whine/mail.txt.tmpl %%BUGZILLADIR%%/template/en/default/whine/multipart-mime.txt.tmpl %%BUGZILLADIR%%/template/en/default/whine/schedule.html.tmpl %%BUGZILLADIR%%/template/en/extension/filterexceptions.pl %%BUGZILLADIR%%/testagent.cgi %%BUGZILLADIR%%/testserver.pl %%BUGZILLADIR%%/token.cgi %%BUGZILLADIR%%/userprefs.cgi %%BUGZILLADIR%%/votes.cgi %%BUGZILLADIR%%/whine.pl %%BUGZILLADIR%%/whineatnews.pl %%BUGZILLADIR%%/xml.cgi @dirrm %%BUGZILLADIR%%/template/en/extension @dirrm %%BUGZILLADIR%%/template/en/default/whine @dirrm %%BUGZILLADIR%%/template/en/default/search @dirrm %%BUGZILLADIR%%/template/en/default/request @dirrm %%BUGZILLADIR%%/template/en/default/reports @dirrm %%BUGZILLADIR%%/template/en/default/pages @dirrm %%BUGZILLADIR%%/template/en/default/list @dirrm %%BUGZILLADIR%%/template/en/default/global @dirrm %%BUGZILLADIR%%/template/en/default/flag +@dirrm %%BUGZILLADIR%%/template/en/default/email @dirrm %%BUGZILLADIR%%/template/en/default/bug/votes @dirrm %%BUGZILLADIR%%/template/en/default/bug/process @dirrm %%BUGZILLADIR%%/template/en/default/bug/create @dirrm %%BUGZILLADIR%%/template/en/default/bug/activity @dirrm %%BUGZILLADIR%%/template/en/default/bug @dirrm %%BUGZILLADIR%%/template/en/default/attachment @dirrm %%BUGZILLADIR%%/template/en/default/admin/versions @dirrm %%BUGZILLADIR%%/template/en/default/admin/users @dirrm %%BUGZILLADIR%%/template/en/default/admin/settings @dirrm %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol @dirrm %%BUGZILLADIR%%/template/en/default/admin/products +@dirrm %%BUGZILLADIR%%/template/en/default/admin/params @dirrm %%BUGZILLADIR%%/template/en/default/admin/milestones @dirrm %%BUGZILLADIR%%/template/en/default/admin/keywords @dirrm %%BUGZILLADIR%%/template/en/default/admin/groups @dirrm %%BUGZILLADIR%%/template/en/default/admin/fieldvalues @dirrm %%BUGZILLADIR%%/template/en/default/admin/flag-type @dirrm %%BUGZILLADIR%%/template/en/default/admin/components @dirrm %%BUGZILLADIR%%/template/en/default/admin/classifications @dirrm %%BUGZILLADIR%%/template/en/default/admin @dirrm %%BUGZILLADIR%%/template/en/default/account/prefs @dirrm %%BUGZILLADIR%%/template/en/default/account/password @dirrm %%BUGZILLADIR%%/template/en/default/account/email @dirrm %%BUGZILLADIR%%/template/en/default/account/auth @dirrm %%BUGZILLADIR%%/template/en/default/account @dirrm %%BUGZILLADIR%%/template/en/default @dirrm %%BUGZILLADIR%%/template/en @dirrmtry %%BUGZILLADIR%%/template %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/gnatsparse %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib @dirrm %%BUGZILLADIR%%/Bugzilla/User @dirrm %%BUGZILLADIR%%/Bugzilla/Template/Plugin @dirrm %%BUGZILLADIR%%/Bugzilla/Template +@dirrm %%BUGZILLADIR%%/Bugzilla/Search @dirrm %%BUGZILLADIR%%/Bugzilla/DB/Schema @dirrm %%BUGZILLADIR%%/Bugzilla/DB +@dirrm %%BUGZILLADIR%%/Bugzilla/Config @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Verify @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login @dirrm %%BUGZILLADIR%%/Bugzilla/Auth @dirrmtry %%BUGZILLADIR%%/Bugzilla @dirrmtry %%BUGZILLADIR%%/data @dirrmtry %%BUGZILLADIR%%/graphs @dirrm %%BUGZILLADIR%%/images @dirrm %%BUGZILLADIR%%/js @dirrm %%BUGZILLADIR%%/skins/standard/index @dirrm %%BUGZILLADIR%%/skins/standard/global @dirrm %%BUGZILLADIR%%/skins/standard @dirrm %%BUGZILLADIR%%/skins @dirrmtry %%BUGZILLADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%/xml %%PORTDOCS%%@dirrm %%DOCSDIR%%/txt %%PORTDOCS%%@dirrm %%DOCSDIR%%/pdf %%PORTDOCS%%@dirrm %%DOCSDIR%%/images/callouts %%PORTDOCS%%@dirrm %%DOCSDIR%%/images %%PORTDOCS%%@dirrm %%DOCSDIR%%/html %%CONTRIB%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/contrib %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrmtry www/data Property changes on: head/devel/bugzilla2/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.19 \ No newline at end of property +1.20 \ No newline at end of property Index: head/devel/bugzilla3/Makefile =================================================================== --- head/devel/bugzilla3/Makefile (revision 161192) +++ head/devel/bugzilla3/Makefile (revision 161193) @@ -1,130 +1,144 @@ # New ports collection makefile for: bugzilla # Date created: 28 September 2001 # Whom: Alexey Zelkin # # $FreeBSD$ # PORTNAME?= bugzilla -PORTVERSION?= 2.20.1 +PORTVERSION?= 2.22 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= webtools webtools/archived MAINTAINER?= skv@FreeBSD.org COMMENT?= Bug-tracking system developed by Mozilla Project -OPTIONS= CHARTING_MODULES "Bug charting support" on \ +OPTIONS= MYSQL "MySQL database support" on \ + PGSQL "PostgreSQL database support" off \ + CHARTING_MODULES "Bug charting support" on \ GRAPHVIZ "Use GraphViz" off \ EMAIL_GATEWAY "Use email gateway" off \ EXPORT_IMPORT "Import/export bugs (via XML)" off \ CONTRIB "Install user-contributed scripts" off \ LDAP "Enable LDAP support" off -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql \ +RUN_DEPENDS+= \ ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm \ ${SITE_PERL}/AppConfig.pm:${PORTSDIR}/devel/p5-AppConfig \ ${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \ ${SITE_PERL}/${PERL_ARCH}/Template.pm:${PORTSDIR}/www/p5-Template-Toolkit \ ${SITE_PERL}/Text/Wrap.pm:${PORTSDIR}/textproc/p5-Text-Tabs+Wrap \ ${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper \ ${SITE_PERL}/${PERL_ARCH}/File/Spec.pm:${PORTSDIR}/devel/p5-PathTools \ ${SITE_PERL}/PatchReader.pm:${PORTSDIR}/devel/p5-PatchReader CONFLICTS?= ja-bugzilla-2.* USE_PERL5= yes -USE_REINPLACE= yes BINMODE= 700 PKGMESSAGE= ${WRKDIR}/pkg-message .ifndef BUGZILLADIR .ifdef APACHE_DATADIR BUGZILLADIR= ${APACHE_DATADIR}/data/bugzilla .else BUGZILLADIR= ${PREFIX}/www/data/bugzilla .endif .endif PLIST_SUB+= BUGZILLADIR=${BUGZILLADIR:S!^${PREFIX}/!!} CONTRIB_DOCS= README README.Mailif bugmail_help.html bugzilla.procmailrc DATA_DIRS_LIST= images js skins/standard skins/standard/global \ skins/standard/index .include +.ifdef WITH_MYSQL +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql +USE_MYSQL= yes +DEFAULT_MYSQL_VER= 41 +BROKEN_WITH_MYSQL= 323 +.endif + +.ifdef WITH_PGSQL +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg +USE_PGSQL= yes +.endif + .ifdef WITH_CHARTING_MODULES RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD \ ${SITE_PERL}/Chart/Base.pm:${PORTSDIR}/graphics/p5-chart \ ${SITE_PERL}/GD/Graph.pm:${PORTSDIR}/graphics/p5-GD-Graph \ ${SITE_PERL}/GD/Text/Align.pm:${PORTSDIR}/graphics/p5-GD-TextUtil .endif .ifdef WITH_GRAPHVIZ RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz .endif .ifdef WITH_EMAIL_GATEWAY RUN_DEPENDS+= ${SITE_PERL}/MIME/Parser.pm:${PORTSDIR}/mail/p5-MIME-Tools .endif .ifdef WITH_EXPORT_IMPORT -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ + ${SITE_PERL}/XML/Twig.pm:${PORTSDIR}/textproc/p5-XML-Twig .endif .ifdef WITH_CONTRIB PLIST_SUB+= CONTRIB="" .else PLIST_SUB+= CONTRIB="@comment " .endif .ifdef WITH_LDAP RUN_DEPENDS+= ${SITE_PERL}/Net/LDAP.pm:${PORTSDIR}/net/p5-perl-ldap .endif post-patch: @${PERL} -pi -e "s!(?<=webservergroup_default = ')apache!www!" \ ${WRKSRC}/checksetup.pl @${FIND} ${WRKSRC} \( -name "CVS" -or -name ".cvsignore" -or -name "*.orig" \ -or -name "README.docs" \) | ${XARGS} ${RM} -rf @${FIND} ${WRKSRC} -name "*.p[ml]" | \ ${XARGS} ${REINPLACE_CMD} -i '' -e 's!/usr/lib/sendmail!/usr/sbin/sendmail!' do-build: @${SED} -e "s:%%BUGZILLADIR%%:${BUGZILLADIR}:g; s:%%DOCSDIR%%:${DOCSDIR}:g" \ ${MASTERDIR}/pkg-message >${PKGMESSAGE} do-install: ${MKDIR} ${BUGZILLADIR} ${FIND} ${WRKSRC} \! -type d -maxdepth 1 \! -name "UPGRADING*" -exec \ ${INSTALL_SCRIPT} {} ${BUGZILLADIR} \; @${MKDIR} ${DATA_DIRS_LIST:S!^!${BUGZILLADIR}/!} .for D in ${DATA_DIRS_LIST} ${INSTALL_DATA} ${WRKSRC}/${D}/*.* ${BUGZILLADIR}/${D} .endfor ${TAR} -C ${WRKSRC} -cf - Bugzilla template | ${TAR} --unlink -C ${BUGZILLADIR} -xf - .ifndef NOPORTDOCS .for D in html images/callouts images pdf txt xml "" ${MKDIR} ${DOCSDIR}/${D} ${INSTALL_DATA} ${WRKSRC}/docs/${D}/*.* ${DOCSDIR}/${D}/ .endfor .endif .ifdef WITH_CONTRIB ${MKDIR} ${BUGZILLADIR}/contrib @cd ${WRKSRC}/contrib && \ ${FIND} . -type d -exec ${MKDIR} "${BUGZILLADIR}/contrib/{}" \; && \ ${FIND} . -type f -exec ${INSTALL_DATA} "{}" "${BUGZILLADIR}/contrib/{}" \; .ifndef NOPORTDOCS ${MKDIR} ${DOCSDIR}/contrib ${INSTALL_DATA} ${CONTRIB_DOCS:S!^!${WRKSRC}/contrib/!} ${DOCSDIR}/contrib .endif .endif .if !defined(BATCH) @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .endif .include Property changes on: head/devel/bugzilla3/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.43 \ No newline at end of property +1.44 \ No newline at end of property Index: head/devel/bugzilla3/distinfo =================================================================== --- head/devel/bugzilla3/distinfo (revision 161192) +++ head/devel/bugzilla3/distinfo (revision 161193) @@ -1,3 +1,3 @@ -MD5 (bugzilla-2.20.1.tar.gz) = b9c74195ce0f446be40b3e81104b934d -SHA256 (bugzilla-2.20.1.tar.gz) = c87d8c93d5dbd9d2dfd49552e47fd23d8748070929b26910772d712ad6716bbe -SIZE (bugzilla-2.20.1.tar.gz) = 1918866 +MD5 (bugzilla-2.22.tar.gz) = bbf2f1ec5607978d39855df104231973 +SHA256 (bugzilla-2.22.tar.gz) = 9d7e2144cd8499430c802ef5267dd2237aaec401546e5b9476db4f9ca19ebd4d +SIZE (bugzilla-2.22.tar.gz) = 1956898 Property changes on: head/devel/bugzilla3/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/devel/bugzilla3/pkg-plist =================================================================== --- head/devel/bugzilla3/pkg-plist (revision 161192) +++ head/devel/bugzilla3/pkg-plist (revision 161193) @@ -1,570 +1,624 @@ %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/README %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/README.Mailif %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/bugmail_help.html %%CONTRIB%%%%PORTDOCS%%%%DOCSDIR%%/contrib/bugzilla.procmailrc %%PORTDOCS%%%%DOCSDIR%%/html/Bugzilla-Guide.html %%PORTDOCS%%%%DOCSDIR%%/html/about.html %%PORTDOCS%%%%DOCSDIR%%/html/administration.html %%PORTDOCS%%%%DOCSDIR%%/html/bug_page.html %%PORTDOCS%%%%DOCSDIR%%/html/bugreports.html +%%PORTDOCS%%%%DOCSDIR%%/html/classifications.html %%PORTDOCS%%%%DOCSDIR%%/html/cmdline-bugmail.html %%PORTDOCS%%%%DOCSDIR%%/html/cmdline.html %%PORTDOCS%%%%DOCSDIR%%/html/components.html %%PORTDOCS%%%%DOCSDIR%%/html/configuration.html %%PORTDOCS%%%%DOCSDIR%%/html/conventions.html %%PORTDOCS%%%%DOCSDIR%%/html/copyright.html %%PORTDOCS%%%%DOCSDIR%%/html/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/cust-change-permissions.html %%PORTDOCS%%%%DOCSDIR%%/html/cust-hooks.html %%PORTDOCS%%%%DOCSDIR%%/html/cust-templates.html %%PORTDOCS%%%%DOCSDIR%%/html/customization.html %%PORTDOCS%%%%DOCSDIR%%/html/dbdoc.html %%PORTDOCS%%%%DOCSDIR%%/html/dbmodify.html %%PORTDOCS%%%%DOCSDIR%%/html/disclaimer.html %%PORTDOCS%%%%DOCSDIR%%/html/extraconfig.html %%PORTDOCS%%%%DOCSDIR%%/html/faq.html %%PORTDOCS%%%%DOCSDIR%%/html/flags-overview.html %%PORTDOCS%%%%DOCSDIR%%/html/flags.html %%PORTDOCS%%%%DOCSDIR%%/html/general-advice.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-0.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-1.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-10.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-2.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-3.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-4.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-5.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-6.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-7.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-8.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-9.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl-howto.html %%PORTDOCS%%%%DOCSDIR%%/html/gfdl.html %%PORTDOCS%%%%DOCSDIR%%/html/glossary.html %%PORTDOCS%%%%DOCSDIR%%/html/groups.html %%PORTDOCS%%%%DOCSDIR%%/html/hintsandtips.html %%PORTDOCS%%%%DOCSDIR%%/html/index.html %%PORTDOCS%%%%DOCSDIR%%/html/install-perlmodules-manual.html %%PORTDOCS%%%%DOCSDIR%%/html/installation.html %%PORTDOCS%%%%DOCSDIR%%/html/installing-bugzilla.html %%PORTDOCS%%%%DOCSDIR%%/html/integration.html %%PORTDOCS%%%%DOCSDIR%%/html/lifecycle.html %%PORTDOCS%%%%DOCSDIR%%/html/list.html %%PORTDOCS%%%%DOCSDIR%%/html/milestones.html %%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-download.html %%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-instructions.html %%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-optional.html %%PORTDOCS%%%%DOCSDIR%%/html/myaccount.html %%PORTDOCS%%%%DOCSDIR%%/html/newversions.html %%PORTDOCS%%%%DOCSDIR%%/html/nonroot.html %%PORTDOCS%%%%DOCSDIR%%/html/os-specific.html %%PORTDOCS%%%%DOCSDIR%%/html/parameters.html %%PORTDOCS%%%%DOCSDIR%%/html/paranoid-security.html %%PORTDOCS%%%%DOCSDIR%%/html/patches.html %%PORTDOCS%%%%DOCSDIR%%/html/patchviewer.html %%PORTDOCS%%%%DOCSDIR%%/html/products.html %%PORTDOCS%%%%DOCSDIR%%/html/query.html %%PORTDOCS%%%%DOCSDIR%%/html/quips.html %%PORTDOCS%%%%DOCSDIR%%/html/reporting.html %%PORTDOCS%%%%DOCSDIR%%/html/security-bugzilla.html %%PORTDOCS%%%%DOCSDIR%%/html/security-mysql.html %%PORTDOCS%%%%DOCSDIR%%/html/security-os.html %%PORTDOCS%%%%DOCSDIR%%/html/security-webserver.html %%PORTDOCS%%%%DOCSDIR%%/html/security.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-bundlebugzilla.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-dbdsponge.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-index.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-passwd-encryption.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-perlmodule.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-relogin-everyone.html %%PORTDOCS%%%%DOCSDIR%%/html/trbl-testserver.html %%PORTDOCS%%%%DOCSDIR%%/html/trouble-filetemp.html %%PORTDOCS%%%%DOCSDIR%%/html/troubleshooting.html %%PORTDOCS%%%%DOCSDIR%%/html/upgrading.html %%PORTDOCS%%%%DOCSDIR%%/html/useradmin.html %%PORTDOCS%%%%DOCSDIR%%/html/userpreferences.html %%PORTDOCS%%%%DOCSDIR%%/html/using-intro.html %%PORTDOCS%%%%DOCSDIR%%/html/using.html %%PORTDOCS%%%%DOCSDIR%%/html/versions.html %%PORTDOCS%%%%DOCSDIR%%/html/voting.html %%PORTDOCS%%%%DOCSDIR%%/html/whining.html -%%PORTDOCS%%%%DOCSDIR%%/html/x3190.html +%%PORTDOCS%%%%DOCSDIR%%/html/x3269.html %%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.png %%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.xml %%PORTDOCS%%%%DOCSDIR%%/images/callouts/1.gif %%PORTDOCS%%%%DOCSDIR%%/images/callouts/2.gif %%PORTDOCS%%%%DOCSDIR%%/images/callouts/3.gif %%PORTDOCS%%%%DOCSDIR%%/images/caution.gif %%PORTDOCS%%%%DOCSDIR%%/images/note.gif %%PORTDOCS%%%%DOCSDIR%%/images/tip.gif %%PORTDOCS%%%%DOCSDIR%%/images/warning.gif %%PORTDOCS%%%%DOCSDIR%%/makedocs.pl %%PORTDOCS%%%%DOCSDIR%%/pdf/Bugzilla-Guide.pdf %%PORTDOCS%%%%DOCSDIR%%/rel_notes.txt %%PORTDOCS%%%%DOCSDIR%%/txt/Bugzilla-Guide.txt %%PORTDOCS%%%%DOCSDIR%%/xml/Bugzilla-Guide.xml %%PORTDOCS%%%%DOCSDIR%%/xml/about.xml %%PORTDOCS%%%%DOCSDIR%%/xml/administration.xml %%PORTDOCS%%%%DOCSDIR%%/xml/conventions.xml %%PORTDOCS%%%%DOCSDIR%%/xml/customization.xml %%PORTDOCS%%%%DOCSDIR%%/xml/dbschema.mysql %%PORTDOCS%%%%DOCSDIR%%/xml/faq.xml %%PORTDOCS%%%%DOCSDIR%%/xml/filetemp.patch %%PORTDOCS%%%%DOCSDIR%%/xml/gfdl.xml %%PORTDOCS%%%%DOCSDIR%%/xml/glossary.xml %%PORTDOCS%%%%DOCSDIR%%/xml/index.xml %%PORTDOCS%%%%DOCSDIR%%/xml/installation.xml %%PORTDOCS%%%%DOCSDIR%%/xml/integration.xml %%PORTDOCS%%%%DOCSDIR%%/xml/introduction.xml %%PORTDOCS%%%%DOCSDIR%%/xml/modules.xml %%PORTDOCS%%%%DOCSDIR%%/xml/patches.xml %%PORTDOCS%%%%DOCSDIR%%/xml/requiredsoftware.xml %%PORTDOCS%%%%DOCSDIR%%/xml/security.xml %%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml %%PORTDOCS%%%%DOCSDIR%%/xml/using.xml %%BUGZILLADIR%%/Bugzilla/Attachment.pm %%BUGZILLADIR%%/Bugzilla/Auth.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/Env.pm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI/Cookie.pm %%BUGZILLADIR%%/Bugzilla/Auth/README %%BUGZILLADIR%%/Bugzilla/Auth/Verify/DB.pm %%BUGZILLADIR%%/Bugzilla/Auth/Verify/LDAP.pm %%BUGZILLADIR%%/Bugzilla/Bug.pm %%BUGZILLADIR%%/Bugzilla/BugMail.pm %%BUGZILLADIR%%/Bugzilla/CGI.pm %%BUGZILLADIR%%/Bugzilla/Chart.pm +%%BUGZILLADIR%%/Bugzilla/Classification.pm +%%BUGZILLADIR%%/Bugzilla/Component.pm %%BUGZILLADIR%%/Bugzilla/Config.pm +%%BUGZILLADIR%%/Bugzilla/Config/Admin.pm +%%BUGZILLADIR%%/Bugzilla/Config/Attachment.pm +%%BUGZILLADIR%%/Bugzilla/Config/Auth.pm +%%BUGZILLADIR%%/Bugzilla/Config/BugChange.pm +%%BUGZILLADIR%%/Bugzilla/Config/BugFields.pm +%%BUGZILLADIR%%/Bugzilla/Config/BugMove.pm +%%BUGZILLADIR%%/Bugzilla/Config/Common.pm +%%BUGZILLADIR%%/Bugzilla/Config/Core.pm +%%BUGZILLADIR%%/Bugzilla/Config/DependencyGraph.pm +%%BUGZILLADIR%%/Bugzilla/Config/GroupSecurity.pm +%%BUGZILLADIR%%/Bugzilla/Config/L10n.pm +%%BUGZILLADIR%%/Bugzilla/Config/LDAP.pm +%%BUGZILLADIR%%/Bugzilla/Config/MTA.pm +%%BUGZILLADIR%%/Bugzilla/Config/PatchViewer.pm +%%BUGZILLADIR%%/Bugzilla/Config/Query.pm +%%BUGZILLADIR%%/Bugzilla/Config/ShadowDB.pm +%%BUGZILLADIR%%/Bugzilla/Config/UserMatch.pm %%BUGZILLADIR%%/Bugzilla/Constants.pm %%BUGZILLADIR%%/Bugzilla/DB.pm %%BUGZILLADIR%%/Bugzilla/DB/Mysql.pm %%BUGZILLADIR%%/Bugzilla/DB/Pg.pm %%BUGZILLADIR%%/Bugzilla/DB/Schema.pm %%BUGZILLADIR%%/Bugzilla/DB/Schema/Mysql.pm %%BUGZILLADIR%%/Bugzilla/DB/Schema/Pg.pm %%BUGZILLADIR%%/Bugzilla/Error.pm +%%BUGZILLADIR%%/Bugzilla/Field.pm %%BUGZILLADIR%%/Bugzilla/Flag.pm %%BUGZILLADIR%%/Bugzilla/FlagType.pm %%BUGZILLADIR%%/Bugzilla/Group.pm +%%BUGZILLADIR%%/Bugzilla/Milestone.pm +%%BUGZILLADIR%%/Bugzilla/Product.pm %%BUGZILLADIR%%/Bugzilla/Search.pm +%%BUGZILLADIR%%/Bugzilla/Search/Quicksearch.pm %%BUGZILLADIR%%/Bugzilla/Series.pm %%BUGZILLADIR%%/Bugzilla/Template.pm -%%BUGZILLADIR%%/Bugzilla/Token.pm -%%BUGZILLADIR%%/Bugzilla/User.pm -%%BUGZILLADIR%%/Bugzilla/Util.pm %%BUGZILLADIR%%/Bugzilla/Template/Plugin/Bugzilla.pm %%BUGZILLADIR%%/Bugzilla/Template/Plugin/Hook.pm %%BUGZILLADIR%%/Bugzilla/Template/Plugin/User.pm +%%BUGZILLADIR%%/Bugzilla/Token.pm +%%BUGZILLADIR%%/Bugzilla/User.pm %%BUGZILLADIR%%/Bugzilla/User/Setting.pm +%%BUGZILLADIR%%/Bugzilla/Util.pm +%%BUGZILLADIR%%/Bugzilla/Version.pm %%BUGZILLADIR%%/Bugzilla.pm -%%BUGZILLADIR%%/CGI.pl %%BUGZILLADIR%%/QUICKSTART %%BUGZILLADIR%%/README -%%BUGZILLADIR%%/ant.jpg %%BUGZILLADIR%%/attachment.cgi %%BUGZILLADIR%%/buglist.cgi %%BUGZILLADIR%%/bugzilla.dtd %%BUGZILLADIR%%/chart.cgi %%BUGZILLADIR%%/checksetup.pl %%BUGZILLADIR%%/colchange.cgi %%BUGZILLADIR%%/collectstats.pl %%BUGZILLADIR%%/config.cgi %%BUGZILLADIR%%/js/duplicates.js %%BUGZILLADIR%%/js/productform.js +%%BUGZILLADIR%%/js/TUI.js %%BUGZILLADIR%%/skins/standard/admin.css %%BUGZILLADIR%%/skins/standard/buglist.css %%BUGZILLADIR%%/skins/standard/duplicates.css %%BUGZILLADIR%%/skins/standard/editusers.css %%BUGZILLADIR%%/skins/standard/global.css %%BUGZILLADIR%%/skins/standard/index.css %%BUGZILLADIR%%/skins/standard/panel.css +%%BUGZILLADIR%%/skins/standard/params.css %%BUGZILLADIR%%/skins/standard/show_multiple.css %%BUGZILLADIR%%/skins/standard/summarize-time.css %%BUGZILLADIR%%/skins/standard/voting.css %%BUGZILLADIR%%/skins/standard/global/body-back.gif %%BUGZILLADIR%%/skins/standard/global/header.png -%%BUGZILLADIR%%/skins/standard/index/front.jpg %%BUGZILLADIR%%/skins/standard/index/front.png %%CONTRIB%%%%BUGZILLADIR%%/contrib/BugzillaEmail.pm %%CONTRIB%%%%BUGZILLADIR%%/contrib/README %%CONTRIB%%%%BUGZILLADIR%%/contrib/README.Mailif %%CONTRIB%%%%BUGZILLADIR%%/contrib/bug_email.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugmail_help.html %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/README %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugdata.txt %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit.xml %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla.procmailrc %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla_email_append.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla_ldapsync.rb %%CONTRIB%%%%BUGZILLADIR%%/contrib/bzdbcopy.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugcount %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugids %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/buglist %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugs %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugslink %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/makequery %%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/query.conf %%CONTRIB%%%%BUGZILLADIR%%/contrib/cvs-update.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnats2bz.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/README %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/gnatsparse.py %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/magic.py %%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/specialuu.py %%CONTRIB%%%%BUGZILLADIR%%/contrib/jb2bz.py +%%CONTRIB%%%%BUGZILLADIR%%/contrib/merge-users.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/mysqld-watcher.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/sendbugmail.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/sendunsentbugmail.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/syncLDAP.pl %%CONTRIB%%%%BUGZILLADIR%%/contrib/yp_nomail.sh %%BUGZILLADIR%%/createaccount.cgi -%%BUGZILLADIR%%/defparams.pl %%BUGZILLADIR%%/describecomponents.cgi %%BUGZILLADIR%%/describekeywords.cgi -%%BUGZILLADIR%%/doeditparams.cgi %%BUGZILLADIR%%/duplicates.cgi %%BUGZILLADIR%%/duplicates.xul %%BUGZILLADIR%%/editclassifications.cgi %%BUGZILLADIR%%/editcomponents.cgi %%BUGZILLADIR%%/editflagtypes.cgi %%BUGZILLADIR%%/editgroups.cgi %%BUGZILLADIR%%/editkeywords.cgi %%BUGZILLADIR%%/editmilestones.cgi %%BUGZILLADIR%%/editparams.cgi %%BUGZILLADIR%%/editproducts.cgi %%BUGZILLADIR%%/editsettings.cgi %%BUGZILLADIR%%/editusers.cgi %%BUGZILLADIR%%/editvalues.cgi %%BUGZILLADIR%%/editversions.cgi %%BUGZILLADIR%%/editwhines.cgi %%BUGZILLADIR%%/enter_bug.cgi %%BUGZILLADIR%%/globals.pl %%BUGZILLADIR%%/images/padlock.png %%BUGZILLADIR%%/importxml.pl %%BUGZILLADIR%%/index.cgi -%%BUGZILLADIR%%/localconfig.js %%BUGZILLADIR%%/long_list.cgi -%%BUGZILLADIR%%/move.pl %%BUGZILLADIR%%/page.cgi %%BUGZILLADIR%%/post_bug.cgi %%BUGZILLADIR%%/process_bug.cgi %%BUGZILLADIR%%/productmenu.js %%BUGZILLADIR%%/query.cgi -%%BUGZILLADIR%%/quicksearch.html -%%BUGZILLADIR%%/quicksearch.js -%%BUGZILLADIR%%/quicksearchhack.html %%BUGZILLADIR%%/quips.cgi %%BUGZILLADIR%%/relogin.cgi %%BUGZILLADIR%%/report.cgi %%BUGZILLADIR%%/reports.cgi %%BUGZILLADIR%%/request.cgi %%BUGZILLADIR%%/robots.txt %%BUGZILLADIR%%/runtests.pl %%BUGZILLADIR%%/sanitycheck.cgi %%BUGZILLADIR%%/show_activity.cgi %%BUGZILLADIR%%/show_bug.cgi %%BUGZILLADIR%%/showattachment.cgi %%BUGZILLADIR%%/showdependencygraph.cgi %%BUGZILLADIR%%/showdependencytree.cgi %%BUGZILLADIR%%/sidebar.cgi %%BUGZILLADIR%%/summarize_time.cgi %%BUGZILLADIR%%/template/en/default/account/auth/ldap-error.html.tmpl %%BUGZILLADIR%%/template/en/default/account/auth/login.html.tmpl %%BUGZILLADIR%%/template/en/default/account/auth/login-small.html.tmpl %%BUGZILLADIR%%/template/en/default/account/cancel-token.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/create.html.tmpl %%BUGZILLADIR%%/template/en/default/account/created.html.tmpl %%BUGZILLADIR%%/template/en/default/account/email/change-new.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/email/change-old.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/email/confirm.html.tmpl %%BUGZILLADIR%%/template/en/default/account/exists.html.tmpl %%BUGZILLADIR%%/template/en/default/account/password/forgotten-password.txt.tmpl %%BUGZILLADIR%%/template/en/default/account/password/set-forgotten-password.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/account.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/email.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/permissions.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/prefs.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/saved-searches.html.tmpl %%BUGZILLADIR%%/template/en/default/account/prefs/settings.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/sudo.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/table.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/add.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/del.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/new.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/reclassify.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/select.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/classifications/update.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/select-product.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/components/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/select-field.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/fieldvalues/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/flag-type/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/flag-type/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/flag-type/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/change.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/groups/remove.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/keywords/rebuild-cache.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/select-product.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/milestones/updated.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/admin.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/attachment.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/auth.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/bugchange.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/bugfields.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/bugmove.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/common.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/core.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/dependencygraph.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/editparams.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/groupsecurity.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/index.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/l10n.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/ldap.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/mta.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/patchviewer.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/query.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/shadowdb.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/params/usermatch.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/create.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/deleted.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/edit-common.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/list-classifications.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/edit.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/updated.html.tmpl +%%BUGZILLADIR%%/template/en/default/admin/products/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/settings/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/settings/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/listselectvars.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/search.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/users/userdata.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/confirm-delete.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/create.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/created.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/deleted.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/list.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/select-product.html.tmpl %%BUGZILLADIR%%/template/en/default/admin/versions/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/choose.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/content-types.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/create.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/created.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/diff-file.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/diff-footer.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/diff-header.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/list.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/show-multiple.html.tmpl %%BUGZILLADIR%%/template/en/default/attachment/updated.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/activity/show.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/activity/table.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/choose.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/comments.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/comment-guided.txt.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/comment.txt.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/create-guided.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/create.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/created.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/make-template.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/create/user-message.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/dependency-graph.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/dependency-tree.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/edit.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/knob.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/navigate.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/bugmail.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/confirm-duplicate.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/header.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/midair.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/next.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/results.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/process/verify-new-product.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/show-multiple.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/show.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/show.xml.tmpl %%BUGZILLADIR%%/template/en/default/bug/summarize-time.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/time.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/votes/delete-all.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/votes/list-for-bug.html.tmpl %%BUGZILLADIR%%/template/en/default/bug/votes/list-for-user.html.tmpl %%BUGZILLADIR%%/template/en/default/config.js.tmpl %%BUGZILLADIR%%/template/en/default/config.rdf.tmpl +%%BUGZILLADIR%%/template/en/default/email/sudo.txt.tmpl %%BUGZILLADIR%%/template/en/default/filterexceptions.pl %%BUGZILLADIR%%/template/en/default/flag/list.html.tmpl %%BUGZILLADIR%%/template/en/default/global/banner.html.tmpl %%BUGZILLADIR%%/template/en/default/global/choose-classification.html.tmpl %%BUGZILLADIR%%/template/en/default/global/choose-product.html.tmpl %%BUGZILLADIR%%/template/en/default/global/code-error.html.tmpl %%BUGZILLADIR%%/template/en/default/global/confirm-user-match.html.tmpl %%BUGZILLADIR%%/template/en/default/global/field-descs.none.tmpl %%BUGZILLADIR%%/template/en/default/global/footer.html.tmpl %%BUGZILLADIR%%/template/en/default/global/header.html.tmpl %%BUGZILLADIR%%/template/en/default/global/help-header.html.tmpl %%BUGZILLADIR%%/template/en/default/global/help.html.tmpl %%BUGZILLADIR%%/template/en/default/global/hidden-fields.html.tmpl %%BUGZILLADIR%%/template/en/default/global/initialize.none.tmpl %%BUGZILLADIR%%/template/en/default/global/message.html.tmpl %%BUGZILLADIR%%/template/en/default/global/messages.html.tmpl +%%BUGZILLADIR%%/template/en/default/global/message.txt.tmpl +%%BUGZILLADIR%%/template/en/default/global/per-bug-queries.html.tmpl %%BUGZILLADIR%%/template/en/default/global/select-menu.html.tmpl %%BUGZILLADIR%%/template/en/default/global/setting-descs.none.tmpl %%BUGZILLADIR%%/template/en/default/global/site-navigation.html.tmpl +%%BUGZILLADIR%%/template/en/default/global/tabs.html.tmpl %%BUGZILLADIR%%/template/en/default/global/useful-links.html.tmpl %%BUGZILLADIR%%/template/en/default/global/user-error.html.tmpl %%BUGZILLADIR%%/template/en/default/global/userselect.html.tmpl %%BUGZILLADIR%%/template/en/default/global/variables.none.tmpl %%BUGZILLADIR%%/template/en/default/index.html.tmpl %%BUGZILLADIR%%/template/en/default/list/change-columns.html.tmpl %%BUGZILLADIR%%/template/en/default/list/edit-multiple.html.tmpl %%BUGZILLADIR%%/template/en/default/list/list-simple.html.tmpl %%BUGZILLADIR%%/template/en/default/list/list.atom.tmpl %%BUGZILLADIR%%/template/en/default/list/list.csv.tmpl %%BUGZILLADIR%%/template/en/default/list/list.html.tmpl %%BUGZILLADIR%%/template/en/default/list/list.ics.tmpl %%BUGZILLADIR%%/template/en/default/list/list.js.tmpl %%BUGZILLADIR%%/template/en/default/list/list.rdf.tmpl %%BUGZILLADIR%%/template/en/default/list/quips.html.tmpl %%BUGZILLADIR%%/template/en/default/list/server-push.html.tmpl %%BUGZILLADIR%%/template/en/default/list/table.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/bug-writing.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/fields.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/linked.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/linkify.html.tmpl +%%BUGZILLADIR%%/template/en/default/pages/quicksearch.html.tmpl +%%BUGZILLADIR%%/template/en/default/pages/quicksearchhack.html.tmpl +%%BUGZILLADIR%%/template/en/default/pages/sudo.html.tmpl %%BUGZILLADIR%%/template/en/default/pages/voting.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/chart.csv.tmpl %%BUGZILLADIR%%/template/en/default/reports/chart.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/chart.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/components.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/create-chart.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates-simple.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates-table.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/duplicates.rdf.tmpl %%BUGZILLADIR%%/template/en/default/reports/edit-series.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/keywords.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/menu.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-bar.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-line.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-pie.png.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-simple.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-table.csv.tmpl %%BUGZILLADIR%%/template/en/default/reports/report-table.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/report.csv.tmpl %%BUGZILLADIR%%/template/en/default/reports/report.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/series-common.html.tmpl %%BUGZILLADIR%%/template/en/default/reports/series.html.tmpl %%BUGZILLADIR%%/template/en/default/request/email.txt.tmpl %%BUGZILLADIR%%/template/en/default/request/queue.html.tmpl %%BUGZILLADIR%%/template/en/default/search/boolean-charts.html.tmpl %%BUGZILLADIR%%/template/en/default/search/form.html.tmpl %%BUGZILLADIR%%/template/en/default/search/knob.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-advanced.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-create-series.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-help.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-report-graph.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-report-select.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-report-table.html.tmpl %%BUGZILLADIR%%/template/en/default/search/search-specific.html.tmpl %%BUGZILLADIR%%/template/en/default/search/tabs.html.tmpl %%BUGZILLADIR%%/template/en/default/sidebar.xul.tmpl %%BUGZILLADIR%%/template/en/default/whine/mail.html.tmpl %%BUGZILLADIR%%/template/en/default/whine/mail.txt.tmpl %%BUGZILLADIR%%/template/en/default/whine/multipart-mime.txt.tmpl %%BUGZILLADIR%%/template/en/default/whine/schedule.html.tmpl %%BUGZILLADIR%%/template/en/extension/filterexceptions.pl %%BUGZILLADIR%%/testagent.cgi %%BUGZILLADIR%%/testserver.pl %%BUGZILLADIR%%/token.cgi %%BUGZILLADIR%%/userprefs.cgi %%BUGZILLADIR%%/votes.cgi %%BUGZILLADIR%%/whine.pl %%BUGZILLADIR%%/whineatnews.pl %%BUGZILLADIR%%/xml.cgi @dirrm %%BUGZILLADIR%%/template/en/extension @dirrm %%BUGZILLADIR%%/template/en/default/whine @dirrm %%BUGZILLADIR%%/template/en/default/search @dirrm %%BUGZILLADIR%%/template/en/default/request @dirrm %%BUGZILLADIR%%/template/en/default/reports @dirrm %%BUGZILLADIR%%/template/en/default/pages @dirrm %%BUGZILLADIR%%/template/en/default/list @dirrm %%BUGZILLADIR%%/template/en/default/global @dirrm %%BUGZILLADIR%%/template/en/default/flag +@dirrm %%BUGZILLADIR%%/template/en/default/email @dirrm %%BUGZILLADIR%%/template/en/default/bug/votes @dirrm %%BUGZILLADIR%%/template/en/default/bug/process @dirrm %%BUGZILLADIR%%/template/en/default/bug/create @dirrm %%BUGZILLADIR%%/template/en/default/bug/activity @dirrm %%BUGZILLADIR%%/template/en/default/bug @dirrm %%BUGZILLADIR%%/template/en/default/attachment @dirrm %%BUGZILLADIR%%/template/en/default/admin/versions @dirrm %%BUGZILLADIR%%/template/en/default/admin/users @dirrm %%BUGZILLADIR%%/template/en/default/admin/settings @dirrm %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol @dirrm %%BUGZILLADIR%%/template/en/default/admin/products +@dirrm %%BUGZILLADIR%%/template/en/default/admin/params @dirrm %%BUGZILLADIR%%/template/en/default/admin/milestones @dirrm %%BUGZILLADIR%%/template/en/default/admin/keywords @dirrm %%BUGZILLADIR%%/template/en/default/admin/groups @dirrm %%BUGZILLADIR%%/template/en/default/admin/fieldvalues @dirrm %%BUGZILLADIR%%/template/en/default/admin/flag-type @dirrm %%BUGZILLADIR%%/template/en/default/admin/components @dirrm %%BUGZILLADIR%%/template/en/default/admin/classifications @dirrm %%BUGZILLADIR%%/template/en/default/admin @dirrm %%BUGZILLADIR%%/template/en/default/account/prefs @dirrm %%BUGZILLADIR%%/template/en/default/account/password @dirrm %%BUGZILLADIR%%/template/en/default/account/email @dirrm %%BUGZILLADIR%%/template/en/default/account/auth @dirrm %%BUGZILLADIR%%/template/en/default/account @dirrm %%BUGZILLADIR%%/template/en/default @dirrm %%BUGZILLADIR%%/template/en @dirrmtry %%BUGZILLADIR%%/template %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/gnatsparse %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit %%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib @dirrm %%BUGZILLADIR%%/Bugzilla/User @dirrm %%BUGZILLADIR%%/Bugzilla/Template/Plugin @dirrm %%BUGZILLADIR%%/Bugzilla/Template +@dirrm %%BUGZILLADIR%%/Bugzilla/Search @dirrm %%BUGZILLADIR%%/Bugzilla/DB/Schema @dirrm %%BUGZILLADIR%%/Bugzilla/DB +@dirrm %%BUGZILLADIR%%/Bugzilla/Config @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Verify @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW/CGI @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login/WWW @dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login @dirrm %%BUGZILLADIR%%/Bugzilla/Auth @dirrmtry %%BUGZILLADIR%%/Bugzilla @dirrmtry %%BUGZILLADIR%%/data @dirrmtry %%BUGZILLADIR%%/graphs @dirrm %%BUGZILLADIR%%/images @dirrm %%BUGZILLADIR%%/js @dirrm %%BUGZILLADIR%%/skins/standard/index @dirrm %%BUGZILLADIR%%/skins/standard/global @dirrm %%BUGZILLADIR%%/skins/standard @dirrm %%BUGZILLADIR%%/skins @dirrmtry %%BUGZILLADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%/xml %%PORTDOCS%%@dirrm %%DOCSDIR%%/txt %%PORTDOCS%%@dirrm %%DOCSDIR%%/pdf %%PORTDOCS%%@dirrm %%DOCSDIR%%/images/callouts %%PORTDOCS%%@dirrm %%DOCSDIR%%/images %%PORTDOCS%%@dirrm %%DOCSDIR%%/html %%CONTRIB%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/contrib %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrmtry www/data Property changes on: head/devel/bugzilla3/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.19 \ No newline at end of property +1.20 \ No newline at end of property