ports/151912: [PATCH] devel/bugzilla: Use WWWDIR instead of some other custom locations

TAKATSU Tomonari tota at FreeBSD.org
Wed Nov 3 11:30:06 UTC 2010


>Number:         151912
>Category:       ports
>Synopsis:       [PATCH] devel/bugzilla: Use WWWDIR instead of some other custom locations
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Nov 03 11:30:05 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     TAKATSU Tomonari
>Release:        FreeBSD 8.1-RELEASE amd64
>Organization:
none (private)
>Environment:
System: FreeBSD photon.local.lan 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010
>Description:
- Use WWWDIR instead of some other custom locations
- Add Makefile.common which Makefiles in devel/bugzilla, russian/bugzilla-ru
  and japanese/bugzilla include to use WWWDIR in common
- Bump PORTREVISION
- Make portlint happier

Port maintainer (skv at FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

Index: devel/bugzilla/Makefile
===================================================================
RCS file: /home/ncvs/ports/devel/bugzilla/Makefile,v
retrieving revision 1.79
diff -u -r1.79 Makefile
--- devel/bugzilla/Makefile	21 Sep 2010 16:08:06 -0000	1.79
+++ devel/bugzilla/Makefile	10 Oct 2010 05:46:18 -0000
@@ -7,7 +7,7 @@
 
 PORTNAME=	bugzilla
 PORTVERSION=	3.6.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	${MASTER_SITE_MOZILLA}
 MASTER_SITE_SUBDIR=	webtools webtools/archived
@@ -15,6 +15,26 @@
 MAINTAINER=	skv at FreeBSD.org
 COMMENT=	Bug-tracking system developed by Mozilla Project
 
+RUN_DEPENDS=	\
+		${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \
+		p5-DBI>=1.41:${PORTSDIR}/databases/p5-DBI \
+		p5-Template-Toolkit>=2.22:${PORTSDIR}/www/p5-Template-Toolkit \
+		p5-DateTime>=0.28:${PORTSDIR}/devel/p5-DateTime \
+		p5-DateTime-TimeZone>=0.71:${PORTSDIR}/devel/p5-DateTime-TimeZone \
+		p5-URI>=0:${PORTSDIR}/net/p5-URI \
+		p5-Email-Send>=2.00:${PORTSDIR}/mail/p5-Email-Send \
+		p5-Email-MIME>=1.861:${PORTSDIR}/mail/p5-Email-MIME
+
+USE_PERL5=	yes
+
+BINMODE=	700
+
+SUB_FILES=	pkg-message
+
+DATA_DIRS_LIST=	images js skins
+
+.include "${.CURDIR}/Makefile.common"
+
 OPTIONS=	MYSQL "MySQL database support" off \
 		PGSQL "PostgreSQL database support" off \
 		GRAPH_REPORTS "Graphical Reports" on \
@@ -34,41 +54,6 @@
 		LDAP "LDAP Authentication" off \
 		RADIUS "RADIUS Authentication" off
 
-RUN_DEPENDS+=	\
-		${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \
-		p5-DBI>=1.41:${PORTSDIR}/databases/p5-DBI \
-		p5-Template-Toolkit>=2.22:${PORTSDIR}/www/p5-Template-Toolkit \
-		p5-DateTime>=0.28:${PORTSDIR}/devel/p5-DateTime \
-		p5-DateTime-TimeZone>=0.71:${PORTSDIR}/devel/p5-DateTime-TimeZone \
-		p5-URI>=0:${PORTSDIR}/net/p5-URI \
-		p5-Email-Send>=2.00:${PORTSDIR}/mail/p5-Email-Send \
-		p5-Email-MIME>=1.861:${PORTSDIR}/mail/p5-Email-MIME
-
-CONFLICTS=	bugzilla-2.*
-
-PORTSCOUT=	limitw:1,even
-
-USE_PERL5=	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
-
-SUB_FILES=	pkg-message
-SUB_LIST=	BUGZILLADIR=${BUGZILLADIR}
-PLIST_SUB+=	BUGZILLADIR=${BUGZILLADIR:S!^${PREFIX}/!!}
-
-DATA_DIRS_LIST=	images js skins
-
-NO_BUILD=
-
 .include <bsd.port.pre.mk>
 
 .if ${PERL_LEVEL} < 501000
@@ -178,26 +163,26 @@
 	${FIND} ${WRKSRC} -type f -exec ${REINPLACE_CMD} -i '' \
 		-e 's!/usr/lib/sendmail!/usr/sbin/sendmail!g; s=/usr/bin/perl=${PERL}=g' {} \+
 	@${FIND} ${WRKSRC}/docs -type f | \
-		${XARGS} ${REINPLACE_CMD} -i '' -e "s!/var/www/html/bugzilla!${BUGZILLADIR}!"
+		${XARGS} ${REINPLACE_CMD} -i '' -e "s!/var/www/html/bugzilla!${WWWDIR}!"
 
 do-install:
-	${MKDIR} ${BUGZILLADIR}
+	${MKDIR} ${WWWDIR}
 	${FIND} ${WRKSRC} \! -type d -maxdepth 1 \! -name "UPGRADING*" -exec \
-		${INSTALL_SCRIPT} {} ${BUGZILLADIR} \;
-	@${MKDIR} ${DATA_DIRS_LIST:S!^!${BUGZILLADIR}/!}
+		${INSTALL_SCRIPT} {} ${WWWDIR} \;
+	@${MKDIR} ${DATA_DIRS_LIST:S!^!${WWWDIR}/!}
 .for D in ${DATA_DIRS_LIST}
-	(cd ${WRKSRC}/${D} && ${COPYTREE_SHARE} . ${BUGZILLADIR}/${D})
+	(cd ${WRKSRC}/${D} && ${COPYTREE_SHARE} . ${WWWDIR}/${D})
 .endfor
-	${TAR} -C ${WRKSRC} -cf - Bugzilla template | ${TAR} --unlink -C ${BUGZILLADIR} -xf -
+	${TAR} -C ${WRKSRC} -cf - Bugzilla template | ${TAR} --unlink -C ${WWWDIR} -xf -
 .ifndef NOPORTDOCS
 	${MKDIR} ${DOCSDIR}
 	(cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${DOCSDIR}/)
 .endif
 .ifdef WITH_CONTRIB
-	${MKDIR} ${BUGZILLADIR}/contrib
+	${MKDIR} ${WWWDIR}/contrib
 	@cd ${WRKSRC}/contrib && \
-		${FIND} . -type d -exec ${MKDIR} "${BUGZILLADIR}/contrib/{}" \; && \
-		${FIND} . -type f -exec ${INSTALL_DATA} "{}" "${BUGZILLADIR}/contrib/{}" \;
+		${FIND} . -type d -exec ${MKDIR} "${WWWDIR}/contrib/{}" \; && \
+		${FIND} . -type f -exec ${INSTALL_DATA} "{}" "${WWWDIR}/contrib/{}" \;
 .endif
 .if !defined(BATCH)
 	@${ECHO_MSG}
Index: devel/bugzilla/Makefile.common
===================================================================
RCS file: devel/bugzilla/Makefile.common
diff -N devel/bugzilla/Makefile.common
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ devel/bugzilla/Makefile.common	3 Nov 2010 09:45:57 -0000
@@ -0,0 +1,12 @@
+#
+# $FreeBSD:$
+#
+
+CONFLICTS=	bugzilla-2.*
+
+PORTSCOUT=	limitw:1,even
+
+WWWDIR=	${PREFIX}/www/bugzilla
+
+NO_BUILD=	yes
+
Index: devel/bugzilla/distinfo
===================================================================
RCS file: /home/ncvs/ports/devel/bugzilla/distinfo,v
retrieving revision 1.41
diff -u -r1.41 distinfo
--- devel/bugzilla/distinfo	6 Sep 2010 07:58:29 -0000	1.41
+++ devel/bugzilla/distinfo	3 Nov 2010 09:41:09 -0000
@@ -1,3 +1,2 @@
-MD5 (bugzilla-3.6.2.tar.gz) = c8bd9b81969cce1a0199a739b48bda06
 SHA256 (bugzilla-3.6.2.tar.gz) = 52693795fd7b6d8e1195b1b8bfc6d1c430807c638b66ff5f123b571639f84403
 SIZE (bugzilla-3.6.2.tar.gz) = 2623743
Index: devel/bugzilla/pkg-plist
===================================================================
RCS file: /home/ncvs/ports/devel/bugzilla/pkg-plist,v
retrieving revision 1.35
diff -u -r1.35 pkg-plist
--- devel/bugzilla/pkg-plist	16 Apr 2010 07:15:08 -0000	1.35
+++ devel/bugzilla/pkg-plist	10 Oct 2010 05:03:06 -0000
@@ -195,626 +195,626 @@
 %%PORTDOCS%%%%DOCSDIR%%/en/xml/using.xml
 %%PORTDOCS%%%%DOCSDIR%%/lib/Pod/Simple/HTML/Bugzilla.pm
 %%PORTDOCS%%%%DOCSDIR%%/lib/Pod/Simple/HTMLBatch/Bugzilla.pm
-%%BUGZILLADIR%%/Bugzilla.pm
-%%BUGZILLADIR%%/Bugzilla/Attachment.pm
-%%BUGZILLADIR%%/Bugzilla/Attachment/PatchReader.pm
-%%BUGZILLADIR%%/Bugzilla/Auth.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Login.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Login/CGI.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Login/Cookie.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Login/Env.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Login/Stack.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Persist/Cookie.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Verify.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Verify/DB.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Verify/LDAP.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Verify/RADIUS.pm
-%%BUGZILLADIR%%/Bugzilla/Auth/Verify/Stack.pm
-%%BUGZILLADIR%%/Bugzilla/Bug.pm
-%%BUGZILLADIR%%/Bugzilla/BugMail.pm
-%%BUGZILLADIR%%/Bugzilla/CGI.pm
-%%BUGZILLADIR%%/Bugzilla/Chart.pm
-%%BUGZILLADIR%%/Bugzilla/Classification.pm
-%%BUGZILLADIR%%/Bugzilla/Comment.pm
-%%BUGZILLADIR%%/Bugzilla/Component.pm
-%%BUGZILLADIR%%/Bugzilla/Config.pm
-%%BUGZILLADIR%%/Bugzilla/Config/Admin.pm
-%%BUGZILLADIR%%/Bugzilla/Config/Advanced.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/General.pm
-%%BUGZILLADIR%%/Bugzilla/Config/GroupSecurity.pm
-%%BUGZILLADIR%%/Bugzilla/Config/LDAP.pm
-%%BUGZILLADIR%%/Bugzilla/Config/MTA.pm
-%%BUGZILLADIR%%/Bugzilla/Config/PatchViewer.pm
-%%BUGZILLADIR%%/Bugzilla/Config/Query.pm
-%%BUGZILLADIR%%/Bugzilla/Config/RADIUS.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/Oracle.pm
-%%BUGZILLADIR%%/Bugzilla/DB/Pg.pm
-%%BUGZILLADIR%%/Bugzilla/DB/Schema.pm
-%%BUGZILLADIR%%/Bugzilla/DB/Schema/Mysql.pm
-%%BUGZILLADIR%%/Bugzilla/DB/Schema/Oracle.pm
-%%BUGZILLADIR%%/Bugzilla/DB/Schema/Pg.pm
-%%BUGZILLADIR%%/Bugzilla/Error.pm
-%%BUGZILLADIR%%/Bugzilla/Extension.pm
-%%BUGZILLADIR%%/Bugzilla/Field.pm
-%%BUGZILLADIR%%/Bugzilla/Field/Choice.pm
-%%BUGZILLADIR%%/Bugzilla/Flag.pm
-%%BUGZILLADIR%%/Bugzilla/FlagType.pm
-%%BUGZILLADIR%%/Bugzilla/Group.pm
-%%BUGZILLADIR%%/Bugzilla/Hook.pm
-%%BUGZILLADIR%%/Bugzilla/Install.pm
-%%BUGZILLADIR%%/Bugzilla/Install/CPAN.pm
-%%BUGZILLADIR%%/Bugzilla/Install/DB.pm
-%%BUGZILLADIR%%/Bugzilla/Install/Filesystem.pm
-%%BUGZILLADIR%%/Bugzilla/Install/Localconfig.pm
-%%BUGZILLADIR%%/Bugzilla/Install/Requirements.pm
-%%BUGZILLADIR%%/Bugzilla/Install/Util.pm
-%%BUGZILLADIR%%/Bugzilla/Job/Mailer.pm
-%%BUGZILLADIR%%/Bugzilla/JobQueue.pm
-%%BUGZILLADIR%%/Bugzilla/JobQueue/Runner.pm
-%%BUGZILLADIR%%/Bugzilla/Keyword.pm
-%%BUGZILLADIR%%/Bugzilla/Mailer.pm
-%%BUGZILLADIR%%/Bugzilla/Migrate.pm
-%%BUGZILLADIR%%/Bugzilla/Migrate/Gnats.pm
-%%BUGZILLADIR%%/Bugzilla/Milestone.pm
-%%BUGZILLADIR%%/Bugzilla/Object.pm
-%%BUGZILLADIR%%/Bugzilla/Product.pm
-%%BUGZILLADIR%%/Bugzilla/Search.pm
-%%BUGZILLADIR%%/Bugzilla/Search/Quicksearch.pm
-%%BUGZILLADIR%%/Bugzilla/Search/Saved.pm
-%%BUGZILLADIR%%/Bugzilla/Series.pm
-%%BUGZILLADIR%%/Bugzilla/Status.pm
-%%BUGZILLADIR%%/Bugzilla/Template.pm
-%%BUGZILLADIR%%/Bugzilla/Template/Context.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/Update.pm
-%%BUGZILLADIR%%/Bugzilla/User.pm
-%%BUGZILLADIR%%/Bugzilla/User/Setting.pm
-%%BUGZILLADIR%%/Bugzilla/User/Setting/Lang.pm
-%%BUGZILLADIR%%/Bugzilla/User/Setting/Skin.pm
-%%BUGZILLADIR%%/Bugzilla/User/Setting/Timezone.pm
-%%BUGZILLADIR%%/Bugzilla/Util.pm
-%%BUGZILLADIR%%/Bugzilla/Version.pm
-%%BUGZILLADIR%%/Bugzilla/WebService.pm
-%%BUGZILLADIR%%/Bugzilla/WebService/Bug.pm
-%%BUGZILLADIR%%/Bugzilla/WebService/Bugzilla.pm
-%%BUGZILLADIR%%/Bugzilla/WebService/Constants.pm
-%%BUGZILLADIR%%/Bugzilla/WebService/Product.pm
-%%BUGZILLADIR%%/Bugzilla/WebService/README
-%%BUGZILLADIR%%/Bugzilla/WebService/Server.pm
-%%BUGZILLADIR%%/Bugzilla/WebService/Server/JSONRPC.pm
-%%BUGZILLADIR%%/Bugzilla/WebService/Server/XMLRPC.pm
-%%BUGZILLADIR%%/Bugzilla/WebService/User.pm
-%%BUGZILLADIR%%/Bugzilla/WebService/Util.pm
-%%BUGZILLADIR%%/Bugzilla/Whine/Query.pm
-%%BUGZILLADIR%%/Bugzilla/Whine/Schedule.pm
-%%BUGZILLADIR%%/README
-%%BUGZILLADIR%%/admin.cgi
-%%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%%/sanitycheck.pl
-%%BUGZILLADIR%%/jobqueue.pl
-%%BUGZILLADIR%%/jsonrpc.cgi
-%%BUGZILLADIR%%/migrate.pl
-%%BUGZILLADIR%%/js/TUI.js
-%%BUGZILLADIR%%/js/attachment.js
-%%BUGZILLADIR%%/js/change-columns.js
-%%BUGZILLADIR%%/js/expanding-tree.js
-%%BUGZILLADIR%%/js/field.js
-%%BUGZILLADIR%%/js/flag.js
-%%BUGZILLADIR%%/js/global.js
-%%BUGZILLADIR%%/js/help.js
-%%BUGZILLADIR%%/js/params.js
-%%BUGZILLADIR%%/js/productform.js
-%%BUGZILLADIR%%/js/util.js
-%%BUGZILLADIR%%/js/yui/calendar.js
-%%BUGZILLADIR%%/js/yui/cookie.js
-%%BUGZILLADIR%%/js/yui/yahoo-dom-event.js
-%%BUGZILLADIR%%/skins/contrib/Dusk/buglist.css
-%%BUGZILLADIR%%/skins/contrib/Dusk/global.css
-%%BUGZILLADIR%%/skins/contrib/Dusk/index.css
-%%BUGZILLADIR%%/skins/contrib/Dusk/index/account.gif
-%%BUGZILLADIR%%/skins/contrib/Dusk/index/bug.gif
-%%BUGZILLADIR%%/skins/contrib/Dusk/index/search.gif
-%%BUGZILLADIR%%/skins/standard/IE-fixes.css
-%%BUGZILLADIR%%/skins/standard/admin.css
-%%BUGZILLADIR%%/skins/standard/buglist.css
-%%BUGZILLADIR%%/skins/standard/create_attachment.css
-%%BUGZILLADIR%%/skins/standard/dependency-tree.css
-%%BUGZILLADIR%%/skins/standard/dependency-tree/bug-item.png
-%%BUGZILLADIR%%/skins/standard/dependency-tree/tree-closed.png
-%%BUGZILLADIR%%/skins/standard/dependency-tree/tree-open.png
-%%BUGZILLADIR%%/skins/standard/dependency-tree/tree.png
-%%BUGZILLADIR%%/skins/standard/duplicates.css
-%%BUGZILLADIR%%/skins/standard/editusers.css
-%%BUGZILLADIR%%/skins/standard/global.css
-%%BUGZILLADIR%%/skins/standard/global/body-back.gif
-%%BUGZILLADIR%%/skins/standard/global/calendar.png
-%%BUGZILLADIR%%/skins/standard/global/down.png
-%%BUGZILLADIR%%/skins/standard/global/header.png
-%%BUGZILLADIR%%/skins/standard/global/left.png
-%%BUGZILLADIR%%/skins/standard/global/right.png
-%%BUGZILLADIR%%/skins/standard/global/up.png
-%%BUGZILLADIR%%/skins/standard/help.css
-%%BUGZILLADIR%%/skins/standard/index.css
-%%BUGZILLADIR%%/skins/standard/index/account.gif
-%%BUGZILLADIR%%/skins/standard/index/bug.gif
-%%BUGZILLADIR%%/skins/standard/index/search.gif
-%%BUGZILLADIR%%/skins/standard/page.css
-%%BUGZILLADIR%%/skins/standard/panel.css
-%%BUGZILLADIR%%/skins/standard/params.css
-%%BUGZILLADIR%%/skins/standard/reports.css
-%%BUGZILLADIR%%/skins/standard/show_bug.css
-%%BUGZILLADIR%%/skins/standard/show_multiple.css
-%%BUGZILLADIR%%/skins/standard/summarize-time.css
-%%BUGZILLADIR%%/skins/standard/voting.css
-%%BUGZILLADIR%%/skins/standard/yui/calendar.css
-%%BUGZILLADIR%%/skins/standard/yui/sprite.png
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/README
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-queue
-%%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_ldapsync.rb
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/bz_webservice_demo.pl
-%%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/console.pl
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/cvs-update.pl
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/extension-convert.pl
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/fixperms.pl
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/jb2bz.py
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/merge-users.pl
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/mysqld-watcher.pl
-%%CONTRIB%%%%BUGZILLADIR%%/contrib/recode.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%%/describecomponents.cgi
-%%BUGZILLADIR%%/describekeywords.cgi
-%%BUGZILLADIR%%/duplicates.cgi
-%%BUGZILLADIR%%/editclassifications.cgi
-%%BUGZILLADIR%%/editcomponents.cgi
-%%BUGZILLADIR%%/editfields.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%%/editworkflow.cgi
-%%BUGZILLADIR%%/email_in.pl
-%%BUGZILLADIR%%/enter_bug.cgi
-%%BUGZILLADIR%%/images/padlock.png
-%%BUGZILLADIR%%/images/favicon.ico
-%%BUGZILLADIR%%/install-module.pl
-%%BUGZILLADIR%%/importxml.pl
-%%BUGZILLADIR%%/index.cgi
-%%BUGZILLADIR%%/long_list.cgi
-%%BUGZILLADIR%%/mod_perl.pl
-%%BUGZILLADIR%%/page.cgi
-%%BUGZILLADIR%%/post_bug.cgi
-%%BUGZILLADIR%%/process_bug.cgi
-%%BUGZILLADIR%%/query.cgi
-%%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%%/search_plugin.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/login-small.html.tmpl
-%%BUGZILLADIR%%/template/en/default/account/auth/login.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-new.html.tmpl
-%%BUGZILLADIR%%/template/en/default/account/email/confirm.html.tmpl
-%%BUGZILLADIR%%/template/en/default/account/email/request-new.txt.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/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/account/profile-activity.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/admin.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/edit.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/classifications/footer.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/components/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/components/create.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/confirm-action.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/custom_fields/cf-js.js.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/custom_fields/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/custom_fields/create.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/custom_fields/edit.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/custom_fields/list.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/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/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/confirm-remove.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/groups/create.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/groups/delete.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/keywords/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/keywords/create.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/milestones/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/milestones/create.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/params/admin.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/params/advanced.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/general.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/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/radius.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/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/products/create.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/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/list-classifications.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/products/list.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/products/updated.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/sanitycheck/list.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/sanitycheck/messages.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/settings/edit.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/sudo.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/table.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/responsibilities.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/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/workflow/comment.html.tmpl
-%%BUGZILLADIR%%/template/en/default/admin/workflow/edit.html.tmpl
-%%BUGZILLADIR%%/template/en/default/attachment/cancel-create-dupe.html.tmpl
-%%BUGZILLADIR%%/template/en/default/attachment/choose.html.tmpl
-%%BUGZILLADIR%%/template/en/default/attachment/confirm-delete.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/createformcontents.html.tmpl
-%%BUGZILLADIR%%/template/en/default/attachment/delete_reason.txt.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/midair.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/confirm-create-dupe.html.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/field-events.js.tmpl
-%%BUGZILLADIR%%/template/en/default/bug/field.html.tmpl
-%%BUGZILLADIR%%/template/en/default/bug/format_comment.txt.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/results.html.tmpl
-%%BUGZILLADIR%%/template/en/default/bug/process/verify-new-product.html.tmpl
-%%BUGZILLADIR%%/template/en/default/bug/show-header.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/lockout.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/email/newchangedmail.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/email/sanitycheck.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/email/sudo.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/email/votes-removed.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/email/whine.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/extensions/config.pm.tmpl
-%%BUGZILLADIR%%/template/en/default/extensions/extension.pm.tmpl
-%%BUGZILLADIR%%/template/en/default/extensions/hook-readme.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/extensions/license.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/extensions/name-readme.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/extensions/util.pm.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/common-links.html.tmpl
-%%BUGZILLADIR%%/template/en/default/global/confirm-action.html.tmpl
-%%BUGZILLADIR%%/template/en/default/global/confirm-user-match.html.tmpl
-%%BUGZILLADIR%%/template/en/default/global/docslinks.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.html.tmpl
-%%BUGZILLADIR%%/template/en/default/global/hidden-fields.html.tmpl
-%%BUGZILLADIR%%/template/en/default/global/initialize.none.tmpl
-%%BUGZILLADIR%%/template/en/default/global/js-products.html.tmpl
-%%BUGZILLADIR%%/template/en/default/global/message.html.tmpl
-%%BUGZILLADIR%%/template/en/default/global/message.txt.tmpl
-%%BUGZILLADIR%%/template/en/default/global/messages.html.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/textarea.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/user.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/release-notes.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/delete-series.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/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/old-charts.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-plugin.xml.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/search/type-select.html.tmpl
-%%BUGZILLADIR%%/template/en/default/setup/strings.txt.pl
-%%BUGZILLADIR%%/template/en/default/sidebar.xul.tmpl
-%%BUGZILLADIR%%/template/en/default/welcome-admin.html.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%%/testagent.cgi
-%%BUGZILLADIR%%/testserver.pl
-%%BUGZILLADIR%%/token.cgi
-%%BUGZILLADIR%%/userprefs.cgi
-%%BUGZILLADIR%%/votes.cgi
-%%BUGZILLADIR%%/whine.pl
-%%BUGZILLADIR%%/whineatnews.pl
-%%BUGZILLADIR%%/xml.cgi
-%%BUGZILLADIR%%/xmlrpc.cgi
- at dirrm %%BUGZILLADIR%%/template/en/default/whine
- at dirrm %%BUGZILLADIR%%/template/en/default/setup
- at dirrm %%BUGZILLADIR%%/template/en/default/search
- at dirrm %%BUGZILLADIR%%/template/en/default/request
- at dirrm %%BUGZILLADIR%%/template/en/default/reports
- at dirrm %%BUGZILLADIR%%/template/en/default/pages
- at dirrm %%BUGZILLADIR%%/template/en/default/list
- at dirrm %%BUGZILLADIR%%/template/en/default/global
- at dirrm %%BUGZILLADIR%%/template/en/default/flag
- at dirrm %%BUGZILLADIR%%/template/en/default/extensions
- at dirrm %%BUGZILLADIR%%/template/en/default/email
- at dirrm %%BUGZILLADIR%%/template/en/default/bug/votes
- at dirrm %%BUGZILLADIR%%/template/en/default/bug/process
- at dirrm %%BUGZILLADIR%%/template/en/default/bug/create
- at dirrm %%BUGZILLADIR%%/template/en/default/bug/activity
- at dirrm %%BUGZILLADIR%%/template/en/default/bug
- at dirrm %%BUGZILLADIR%%/template/en/default/attachment
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/workflow
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/versions
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/users
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/settings
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/sanitycheck
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/products
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/params
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/milestones
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/keywords
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/groups
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/fieldvalues
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/flag-type
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/custom_fields
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/components
- at dirrm %%BUGZILLADIR%%/template/en/default/admin/classifications
- at dirrm %%BUGZILLADIR%%/template/en/default/admin
- at dirrm %%BUGZILLADIR%%/template/en/default/account/prefs
- at dirrm %%BUGZILLADIR%%/template/en/default/account/password
- at dirrm %%BUGZILLADIR%%/template/en/default/account/email
- at dirrm %%BUGZILLADIR%%/template/en/default/account/auth
- at dirrm %%BUGZILLADIR%%/template/en/default/account
- at dirrm %%BUGZILLADIR%%/template/en/default
- at dirrm %%BUGZILLADIR%%/template/en
- at dirrmtry %%BUGZILLADIR%%/template
-%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline
-%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit
-%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib
- at dirrm %%BUGZILLADIR%%/Bugzilla/Whine
- at dirrm %%BUGZILLADIR%%/Bugzilla/WebService/Server
- at dirrm %%BUGZILLADIR%%/Bugzilla/WebService
- at dirrm %%BUGZILLADIR%%/Bugzilla/User/Setting
- at dirrm %%BUGZILLADIR%%/Bugzilla/User
- at dirrm %%BUGZILLADIR%%/Bugzilla/Template/Plugin
- at dirrm %%BUGZILLADIR%%/Bugzilla/Template
- at dirrm %%BUGZILLADIR%%/Bugzilla/Search
- at dirrm %%BUGZILLADIR%%/Bugzilla/Migrate
- at dirrm %%BUGZILLADIR%%/Bugzilla/JobQueue
- at dirrm %%BUGZILLADIR%%/Bugzilla/Job
- at dirrm %%BUGZILLADIR%%/Bugzilla/Install
- at dirrm %%BUGZILLADIR%%/Bugzilla/Field
- at dirrm %%BUGZILLADIR%%/Bugzilla/DB/Schema
- at dirrm %%BUGZILLADIR%%/Bugzilla/DB
- at dirrm %%BUGZILLADIR%%/Bugzilla/Config
- at dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Verify
- at dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Persist
- at dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login
- at dirrm %%BUGZILLADIR%%/Bugzilla/Auth
- at dirrm %%BUGZILLADIR%%/Bugzilla/Attachment
- at dirrmtry %%BUGZILLADIR%%/Bugzilla
- at dirrmtry %%BUGZILLADIR%%/data
- at dirrmtry %%BUGZILLADIR%%/graphs
- at dirrm %%BUGZILLADIR%%/images
- at dirrm %%BUGZILLADIR%%/js/yui
- at dirrm %%BUGZILLADIR%%/js
- at dirrm %%BUGZILLADIR%%/skins/standard/yui
- at dirrm %%BUGZILLADIR%%/skins/standard/index
- at dirrm %%BUGZILLADIR%%/skins/standard/global
- at dirrm %%BUGZILLADIR%%/skins/standard/dependency-tree
- at dirrm %%BUGZILLADIR%%/skins/standard
- at dirrm %%BUGZILLADIR%%/skins/contrib/Dusk/index
- at dirrm %%BUGZILLADIR%%/skins/contrib/Dusk
- at dirrm %%BUGZILLADIR%%/skins/contrib
- at dirrm %%BUGZILLADIR%%/skins
- at dirrmtry %%BUGZILLADIR%%
+%%WWWDIR%%/Bugzilla.pm
+%%WWWDIR%%/Bugzilla/Attachment.pm
+%%WWWDIR%%/Bugzilla/Attachment/PatchReader.pm
+%%WWWDIR%%/Bugzilla/Auth.pm
+%%WWWDIR%%/Bugzilla/Auth/Login.pm
+%%WWWDIR%%/Bugzilla/Auth/Login/CGI.pm
+%%WWWDIR%%/Bugzilla/Auth/Login/Cookie.pm
+%%WWWDIR%%/Bugzilla/Auth/Login/Env.pm
+%%WWWDIR%%/Bugzilla/Auth/Login/Stack.pm
+%%WWWDIR%%/Bugzilla/Auth/Persist/Cookie.pm
+%%WWWDIR%%/Bugzilla/Auth/Verify.pm
+%%WWWDIR%%/Bugzilla/Auth/Verify/DB.pm
+%%WWWDIR%%/Bugzilla/Auth/Verify/LDAP.pm
+%%WWWDIR%%/Bugzilla/Auth/Verify/RADIUS.pm
+%%WWWDIR%%/Bugzilla/Auth/Verify/Stack.pm
+%%WWWDIR%%/Bugzilla/Bug.pm
+%%WWWDIR%%/Bugzilla/BugMail.pm
+%%WWWDIR%%/Bugzilla/CGI.pm
+%%WWWDIR%%/Bugzilla/Chart.pm
+%%WWWDIR%%/Bugzilla/Classification.pm
+%%WWWDIR%%/Bugzilla/Comment.pm
+%%WWWDIR%%/Bugzilla/Component.pm
+%%WWWDIR%%/Bugzilla/Config.pm
+%%WWWDIR%%/Bugzilla/Config/Admin.pm
+%%WWWDIR%%/Bugzilla/Config/Advanced.pm
+%%WWWDIR%%/Bugzilla/Config/Attachment.pm
+%%WWWDIR%%/Bugzilla/Config/Auth.pm
+%%WWWDIR%%/Bugzilla/Config/BugChange.pm
+%%WWWDIR%%/Bugzilla/Config/BugFields.pm
+%%WWWDIR%%/Bugzilla/Config/BugMove.pm
+%%WWWDIR%%/Bugzilla/Config/Common.pm
+%%WWWDIR%%/Bugzilla/Config/Core.pm
+%%WWWDIR%%/Bugzilla/Config/DependencyGraph.pm
+%%WWWDIR%%/Bugzilla/Config/General.pm
+%%WWWDIR%%/Bugzilla/Config/GroupSecurity.pm
+%%WWWDIR%%/Bugzilla/Config/LDAP.pm
+%%WWWDIR%%/Bugzilla/Config/MTA.pm
+%%WWWDIR%%/Bugzilla/Config/PatchViewer.pm
+%%WWWDIR%%/Bugzilla/Config/Query.pm
+%%WWWDIR%%/Bugzilla/Config/RADIUS.pm
+%%WWWDIR%%/Bugzilla/Config/ShadowDB.pm
+%%WWWDIR%%/Bugzilla/Config/UserMatch.pm
+%%WWWDIR%%/Bugzilla/Constants.pm
+%%WWWDIR%%/Bugzilla/DB.pm
+%%WWWDIR%%/Bugzilla/DB/Mysql.pm
+%%WWWDIR%%/Bugzilla/DB/Oracle.pm
+%%WWWDIR%%/Bugzilla/DB/Pg.pm
+%%WWWDIR%%/Bugzilla/DB/Schema.pm
+%%WWWDIR%%/Bugzilla/DB/Schema/Mysql.pm
+%%WWWDIR%%/Bugzilla/DB/Schema/Oracle.pm
+%%WWWDIR%%/Bugzilla/DB/Schema/Pg.pm
+%%WWWDIR%%/Bugzilla/Error.pm
+%%WWWDIR%%/Bugzilla/Extension.pm
+%%WWWDIR%%/Bugzilla/Field.pm
+%%WWWDIR%%/Bugzilla/Field/Choice.pm
+%%WWWDIR%%/Bugzilla/Flag.pm
+%%WWWDIR%%/Bugzilla/FlagType.pm
+%%WWWDIR%%/Bugzilla/Group.pm
+%%WWWDIR%%/Bugzilla/Hook.pm
+%%WWWDIR%%/Bugzilla/Install.pm
+%%WWWDIR%%/Bugzilla/Install/CPAN.pm
+%%WWWDIR%%/Bugzilla/Install/DB.pm
+%%WWWDIR%%/Bugzilla/Install/Filesystem.pm
+%%WWWDIR%%/Bugzilla/Install/Localconfig.pm
+%%WWWDIR%%/Bugzilla/Install/Requirements.pm
+%%WWWDIR%%/Bugzilla/Install/Util.pm
+%%WWWDIR%%/Bugzilla/Job/Mailer.pm
+%%WWWDIR%%/Bugzilla/JobQueue.pm
+%%WWWDIR%%/Bugzilla/JobQueue/Runner.pm
+%%WWWDIR%%/Bugzilla/Keyword.pm
+%%WWWDIR%%/Bugzilla/Mailer.pm
+%%WWWDIR%%/Bugzilla/Migrate.pm
+%%WWWDIR%%/Bugzilla/Migrate/Gnats.pm
+%%WWWDIR%%/Bugzilla/Milestone.pm
+%%WWWDIR%%/Bugzilla/Object.pm
+%%WWWDIR%%/Bugzilla/Product.pm
+%%WWWDIR%%/Bugzilla/Search.pm
+%%WWWDIR%%/Bugzilla/Search/Quicksearch.pm
+%%WWWDIR%%/Bugzilla/Search/Saved.pm
+%%WWWDIR%%/Bugzilla/Series.pm
+%%WWWDIR%%/Bugzilla/Status.pm
+%%WWWDIR%%/Bugzilla/Template.pm
+%%WWWDIR%%/Bugzilla/Template/Context.pm
+%%WWWDIR%%/Bugzilla/Template/Plugin/Bugzilla.pm
+%%WWWDIR%%/Bugzilla/Template/Plugin/Hook.pm
+%%WWWDIR%%/Bugzilla/Template/Plugin/User.pm
+%%WWWDIR%%/Bugzilla/Token.pm
+%%WWWDIR%%/Bugzilla/Update.pm
+%%WWWDIR%%/Bugzilla/User.pm
+%%WWWDIR%%/Bugzilla/User/Setting.pm
+%%WWWDIR%%/Bugzilla/User/Setting/Lang.pm
+%%WWWDIR%%/Bugzilla/User/Setting/Skin.pm
+%%WWWDIR%%/Bugzilla/User/Setting/Timezone.pm
+%%WWWDIR%%/Bugzilla/Util.pm
+%%WWWDIR%%/Bugzilla/Version.pm
+%%WWWDIR%%/Bugzilla/WebService.pm
+%%WWWDIR%%/Bugzilla/WebService/Bug.pm
+%%WWWDIR%%/Bugzilla/WebService/Bugzilla.pm
+%%WWWDIR%%/Bugzilla/WebService/Constants.pm
+%%WWWDIR%%/Bugzilla/WebService/Product.pm
+%%WWWDIR%%/Bugzilla/WebService/README
+%%WWWDIR%%/Bugzilla/WebService/Server.pm
+%%WWWDIR%%/Bugzilla/WebService/Server/JSONRPC.pm
+%%WWWDIR%%/Bugzilla/WebService/Server/XMLRPC.pm
+%%WWWDIR%%/Bugzilla/WebService/User.pm
+%%WWWDIR%%/Bugzilla/WebService/Util.pm
+%%WWWDIR%%/Bugzilla/Whine/Query.pm
+%%WWWDIR%%/Bugzilla/Whine/Schedule.pm
+%%WWWDIR%%/README
+%%WWWDIR%%/admin.cgi
+%%WWWDIR%%/attachment.cgi
+%%WWWDIR%%/buglist.cgi
+%%WWWDIR%%/bugzilla.dtd
+%%WWWDIR%%/chart.cgi
+%%WWWDIR%%/checksetup.pl
+%%WWWDIR%%/colchange.cgi
+%%WWWDIR%%/collectstats.pl
+%%WWWDIR%%/config.cgi
+%%WWWDIR%%/sanitycheck.pl
+%%WWWDIR%%/jobqueue.pl
+%%WWWDIR%%/jsonrpc.cgi
+%%WWWDIR%%/migrate.pl
+%%WWWDIR%%/js/TUI.js
+%%WWWDIR%%/js/attachment.js
+%%WWWDIR%%/js/change-columns.js
+%%WWWDIR%%/js/expanding-tree.js
+%%WWWDIR%%/js/field.js
+%%WWWDIR%%/js/flag.js
+%%WWWDIR%%/js/global.js
+%%WWWDIR%%/js/help.js
+%%WWWDIR%%/js/params.js
+%%WWWDIR%%/js/productform.js
+%%WWWDIR%%/js/util.js
+%%WWWDIR%%/js/yui/calendar.js
+%%WWWDIR%%/js/yui/cookie.js
+%%WWWDIR%%/js/yui/yahoo-dom-event.js
+%%WWWDIR%%/skins/contrib/Dusk/buglist.css
+%%WWWDIR%%/skins/contrib/Dusk/global.css
+%%WWWDIR%%/skins/contrib/Dusk/index.css
+%%WWWDIR%%/skins/contrib/Dusk/index/account.gif
+%%WWWDIR%%/skins/contrib/Dusk/index/bug.gif
+%%WWWDIR%%/skins/contrib/Dusk/index/search.gif
+%%WWWDIR%%/skins/standard/IE-fixes.css
+%%WWWDIR%%/skins/standard/admin.css
+%%WWWDIR%%/skins/standard/buglist.css
+%%WWWDIR%%/skins/standard/create_attachment.css
+%%WWWDIR%%/skins/standard/dependency-tree.css
+%%WWWDIR%%/skins/standard/dependency-tree/bug-item.png
+%%WWWDIR%%/skins/standard/dependency-tree/tree-closed.png
+%%WWWDIR%%/skins/standard/dependency-tree/tree-open.png
+%%WWWDIR%%/skins/standard/dependency-tree/tree.png
+%%WWWDIR%%/skins/standard/duplicates.css
+%%WWWDIR%%/skins/standard/editusers.css
+%%WWWDIR%%/skins/standard/global.css
+%%WWWDIR%%/skins/standard/global/body-back.gif
+%%WWWDIR%%/skins/standard/global/calendar.png
+%%WWWDIR%%/skins/standard/global/down.png
+%%WWWDIR%%/skins/standard/global/header.png
+%%WWWDIR%%/skins/standard/global/left.png
+%%WWWDIR%%/skins/standard/global/right.png
+%%WWWDIR%%/skins/standard/global/up.png
+%%WWWDIR%%/skins/standard/help.css
+%%WWWDIR%%/skins/standard/index.css
+%%WWWDIR%%/skins/standard/index/account.gif
+%%WWWDIR%%/skins/standard/index/bug.gif
+%%WWWDIR%%/skins/standard/index/search.gif
+%%WWWDIR%%/skins/standard/page.css
+%%WWWDIR%%/skins/standard/panel.css
+%%WWWDIR%%/skins/standard/params.css
+%%WWWDIR%%/skins/standard/reports.css
+%%WWWDIR%%/skins/standard/show_bug.css
+%%WWWDIR%%/skins/standard/show_multiple.css
+%%WWWDIR%%/skins/standard/summarize-time.css
+%%WWWDIR%%/skins/standard/voting.css
+%%WWWDIR%%/skins/standard/yui/calendar.css
+%%WWWDIR%%/skins/standard/yui/sprite.png
+%%CONTRIB%%%%WWWDIR%%/contrib/README
+%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-queue
+%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-submit/README
+%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-submit/bugdata.txt
+%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-submit/bugzilla-submit
+%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla-submit/bugzilla-submit.xml
+%%CONTRIB%%%%WWWDIR%%/contrib/bugzilla_ldapsync.rb
+%%CONTRIB%%%%WWWDIR%%/contrib/bz_webservice_demo.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/bzdbcopy.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/cmdline/bugcount
+%%CONTRIB%%%%WWWDIR%%/contrib/cmdline/bugids
+%%CONTRIB%%%%WWWDIR%%/contrib/cmdline/buglist
+%%CONTRIB%%%%WWWDIR%%/contrib/cmdline/bugs
+%%CONTRIB%%%%WWWDIR%%/contrib/cmdline/bugslink
+%%CONTRIB%%%%WWWDIR%%/contrib/cmdline/makequery
+%%CONTRIB%%%%WWWDIR%%/contrib/cmdline/query.conf
+%%CONTRIB%%%%WWWDIR%%/contrib/console.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/cvs-update.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/extension-convert.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/fixperms.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/jb2bz.py
+%%CONTRIB%%%%WWWDIR%%/contrib/merge-users.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/mysqld-watcher.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/recode.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/sendbugmail.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/sendunsentbugmail.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/syncLDAP.pl
+%%CONTRIB%%%%WWWDIR%%/contrib/yp_nomail.sh
+%%WWWDIR%%/createaccount.cgi
+%%WWWDIR%%/describecomponents.cgi
+%%WWWDIR%%/describekeywords.cgi
+%%WWWDIR%%/duplicates.cgi
+%%WWWDIR%%/editclassifications.cgi
+%%WWWDIR%%/editcomponents.cgi
+%%WWWDIR%%/editfields.cgi
+%%WWWDIR%%/editflagtypes.cgi
+%%WWWDIR%%/editgroups.cgi
+%%WWWDIR%%/editkeywords.cgi
+%%WWWDIR%%/editmilestones.cgi
+%%WWWDIR%%/editparams.cgi
+%%WWWDIR%%/editproducts.cgi
+%%WWWDIR%%/editsettings.cgi
+%%WWWDIR%%/editusers.cgi
+%%WWWDIR%%/editvalues.cgi
+%%WWWDIR%%/editversions.cgi
+%%WWWDIR%%/editwhines.cgi
+%%WWWDIR%%/editworkflow.cgi
+%%WWWDIR%%/email_in.pl
+%%WWWDIR%%/enter_bug.cgi
+%%WWWDIR%%/images/padlock.png
+%%WWWDIR%%/images/favicon.ico
+%%WWWDIR%%/install-module.pl
+%%WWWDIR%%/importxml.pl
+%%WWWDIR%%/index.cgi
+%%WWWDIR%%/long_list.cgi
+%%WWWDIR%%/mod_perl.pl
+%%WWWDIR%%/page.cgi
+%%WWWDIR%%/post_bug.cgi
+%%WWWDIR%%/process_bug.cgi
+%%WWWDIR%%/query.cgi
+%%WWWDIR%%/quips.cgi
+%%WWWDIR%%/relogin.cgi
+%%WWWDIR%%/report.cgi
+%%WWWDIR%%/reports.cgi
+%%WWWDIR%%/request.cgi
+%%WWWDIR%%/robots.txt
+%%WWWDIR%%/runtests.pl
+%%WWWDIR%%/sanitycheck.cgi
+%%WWWDIR%%/search_plugin.cgi
+%%WWWDIR%%/show_activity.cgi
+%%WWWDIR%%/show_bug.cgi
+%%WWWDIR%%/showattachment.cgi
+%%WWWDIR%%/showdependencygraph.cgi
+%%WWWDIR%%/showdependencytree.cgi
+%%WWWDIR%%/sidebar.cgi
+%%WWWDIR%%/summarize_time.cgi
+%%WWWDIR%%/template/en/default/account/auth/login-small.html.tmpl
+%%WWWDIR%%/template/en/default/account/auth/login.html.tmpl
+%%WWWDIR%%/template/en/default/account/cancel-token.txt.tmpl
+%%WWWDIR%%/template/en/default/account/create.html.tmpl
+%%WWWDIR%%/template/en/default/account/created.html.tmpl
+%%WWWDIR%%/template/en/default/account/email/change-new.txt.tmpl
+%%WWWDIR%%/template/en/default/account/email/change-old.txt.tmpl
+%%WWWDIR%%/template/en/default/account/email/confirm-new.html.tmpl
+%%WWWDIR%%/template/en/default/account/email/confirm.html.tmpl
+%%WWWDIR%%/template/en/default/account/email/request-new.txt.tmpl
+%%WWWDIR%%/template/en/default/account/password/forgotten-password.txt.tmpl
+%%WWWDIR%%/template/en/default/account/password/set-forgotten-password.html.tmpl
+%%WWWDIR%%/template/en/default/account/prefs/account.html.tmpl
+%%WWWDIR%%/template/en/default/account/prefs/email.html.tmpl
+%%WWWDIR%%/template/en/default/account/prefs/permissions.html.tmpl
+%%WWWDIR%%/template/en/default/account/prefs/prefs.html.tmpl
+%%WWWDIR%%/template/en/default/account/prefs/saved-searches.html.tmpl
+%%WWWDIR%%/template/en/default/account/prefs/settings.html.tmpl
+%%WWWDIR%%/template/en/default/account/profile-activity.html.tmpl
+%%WWWDIR%%/template/en/default/admin/admin.html.tmpl
+%%WWWDIR%%/template/en/default/admin/classifications/add.html.tmpl
+%%WWWDIR%%/template/en/default/admin/classifications/del.html.tmpl
+%%WWWDIR%%/template/en/default/admin/classifications/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/classifications/footer.html.tmpl
+%%WWWDIR%%/template/en/default/admin/classifications/reclassify.html.tmpl
+%%WWWDIR%%/template/en/default/admin/classifications/select.html.tmpl
+%%WWWDIR%%/template/en/default/admin/components/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/components/create.html.tmpl
+%%WWWDIR%%/template/en/default/admin/components/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/components/footer.html.tmpl
+%%WWWDIR%%/template/en/default/admin/components/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/components/select-product.html.tmpl
+%%WWWDIR%%/template/en/default/admin/confirm-action.html.tmpl
+%%WWWDIR%%/template/en/default/admin/custom_fields/cf-js.js.tmpl
+%%WWWDIR%%/template/en/default/admin/custom_fields/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/custom_fields/create.html.tmpl
+%%WWWDIR%%/template/en/default/admin/custom_fields/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/custom_fields/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/fieldvalues/create.html.tmpl
+%%WWWDIR%%/template/en/default/admin/fieldvalues/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/fieldvalues/footer.html.tmpl
+%%WWWDIR%%/template/en/default/admin/fieldvalues/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/fieldvalues/select-field.html.tmpl
+%%WWWDIR%%/template/en/default/admin/flag-type/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/flag-type/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/flag-type/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/groups/confirm-remove.html.tmpl
+%%WWWDIR%%/template/en/default/admin/groups/create.html.tmpl
+%%WWWDIR%%/template/en/default/admin/groups/delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/groups/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/groups/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/keywords/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/keywords/create.html.tmpl
+%%WWWDIR%%/template/en/default/admin/keywords/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/keywords/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/milestones/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/milestones/create.html.tmpl
+%%WWWDIR%%/template/en/default/admin/milestones/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/milestones/footer.html.tmpl
+%%WWWDIR%%/template/en/default/admin/milestones/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/milestones/select-product.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/admin.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/advanced.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/attachment.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/auth.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/bugchange.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/bugfields.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/bugmove.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/common.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/core.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/dependencygraph.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/editparams.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/general.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/groupsecurity.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/index.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/ldap.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/mta.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/patchviewer.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/query.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/radius.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/shadowdb.html.tmpl
+%%WWWDIR%%/template/en/default/admin/params/usermatch.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/create.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/edit-common.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/footer.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/groupcontrol/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/groupcontrol/updated.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/list-classifications.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/products/updated.html.tmpl
+%%WWWDIR%%/template/en/default/admin/sanitycheck/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/sanitycheck/messages.html.tmpl
+%%WWWDIR%%/template/en/default/admin/settings/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/sudo.html.tmpl
+%%WWWDIR%%/template/en/default/admin/table.html.tmpl
+%%WWWDIR%%/template/en/default/admin/users/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/users/create.html.tmpl
+%%WWWDIR%%/template/en/default/admin/users/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/users/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/users/listselectvars.html.tmpl
+%%WWWDIR%%/template/en/default/admin/users/responsibilities.html.tmpl
+%%WWWDIR%%/template/en/default/admin/users/search.html.tmpl
+%%WWWDIR%%/template/en/default/admin/users/userdata.html.tmpl
+%%WWWDIR%%/template/en/default/admin/versions/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/admin/versions/create.html.tmpl
+%%WWWDIR%%/template/en/default/admin/versions/edit.html.tmpl
+%%WWWDIR%%/template/en/default/admin/versions/footer.html.tmpl
+%%WWWDIR%%/template/en/default/admin/versions/list.html.tmpl
+%%WWWDIR%%/template/en/default/admin/versions/select-product.html.tmpl
+%%WWWDIR%%/template/en/default/admin/workflow/comment.html.tmpl
+%%WWWDIR%%/template/en/default/admin/workflow/edit.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/cancel-create-dupe.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/choose.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/confirm-delete.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/content-types.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/create.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/created.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/createformcontents.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/delete_reason.txt.tmpl
+%%WWWDIR%%/template/en/default/attachment/diff-file.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/diff-footer.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/diff-header.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/edit.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/list.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/midair.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/show-multiple.html.tmpl
+%%WWWDIR%%/template/en/default/attachment/updated.html.tmpl
+%%WWWDIR%%/template/en/default/bug/activity/show.html.tmpl
+%%WWWDIR%%/template/en/default/bug/activity/table.html.tmpl
+%%WWWDIR%%/template/en/default/bug/choose.html.tmpl
+%%WWWDIR%%/template/en/default/bug/comments.html.tmpl
+%%WWWDIR%%/template/en/default/bug/create/comment-guided.txt.tmpl
+%%WWWDIR%%/template/en/default/bug/create/comment.txt.tmpl
+%%WWWDIR%%/template/en/default/bug/create/confirm-create-dupe.html.tmpl
+%%WWWDIR%%/template/en/default/bug/create/create-guided.html.tmpl
+%%WWWDIR%%/template/en/default/bug/create/create.html.tmpl
+%%WWWDIR%%/template/en/default/bug/create/created.html.tmpl
+%%WWWDIR%%/template/en/default/bug/create/make-template.html.tmpl
+%%WWWDIR%%/template/en/default/bug/create/user-message.html.tmpl
+%%WWWDIR%%/template/en/default/bug/dependency-graph.html.tmpl
+%%WWWDIR%%/template/en/default/bug/dependency-tree.html.tmpl
+%%WWWDIR%%/template/en/default/bug/edit.html.tmpl
+%%WWWDIR%%/template/en/default/bug/field-events.js.tmpl
+%%WWWDIR%%/template/en/default/bug/field.html.tmpl
+%%WWWDIR%%/template/en/default/bug/format_comment.txt.tmpl
+%%WWWDIR%%/template/en/default/bug/knob.html.tmpl
+%%WWWDIR%%/template/en/default/bug/navigate.html.tmpl
+%%WWWDIR%%/template/en/default/bug/process/bugmail.html.tmpl
+%%WWWDIR%%/template/en/default/bug/process/confirm-duplicate.html.tmpl
+%%WWWDIR%%/template/en/default/bug/process/header.html.tmpl
+%%WWWDIR%%/template/en/default/bug/process/midair.html.tmpl
+%%WWWDIR%%/template/en/default/bug/process/results.html.tmpl
+%%WWWDIR%%/template/en/default/bug/process/verify-new-product.html.tmpl
+%%WWWDIR%%/template/en/default/bug/show-header.html.tmpl
+%%WWWDIR%%/template/en/default/bug/show-multiple.html.tmpl
+%%WWWDIR%%/template/en/default/bug/show.html.tmpl
+%%WWWDIR%%/template/en/default/bug/show.xml.tmpl
+%%WWWDIR%%/template/en/default/bug/summarize-time.html.tmpl
+%%WWWDIR%%/template/en/default/bug/time.html.tmpl
+%%WWWDIR%%/template/en/default/bug/votes/delete-all.html.tmpl
+%%WWWDIR%%/template/en/default/bug/votes/list-for-bug.html.tmpl
+%%WWWDIR%%/template/en/default/bug/votes/list-for-user.html.tmpl
+%%WWWDIR%%/template/en/default/config.js.tmpl
+%%WWWDIR%%/template/en/default/config.rdf.tmpl
+%%WWWDIR%%/template/en/default/email/lockout.txt.tmpl
+%%WWWDIR%%/template/en/default/email/newchangedmail.txt.tmpl
+%%WWWDIR%%/template/en/default/email/sanitycheck.txt.tmpl
+%%WWWDIR%%/template/en/default/email/sudo.txt.tmpl
+%%WWWDIR%%/template/en/default/email/votes-removed.txt.tmpl
+%%WWWDIR%%/template/en/default/email/whine.txt.tmpl
+%%WWWDIR%%/template/en/default/extensions/config.pm.tmpl
+%%WWWDIR%%/template/en/default/extensions/extension.pm.tmpl
+%%WWWDIR%%/template/en/default/extensions/hook-readme.txt.tmpl
+%%WWWDIR%%/template/en/default/extensions/license.txt.tmpl
+%%WWWDIR%%/template/en/default/extensions/name-readme.txt.tmpl
+%%WWWDIR%%/template/en/default/extensions/util.pm.tmpl
+%%WWWDIR%%/template/en/default/filterexceptions.pl
+%%WWWDIR%%/template/en/default/flag/list.html.tmpl
+%%WWWDIR%%/template/en/default/global/banner.html.tmpl
+%%WWWDIR%%/template/en/default/global/choose-classification.html.tmpl
+%%WWWDIR%%/template/en/default/global/choose-product.html.tmpl
+%%WWWDIR%%/template/en/default/global/code-error.html.tmpl
+%%WWWDIR%%/template/en/default/global/common-links.html.tmpl
+%%WWWDIR%%/template/en/default/global/confirm-action.html.tmpl
+%%WWWDIR%%/template/en/default/global/confirm-user-match.html.tmpl
+%%WWWDIR%%/template/en/default/global/docslinks.html.tmpl
+%%WWWDIR%%/template/en/default/global/field-descs.none.tmpl
+%%WWWDIR%%/template/en/default/global/footer.html.tmpl
+%%WWWDIR%%/template/en/default/global/header.html.tmpl
+%%WWWDIR%%/template/en/default/global/help.html.tmpl
+%%WWWDIR%%/template/en/default/global/hidden-fields.html.tmpl
+%%WWWDIR%%/template/en/default/global/initialize.none.tmpl
+%%WWWDIR%%/template/en/default/global/js-products.html.tmpl
+%%WWWDIR%%/template/en/default/global/message.html.tmpl
+%%WWWDIR%%/template/en/default/global/message.txt.tmpl
+%%WWWDIR%%/template/en/default/global/messages.html.tmpl
+%%WWWDIR%%/template/en/default/global/per-bug-queries.html.tmpl
+%%WWWDIR%%/template/en/default/global/select-menu.html.tmpl
+%%WWWDIR%%/template/en/default/global/setting-descs.none.tmpl
+%%WWWDIR%%/template/en/default/global/site-navigation.html.tmpl
+%%WWWDIR%%/template/en/default/global/tabs.html.tmpl
+%%WWWDIR%%/template/en/default/global/textarea.html.tmpl
+%%WWWDIR%%/template/en/default/global/useful-links.html.tmpl
+%%WWWDIR%%/template/en/default/global/user-error.html.tmpl
+%%WWWDIR%%/template/en/default/global/user.html.tmpl
+%%WWWDIR%%/template/en/default/global/userselect.html.tmpl
+%%WWWDIR%%/template/en/default/global/variables.none.tmpl
+%%WWWDIR%%/template/en/default/index.html.tmpl
+%%WWWDIR%%/template/en/default/list/change-columns.html.tmpl
+%%WWWDIR%%/template/en/default/list/edit-multiple.html.tmpl
+%%WWWDIR%%/template/en/default/list/list-simple.html.tmpl
+%%WWWDIR%%/template/en/default/list/list.atom.tmpl
+%%WWWDIR%%/template/en/default/list/list.csv.tmpl
+%%WWWDIR%%/template/en/default/list/list.html.tmpl
+%%WWWDIR%%/template/en/default/list/list.ics.tmpl
+%%WWWDIR%%/template/en/default/list/list.js.tmpl
+%%WWWDIR%%/template/en/default/list/list.rdf.tmpl
+%%WWWDIR%%/template/en/default/list/quips.html.tmpl
+%%WWWDIR%%/template/en/default/list/server-push.html.tmpl
+%%WWWDIR%%/template/en/default/list/table.html.tmpl
+%%WWWDIR%%/template/en/default/pages/bug-writing.html.tmpl
+%%WWWDIR%%/template/en/default/pages/fields.html.tmpl
+%%WWWDIR%%/template/en/default/pages/linked.html.tmpl
+%%WWWDIR%%/template/en/default/pages/linkify.html.tmpl
+%%WWWDIR%%/template/en/default/pages/quicksearch.html.tmpl
+%%WWWDIR%%/template/en/default/pages/release-notes.html.tmpl
+%%WWWDIR%%/template/en/default/pages/sudo.html.tmpl
+%%WWWDIR%%/template/en/default/pages/voting.html.tmpl
+%%WWWDIR%%/template/en/default/reports/chart.csv.tmpl
+%%WWWDIR%%/template/en/default/reports/chart.html.tmpl
+%%WWWDIR%%/template/en/default/reports/chart.png.tmpl
+%%WWWDIR%%/template/en/default/reports/components.html.tmpl
+%%WWWDIR%%/template/en/default/reports/create-chart.html.tmpl
+%%WWWDIR%%/template/en/default/reports/delete-series.html.tmpl
+%%WWWDIR%%/template/en/default/reports/duplicates-simple.html.tmpl
+%%WWWDIR%%/template/en/default/reports/duplicates-table.html.tmpl
+%%WWWDIR%%/template/en/default/reports/duplicates.html.tmpl
+%%WWWDIR%%/template/en/default/reports/edit-series.html.tmpl
+%%WWWDIR%%/template/en/default/reports/keywords.html.tmpl
+%%WWWDIR%%/template/en/default/reports/menu.html.tmpl
+%%WWWDIR%%/template/en/default/reports/old-charts.html.tmpl
+%%WWWDIR%%/template/en/default/reports/report-bar.png.tmpl
+%%WWWDIR%%/template/en/default/reports/report-line.png.tmpl
+%%WWWDIR%%/template/en/default/reports/report-pie.png.tmpl
+%%WWWDIR%%/template/en/default/reports/report-simple.html.tmpl
+%%WWWDIR%%/template/en/default/reports/report-table.csv.tmpl
+%%WWWDIR%%/template/en/default/reports/report-table.html.tmpl
+%%WWWDIR%%/template/en/default/reports/report.csv.tmpl
+%%WWWDIR%%/template/en/default/reports/report.html.tmpl
+%%WWWDIR%%/template/en/default/reports/series-common.html.tmpl
+%%WWWDIR%%/template/en/default/reports/series.html.tmpl
+%%WWWDIR%%/template/en/default/request/email.txt.tmpl
+%%WWWDIR%%/template/en/default/request/queue.html.tmpl
+%%WWWDIR%%/template/en/default/search/boolean-charts.html.tmpl
+%%WWWDIR%%/template/en/default/search/form.html.tmpl
+%%WWWDIR%%/template/en/default/search/knob.html.tmpl
+%%WWWDIR%%/template/en/default/search/search-advanced.html.tmpl
+%%WWWDIR%%/template/en/default/search/search-create-series.html.tmpl
+%%WWWDIR%%/template/en/default/search/search-help.html.tmpl
+%%WWWDIR%%/template/en/default/search/search-plugin.xml.tmpl
+%%WWWDIR%%/template/en/default/search/search-report-graph.html.tmpl
+%%WWWDIR%%/template/en/default/search/search-report-select.html.tmpl
+%%WWWDIR%%/template/en/default/search/search-report-table.html.tmpl
+%%WWWDIR%%/template/en/default/search/search-specific.html.tmpl
+%%WWWDIR%%/template/en/default/search/tabs.html.tmpl
+%%WWWDIR%%/template/en/default/search/type-select.html.tmpl
+%%WWWDIR%%/template/en/default/setup/strings.txt.pl
+%%WWWDIR%%/template/en/default/sidebar.xul.tmpl
+%%WWWDIR%%/template/en/default/welcome-admin.html.tmpl
+%%WWWDIR%%/template/en/default/whine/mail.html.tmpl
+%%WWWDIR%%/template/en/default/whine/mail.txt.tmpl
+%%WWWDIR%%/template/en/default/whine/multipart-mime.txt.tmpl
+%%WWWDIR%%/template/en/default/whine/schedule.html.tmpl
+%%WWWDIR%%/testagent.cgi
+%%WWWDIR%%/testserver.pl
+%%WWWDIR%%/token.cgi
+%%WWWDIR%%/userprefs.cgi
+%%WWWDIR%%/votes.cgi
+%%WWWDIR%%/whine.pl
+%%WWWDIR%%/whineatnews.pl
+%%WWWDIR%%/xml.cgi
+%%WWWDIR%%/xmlrpc.cgi
+ at dirrm %%WWWDIR%%/template/en/default/whine
+ at dirrm %%WWWDIR%%/template/en/default/setup
+ at dirrm %%WWWDIR%%/template/en/default/search
+ at dirrm %%WWWDIR%%/template/en/default/request
+ at dirrm %%WWWDIR%%/template/en/default/reports
+ at dirrm %%WWWDIR%%/template/en/default/pages
+ at dirrm %%WWWDIR%%/template/en/default/list
+ at dirrm %%WWWDIR%%/template/en/default/global
+ at dirrm %%WWWDIR%%/template/en/default/flag
+ at dirrm %%WWWDIR%%/template/en/default/extensions
+ at dirrm %%WWWDIR%%/template/en/default/email
+ at dirrm %%WWWDIR%%/template/en/default/bug/votes
+ at dirrm %%WWWDIR%%/template/en/default/bug/process
+ at dirrm %%WWWDIR%%/template/en/default/bug/create
+ at dirrm %%WWWDIR%%/template/en/default/bug/activity
+ at dirrm %%WWWDIR%%/template/en/default/bug
+ at dirrm %%WWWDIR%%/template/en/default/attachment
+ at dirrm %%WWWDIR%%/template/en/default/admin/workflow
+ at dirrm %%WWWDIR%%/template/en/default/admin/versions
+ at dirrm %%WWWDIR%%/template/en/default/admin/users
+ at dirrm %%WWWDIR%%/template/en/default/admin/settings
+ at dirrm %%WWWDIR%%/template/en/default/admin/sanitycheck
+ at dirrm %%WWWDIR%%/template/en/default/admin/products/groupcontrol
+ at dirrm %%WWWDIR%%/template/en/default/admin/products
+ at dirrm %%WWWDIR%%/template/en/default/admin/params
+ at dirrm %%WWWDIR%%/template/en/default/admin/milestones
+ at dirrm %%WWWDIR%%/template/en/default/admin/keywords
+ at dirrm %%WWWDIR%%/template/en/default/admin/groups
+ at dirrm %%WWWDIR%%/template/en/default/admin/fieldvalues
+ at dirrm %%WWWDIR%%/template/en/default/admin/flag-type
+ at dirrm %%WWWDIR%%/template/en/default/admin/custom_fields
+ at dirrm %%WWWDIR%%/template/en/default/admin/components
+ at dirrm %%WWWDIR%%/template/en/default/admin/classifications
+ at dirrm %%WWWDIR%%/template/en/default/admin
+ at dirrm %%WWWDIR%%/template/en/default/account/prefs
+ at dirrm %%WWWDIR%%/template/en/default/account/password
+ at dirrm %%WWWDIR%%/template/en/default/account/email
+ at dirrm %%WWWDIR%%/template/en/default/account/auth
+ at dirrm %%WWWDIR%%/template/en/default/account
+ at dirrm %%WWWDIR%%/template/en/default
+ at dirrm %%WWWDIR%%/template/en
+ at dirrmtry %%WWWDIR%%/template
+%%CONTRIB%%@dirrm %%WWWDIR%%/contrib/cmdline
+%%CONTRIB%%@dirrm %%WWWDIR%%/contrib/bugzilla-submit
+%%CONTRIB%%@dirrm %%WWWDIR%%/contrib
+ at dirrm %%WWWDIR%%/Bugzilla/Whine
+ at dirrm %%WWWDIR%%/Bugzilla/WebService/Server
+ at dirrm %%WWWDIR%%/Bugzilla/WebService
+ at dirrm %%WWWDIR%%/Bugzilla/User/Setting
+ at dirrm %%WWWDIR%%/Bugzilla/User
+ at dirrm %%WWWDIR%%/Bugzilla/Template/Plugin
+ at dirrm %%WWWDIR%%/Bugzilla/Template
+ at dirrm %%WWWDIR%%/Bugzilla/Search
+ at dirrm %%WWWDIR%%/Bugzilla/Migrate
+ at dirrm %%WWWDIR%%/Bugzilla/JobQueue
+ at dirrm %%WWWDIR%%/Bugzilla/Job
+ at dirrm %%WWWDIR%%/Bugzilla/Install
+ at dirrm %%WWWDIR%%/Bugzilla/Field
+ at dirrm %%WWWDIR%%/Bugzilla/DB/Schema
+ at dirrm %%WWWDIR%%/Bugzilla/DB
+ at dirrm %%WWWDIR%%/Bugzilla/Config
+ at dirrm %%WWWDIR%%/Bugzilla/Auth/Verify
+ at dirrm %%WWWDIR%%/Bugzilla/Auth/Persist
+ at dirrm %%WWWDIR%%/Bugzilla/Auth/Login
+ at dirrm %%WWWDIR%%/Bugzilla/Auth
+ at dirrm %%WWWDIR%%/Bugzilla/Attachment
+ at dirrmtry %%WWWDIR%%/Bugzilla
+ at dirrmtry %%WWWDIR%%/data
+ at dirrmtry %%WWWDIR%%/graphs
+ at dirrm %%WWWDIR%%/images
+ at dirrm %%WWWDIR%%/js/yui
+ at dirrm %%WWWDIR%%/js
+ at dirrm %%WWWDIR%%/skins/standard/yui
+ at dirrm %%WWWDIR%%/skins/standard/index
+ at dirrm %%WWWDIR%%/skins/standard/global
+ at dirrm %%WWWDIR%%/skins/standard/dependency-tree
+ at dirrm %%WWWDIR%%/skins/standard
+ at dirrm %%WWWDIR%%/skins/contrib/Dusk/index
+ at dirrm %%WWWDIR%%/skins/contrib/Dusk
+ at dirrm %%WWWDIR%%/skins/contrib
+ at dirrm %%WWWDIR%%/skins
+ at dirrmtry %%WWWDIR%%
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTMLBatch
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTML
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple
Index: devel/bugzilla/files/pkg-message.in
===================================================================
RCS file: /home/ncvs/ports/devel/bugzilla/files/pkg-message.in,v
retrieving revision 1.1
diff -u -r1.1 pkg-message.in
--- devel/bugzilla/files/pkg-message.in	1 Feb 2010 16:53:26 -0000	1.1
+++ devel/bugzilla/files/pkg-message.in	10 Oct 2010 04:58:41 -0000
@@ -14,7 +14,7 @@
            owner; <host> is a host there bugzilla is being setup;
            <password> is a database owner's password;
 
-  2. Change working directory to %%BUGZILLADIR%%
+  2. Change working directory to %%WWWDIR%%
   3. Run "./checksetup.pl" script as root user
   4. Read output carefully and follow all instructions
 
@@ -25,7 +25,7 @@
 
 For upgrades:
   0. Back up your data.
-  1. Run "./checksetup.pl" inside %%BUGZILLADIR%%.  You may need to
+  1. Run "./checksetup.pl" inside %%WWWDIR%%.  You may need to
      run it several times.
   2. Restart your Web server, especially if you're using mod_perl: this
      will save you from a number of troubles.
Index: russian/bugzilla-ru/Makefile
===================================================================
RCS file: /home/ncvs/ports/russian/bugzilla-ru/Makefile,v
retrieving revision 1.11
diff -u -r1.11 Makefile
--- russian/bugzilla-ru/Makefile	23 Oct 2010 12:52:10 -0000	1.11
+++ russian/bugzilla-ru/Makefile	3 Nov 2010 09:57:14 -0000
@@ -5,10 +5,12 @@
 # $FreeBSD: ports/russian/bugzilla-ru/Makefile,v 1.11 2010/10/23 12:52:10 skv Exp $
 #
 
-PORTNAME=	bugzilla-ru
+PORTNAME=	bugzilla
 DISTVERSION=	3.6.2-ru-20100809
+PORTREVISION=	1
 CATEGORIES=	russian
 MASTER_SITES=	http://ftp.mozilla-russia.org/bugzilla/
+PKGNAMESUFFIX=	-ru
 DISTNAME=	bugzilla-${DISTVERSION}
 
 MAINTAINER=	skv at FreeBSD.org
@@ -16,30 +18,16 @@
 
 RUN_DEPENDS=	bugzilla>=3.6.2:${PORTSDIR}/devel/bugzilla
 
-CONFLICTS=	bugzilla-2.*
-
-PORTSCOUT=	limitw:1,even
-
-.ifndef BUGZILLADIR
-.ifdef APACHE_DATADIR
-BUGZILLADIR=	${APACHE_DATADIR}/data/bugzilla
-.else
-BUGZILLADIR=	${PREFIX}/www/data/bugzilla
-.endif
-.endif
-
-PLIST_SUB+=	BUGZILLADIR=${BUGZILLADIR:S!^${PREFIX}/!!}
-
-NO_BUILD=	yes
 NO_WRKSUBDIR=	yes
 
 do-install:
-	${MKDIR} ${BUGZILLADIR}
-	(cd ${WRKSRC} && ${PAX} -r -w * ${BUGZILLADIR})
+	${MKDIR} ${WWWDIR}
+	(cd ${WRKSRC} && ${PAX} -r -w * ${WWWDIR})
 .if !defined(BATCH)
 	@${ECHO_MSG}
 	@${CAT} ${PKGMESSAGE}
 	@${ECHO_MSG}
 .endif
 
+.include "${.CURDIR}/../../devel/bugzilla/Makefile.common"
 .include <bsd.port.mk>
Index: russian/bugzilla-ru/distinfo
===================================================================
RCS file: /home/ncvs/ports/russian/bugzilla-ru/distinfo,v
retrieving revision 1.5
diff -u -r1.5 distinfo
--- russian/bugzilla-ru/distinfo	23 Oct 2010 12:52:10 -0000	1.5
+++ russian/bugzilla-ru/distinfo	3 Nov 2010 09:50:53 -0000
@@ -1,3 +1,2 @@
-MD5 (bugzilla-3.6.2-ru-20100809.tar.gz) = 782df36cab17235a7fa49d4d127dd304
 SHA256 (bugzilla-3.6.2-ru-20100809.tar.gz) = b337e4c17b3cb38d511d41d042a4b48c7159b7f093d5199371d35ff97e6fa04a
 SIZE (bugzilla-3.6.2-ru-20100809.tar.gz) = 318311
Index: russian/bugzilla-ru/pkg-plist
===================================================================
RCS file: /home/ncvs/ports/russian/bugzilla-ru/pkg-plist,v
retrieving revision 1.4
diff -u -r1.4 pkg-plist
--- russian/bugzilla-ru/pkg-plist	23 Oct 2010 12:52:10 -0000	1.4
+++ russian/bugzilla-ru/pkg-plist	28 Oct 2010 21:01:55 -0000
@@ -1,286 +1,286 @@
-%%BUGZILLADIR%%/README-ru.en
-%%BUGZILLADIR%%/README-ru.ru.UTF-8
-%%BUGZILLADIR%%/help/ru/glossary.html
-%%BUGZILLADIR%%/template/ru/default/account/auth/login-small.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/auth/login.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/cancel-token.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/created.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/email/change-new.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/email/change-old.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/email/confirm-new.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/email/confirm.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/email/request-new.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/password/forgotten-password.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/password/set-forgotten-password.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/prefs/account.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/prefs/email.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/prefs/permissions.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/prefs/prefs.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/prefs/saved-searches.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/prefs/settings.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/account/profile-activity.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/admin.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/classifications/add.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/classifications/del.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/classifications/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/classifications/footer.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/classifications/reclassify.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/classifications/select.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/components/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/components/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/components/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/components/footer.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/components/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/components/select-product.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/confirm-action.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/custom_fields/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/custom_fields/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/custom_fields/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/custom_fields/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/fieldvalues/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/fieldvalues/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/fieldvalues/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/fieldvalues/footer.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/fieldvalues/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/fieldvalues/select-field.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/flag-type/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/flag-type/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/flag-type/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/groups/confirm-remove.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/groups/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/groups/delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/groups/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/groups/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/keywords/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/keywords/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/keywords/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/keywords/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/milestones/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/milestones/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/milestones/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/milestones/footer.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/milestones/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/milestones/select-product.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/admin.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/advanced.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/attachment.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/auth.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/bugchange.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/bugfields.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/bugmove.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/choice-descs.none.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/common.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/core.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/dependencygraph.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/editparams.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/general.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/groupsecurity.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/index.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/ldap.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/mta.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/patchviewer.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/query.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/radius.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/shadowdb.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/params/usermatch.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/edit-common.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/footer.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/groupcontrol/confirm-edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/groupcontrol/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/groupcontrol/updated.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/list-classifications.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/products/updated.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/sanitycheck/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/sanitycheck/messages.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/settings/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/sudo.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/table.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/users/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/users/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/users/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/users/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/users/responsibilities.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/users/search.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/users/userdata.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/versions/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/versions/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/versions/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/versions/footer.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/versions/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/versions/select-product.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/workflow/comment.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/admin/workflow/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/cancel-create-dupe.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/choose.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/content-types.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/created.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/createformcontents.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/delete_reason.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/diff-file.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/diff-header.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/midair.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/show-multiple.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/attachment/updated.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/activity/show.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/activity/table.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/choose.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/comments.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/create/comment-guided.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/create/confirm-create-dupe.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/create/create-guided.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/create/create.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/create/created.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/create/make-template.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/create/user-message.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/dependency-graph.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/dependency-tree.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/edit.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/field.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/format_comment.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/knob.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/navigate.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/process/bugmail.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/process/confirm-duplicate.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/process/header.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/process/midair.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/process/results.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/process/verify-new-product.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/show-multiple.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/show.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/summarize-time.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/votes/delete-all.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/votes/list-for-bug.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/bug/votes/list-for-user.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/email/newchangedmail.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/email/sanitycheck.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/email/sudo.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/email/votes-removed.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/email/whine.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/filterexceptions.pl
-%%BUGZILLADIR%%/template/ru/default/flag/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/choose-classification.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/choose-product.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/code-error.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/common-links.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/confirm-action.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/confirm-user-match.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/docslinks.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/field-descs.none.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/header.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/hidden-fields.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/message.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/messages.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/per-bug-queries.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/setting-descs.none.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/site-navigation.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/useful-links.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/user-error.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/global/variables.none.tmpl
-%%BUGZILLADIR%%/template/ru/default/index.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/list/change-columns.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/list/edit-multiple.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/list/list-simple.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/list/list.atom.tmpl
-%%BUGZILLADIR%%/template/ru/default/list/list.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/list/quips.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/list/server-push.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/list/table.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/pages/bug-writing.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/pages/fields.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/pages/linked.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/pages/linkify.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/pages/quicksearch.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/pages/release-notes.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/pages/sudo.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/pages/voting.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/chart.csv.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/chart.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/chart.png.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/components.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/create-chart.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/delete-series.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/duplicates-simple.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/duplicates-table.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/duplicates.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/edit-series.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/keywords.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/menu.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/old-charts.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/report-simple.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/report-table.csv.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/report-table.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/report.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/reports/series.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/request/email.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/request/queue.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/boolean-charts.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/form.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/knob.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/search-advanced.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/search-create-series.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/search-help.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/search-plugin.xml.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/search-report-graph.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/search-report-select.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/search-report-table.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/search-specific.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/search/tabs.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/setup/strings.txt.pl
-%%BUGZILLADIR%%/template/ru/default/sidebar.xul.tmpl
-%%BUGZILLADIR%%/template/ru/default/welcome-admin.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/whine/mail.html.tmpl
-%%BUGZILLADIR%%/template/ru/default/whine/mail.txt.tmpl
-%%BUGZILLADIR%%/template/ru/default/whine/schedule.html.tmpl
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/whine
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/setup
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/search
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/request
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/reports
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/pages
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/list
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/global
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/flag
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/email
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/bug/votes
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/bug/process
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/bug/create
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/bug/activity
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/bug
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/attachment
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/workflow
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/versions
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/users
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/settings
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/sanitycheck
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/products/groupcontrol
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/products
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/params
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/milestones
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/keywords
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/groups
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/flag-type
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/fieldvalues
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/custom_fields
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/components
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin/classifications
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/admin
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/account/prefs
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/account/password
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/account/email
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/account/auth
- at dirrmtry %%BUGZILLADIR%%/template/ru/default/account
- at dirrmtry %%BUGZILLADIR%%/template/ru/default
- at dirrmtry %%BUGZILLADIR%%/template/ru
- at dirrmtry %%BUGZILLADIR%%/template
- at dirrmtry %%BUGZILLADIR%%/help/ru
- at dirrmtry %%BUGZILLADIR%%/help
- at dirrmtry %%BUGZILLADIR%%
+%%WWWDIR%%/README-ru.en
+%%WWWDIR%%/README-ru.ru.UTF-8
+%%WWWDIR%%/help/ru/glossary.html
+%%WWWDIR%%/template/ru/default/account/auth/login-small.html.tmpl
+%%WWWDIR%%/template/ru/default/account/auth/login.html.tmpl
+%%WWWDIR%%/template/ru/default/account/cancel-token.txt.tmpl
+%%WWWDIR%%/template/ru/default/account/create.html.tmpl
+%%WWWDIR%%/template/ru/default/account/created.html.tmpl
+%%WWWDIR%%/template/ru/default/account/email/change-new.txt.tmpl
+%%WWWDIR%%/template/ru/default/account/email/change-old.txt.tmpl
+%%WWWDIR%%/template/ru/default/account/email/confirm-new.html.tmpl
+%%WWWDIR%%/template/ru/default/account/email/confirm.html.tmpl
+%%WWWDIR%%/template/ru/default/account/email/request-new.txt.tmpl
+%%WWWDIR%%/template/ru/default/account/password/forgotten-password.txt.tmpl
+%%WWWDIR%%/template/ru/default/account/password/set-forgotten-password.html.tmpl
+%%WWWDIR%%/template/ru/default/account/prefs/account.html.tmpl
+%%WWWDIR%%/template/ru/default/account/prefs/email.html.tmpl
+%%WWWDIR%%/template/ru/default/account/prefs/permissions.html.tmpl
+%%WWWDIR%%/template/ru/default/account/prefs/prefs.html.tmpl
+%%WWWDIR%%/template/ru/default/account/prefs/saved-searches.html.tmpl
+%%WWWDIR%%/template/ru/default/account/prefs/settings.html.tmpl
+%%WWWDIR%%/template/ru/default/account/profile-activity.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/admin.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/classifications/add.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/classifications/del.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/classifications/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/classifications/footer.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/classifications/reclassify.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/classifications/select.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/components/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/components/create.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/components/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/components/footer.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/components/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/components/select-product.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/confirm-action.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/custom_fields/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/custom_fields/create.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/custom_fields/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/custom_fields/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/fieldvalues/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/fieldvalues/create.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/fieldvalues/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/fieldvalues/footer.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/fieldvalues/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/fieldvalues/select-field.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/flag-type/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/flag-type/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/flag-type/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/groups/confirm-remove.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/groups/create.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/groups/delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/groups/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/groups/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/keywords/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/keywords/create.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/keywords/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/keywords/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/milestones/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/milestones/create.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/milestones/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/milestones/footer.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/milestones/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/milestones/select-product.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/admin.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/advanced.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/attachment.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/auth.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/bugchange.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/bugfields.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/bugmove.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/choice-descs.none.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/common.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/core.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/dependencygraph.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/editparams.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/general.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/groupsecurity.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/index.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/ldap.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/mta.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/patchviewer.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/query.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/radius.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/shadowdb.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/params/usermatch.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/create.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/edit-common.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/footer.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/groupcontrol/confirm-edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/groupcontrol/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/groupcontrol/updated.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/list-classifications.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/products/updated.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/sanitycheck/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/sanitycheck/messages.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/settings/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/sudo.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/table.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/users/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/users/create.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/users/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/users/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/users/responsibilities.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/users/search.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/users/userdata.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/versions/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/versions/create.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/versions/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/versions/footer.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/versions/list.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/versions/select-product.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/workflow/comment.html.tmpl
+%%WWWDIR%%/template/ru/default/admin/workflow/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/cancel-create-dupe.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/choose.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/content-types.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/create.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/created.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/createformcontents.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/delete_reason.txt.tmpl
+%%WWWDIR%%/template/ru/default/attachment/diff-file.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/diff-header.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/list.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/midair.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/show-multiple.html.tmpl
+%%WWWDIR%%/template/ru/default/attachment/updated.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/activity/show.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/activity/table.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/choose.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/comments.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/create/comment-guided.txt.tmpl
+%%WWWDIR%%/template/ru/default/bug/create/confirm-create-dupe.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/create/create-guided.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/create/create.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/create/created.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/create/make-template.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/create/user-message.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/dependency-graph.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/dependency-tree.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/edit.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/field.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/format_comment.txt.tmpl
+%%WWWDIR%%/template/ru/default/bug/knob.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/navigate.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/process/bugmail.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/process/confirm-duplicate.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/process/header.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/process/midair.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/process/results.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/process/verify-new-product.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/show-multiple.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/show.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/summarize-time.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/votes/delete-all.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/votes/list-for-bug.html.tmpl
+%%WWWDIR%%/template/ru/default/bug/votes/list-for-user.html.tmpl
+%%WWWDIR%%/template/ru/default/email/newchangedmail.txt.tmpl
+%%WWWDIR%%/template/ru/default/email/sanitycheck.txt.tmpl
+%%WWWDIR%%/template/ru/default/email/sudo.txt.tmpl
+%%WWWDIR%%/template/ru/default/email/votes-removed.txt.tmpl
+%%WWWDIR%%/template/ru/default/email/whine.txt.tmpl
+%%WWWDIR%%/template/ru/default/filterexceptions.pl
+%%WWWDIR%%/template/ru/default/flag/list.html.tmpl
+%%WWWDIR%%/template/ru/default/global/choose-classification.html.tmpl
+%%WWWDIR%%/template/ru/default/global/choose-product.html.tmpl
+%%WWWDIR%%/template/ru/default/global/code-error.html.tmpl
+%%WWWDIR%%/template/ru/default/global/common-links.html.tmpl
+%%WWWDIR%%/template/ru/default/global/confirm-action.html.tmpl
+%%WWWDIR%%/template/ru/default/global/confirm-user-match.html.tmpl
+%%WWWDIR%%/template/ru/default/global/docslinks.html.tmpl
+%%WWWDIR%%/template/ru/default/global/field-descs.none.tmpl
+%%WWWDIR%%/template/ru/default/global/header.html.tmpl
+%%WWWDIR%%/template/ru/default/global/hidden-fields.html.tmpl
+%%WWWDIR%%/template/ru/default/global/message.html.tmpl
+%%WWWDIR%%/template/ru/default/global/messages.html.tmpl
+%%WWWDIR%%/template/ru/default/global/per-bug-queries.html.tmpl
+%%WWWDIR%%/template/ru/default/global/setting-descs.none.tmpl
+%%WWWDIR%%/template/ru/default/global/site-navigation.html.tmpl
+%%WWWDIR%%/template/ru/default/global/useful-links.html.tmpl
+%%WWWDIR%%/template/ru/default/global/user-error.html.tmpl
+%%WWWDIR%%/template/ru/default/global/variables.none.tmpl
+%%WWWDIR%%/template/ru/default/index.html.tmpl
+%%WWWDIR%%/template/ru/default/list/change-columns.html.tmpl
+%%WWWDIR%%/template/ru/default/list/edit-multiple.html.tmpl
+%%WWWDIR%%/template/ru/default/list/list-simple.html.tmpl
+%%WWWDIR%%/template/ru/default/list/list.atom.tmpl
+%%WWWDIR%%/template/ru/default/list/list.html.tmpl
+%%WWWDIR%%/template/ru/default/list/quips.html.tmpl
+%%WWWDIR%%/template/ru/default/list/server-push.html.tmpl
+%%WWWDIR%%/template/ru/default/list/table.html.tmpl
+%%WWWDIR%%/template/ru/default/pages/bug-writing.html.tmpl
+%%WWWDIR%%/template/ru/default/pages/fields.html.tmpl
+%%WWWDIR%%/template/ru/default/pages/linked.html.tmpl
+%%WWWDIR%%/template/ru/default/pages/linkify.html.tmpl
+%%WWWDIR%%/template/ru/default/pages/quicksearch.html.tmpl
+%%WWWDIR%%/template/ru/default/pages/release-notes.html.tmpl
+%%WWWDIR%%/template/ru/default/pages/sudo.html.tmpl
+%%WWWDIR%%/template/ru/default/pages/voting.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/chart.csv.tmpl
+%%WWWDIR%%/template/ru/default/reports/chart.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/chart.png.tmpl
+%%WWWDIR%%/template/ru/default/reports/components.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/create-chart.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/delete-series.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/duplicates-simple.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/duplicates-table.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/duplicates.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/edit-series.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/keywords.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/menu.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/old-charts.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/report-simple.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/report-table.csv.tmpl
+%%WWWDIR%%/template/ru/default/reports/report-table.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/report.html.tmpl
+%%WWWDIR%%/template/ru/default/reports/series.html.tmpl
+%%WWWDIR%%/template/ru/default/request/email.txt.tmpl
+%%WWWDIR%%/template/ru/default/request/queue.html.tmpl
+%%WWWDIR%%/template/ru/default/search/boolean-charts.html.tmpl
+%%WWWDIR%%/template/ru/default/search/form.html.tmpl
+%%WWWDIR%%/template/ru/default/search/knob.html.tmpl
+%%WWWDIR%%/template/ru/default/search/search-advanced.html.tmpl
+%%WWWDIR%%/template/ru/default/search/search-create-series.html.tmpl
+%%WWWDIR%%/template/ru/default/search/search-help.html.tmpl
+%%WWWDIR%%/template/ru/default/search/search-plugin.xml.tmpl
+%%WWWDIR%%/template/ru/default/search/search-report-graph.html.tmpl
+%%WWWDIR%%/template/ru/default/search/search-report-select.html.tmpl
+%%WWWDIR%%/template/ru/default/search/search-report-table.html.tmpl
+%%WWWDIR%%/template/ru/default/search/search-specific.html.tmpl
+%%WWWDIR%%/template/ru/default/search/tabs.html.tmpl
+%%WWWDIR%%/template/ru/default/setup/strings.txt.pl
+%%WWWDIR%%/template/ru/default/sidebar.xul.tmpl
+%%WWWDIR%%/template/ru/default/welcome-admin.html.tmpl
+%%WWWDIR%%/template/ru/default/whine/mail.html.tmpl
+%%WWWDIR%%/template/ru/default/whine/mail.txt.tmpl
+%%WWWDIR%%/template/ru/default/whine/schedule.html.tmpl
+ at dirrmtry %%WWWDIR%%/template/ru/default/whine
+ at dirrmtry %%WWWDIR%%/template/ru/default/setup
+ at dirrmtry %%WWWDIR%%/template/ru/default/search
+ at dirrmtry %%WWWDIR%%/template/ru/default/request
+ at dirrmtry %%WWWDIR%%/template/ru/default/reports
+ at dirrmtry %%WWWDIR%%/template/ru/default/pages
+ at dirrmtry %%WWWDIR%%/template/ru/default/list
+ at dirrmtry %%WWWDIR%%/template/ru/default/global
+ at dirrmtry %%WWWDIR%%/template/ru/default/flag
+ at dirrmtry %%WWWDIR%%/template/ru/default/email
+ at dirrmtry %%WWWDIR%%/template/ru/default/bug/votes
+ at dirrmtry %%WWWDIR%%/template/ru/default/bug/process
+ at dirrmtry %%WWWDIR%%/template/ru/default/bug/create
+ at dirrmtry %%WWWDIR%%/template/ru/default/bug/activity
+ at dirrmtry %%WWWDIR%%/template/ru/default/bug
+ at dirrmtry %%WWWDIR%%/template/ru/default/attachment
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/workflow
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/versions
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/users
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/settings
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/sanitycheck
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/products/groupcontrol
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/products
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/params
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/milestones
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/keywords
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/groups
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/flag-type
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/fieldvalues
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/custom_fields
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/components
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin/classifications
+ at dirrmtry %%WWWDIR%%/template/ru/default/admin
+ at dirrmtry %%WWWDIR%%/template/ru/default/account/prefs
+ at dirrmtry %%WWWDIR%%/template/ru/default/account/password
+ at dirrmtry %%WWWDIR%%/template/ru/default/account/email
+ at dirrmtry %%WWWDIR%%/template/ru/default/account/auth
+ at dirrmtry %%WWWDIR%%/template/ru/default/account
+ at dirrmtry %%WWWDIR%%/template/ru/default
+ at dirrmtry %%WWWDIR%%/template/ru
+ at dirrmtry %%WWWDIR%%/template
+ at dirrmtry %%WWWDIR%%/help/ru
+ at dirrmtry %%WWWDIR%%/help
+ at dirrmtry %%WWWDIR%%
Index: japanese/bugzilla/Makefile
===================================================================
RCS file: /home/ncvs/ports/japanese/bugzilla/Makefile,v
retrieving revision 1.16
diff -u -r1.16 Makefile
--- japanese/bugzilla/Makefile	6 Sep 2010 12:58:48 -0000	1.16
+++ japanese/bugzilla/Makefile	10 Oct 2010 05:41:34 -0000
@@ -7,6 +7,7 @@
 
 PORTNAME=	bugzilla
 PORTVERSION=	3.6.2
+PORTREVISION=	1
 CATEGORIES=	japanese
 MASTER_SITES=	http://bug-ja.org/releases/3.6/ \
 		${MASTER_SITE_LOCAL:S|%SUBDIR%|tota/bugzilla-ja|}
@@ -20,30 +21,16 @@
 
 USE_BZIP2=	yes
 
-CONFLICTS=	bugzilla-2.*
-
-PORTSCOUT=	limitw:1,even
-
-.if !defined(BUGZILLADIR)
-.if defined(APACHE_DATADIR)
-BUGZILLADIR=	${APACHE_DATADIR}/data/bugzilla
-.else
-BUGZILLADIR=	${PREFIX}/www/data/bugzilla
-.endif
-.endif
-
-PLIST_SUB+=	BUGZILLADIR=${BUGZILLADIR:S!^${PREFIX}/!!}
-
-NO_BUILD=	yes
-LANGDIR=	${BUGZILLADIR}/template/ja
+LANGDIR=	${WWWDIR}/template/ja
 
 do-install:
-	-${MKDIR} ${LANGDIR}
-	cd ${WRKDIR}/ja-${PORTVERSION}; ${COPYTREE_SHARE} . ${LANGDIR}
+	@-${MKDIR} ${LANGDIR}
+	@cd ${WRKDIR}/ja-${PORTVERSION}; ${COPYTREE_SHARE} . ${LANGDIR}
 .if !defined(BATCH)
 	@${ECHO_MSG}
 	@${CAT} ${PKGMESSAGE}
 	@${ECHO_MSG}
 .endif
 
+.include "${.CURDIR}/../../devel/bugzilla/Makefile.common"
 .include <bsd.port.mk>
Index: japanese/bugzilla/distinfo
===================================================================
RCS file: /home/ncvs/ports/japanese/bugzilla/distinfo,v
retrieving revision 1.10
diff -u -r1.10 distinfo
--- japanese/bugzilla/distinfo	6 Sep 2010 12:58:48 -0000	1.10
+++ japanese/bugzilla/distinfo	3 Nov 2010 09:58:03 -0000
@@ -1,3 +1,2 @@
-MD5 (Bugzilla-ja-3.6.2-template-rel01.tar.bz2) = c7d2a41d0fb23c536b030700de159f7b
 SHA256 (Bugzilla-ja-3.6.2-template-rel01.tar.bz2) = 424e99f4fba5a3f0fdc1ccbdd33d2f8659628f7258c4d0568c7edf9de9eb6e58
 SIZE (Bugzilla-ja-3.6.2-template-rel01.tar.bz2) = 213994
Index: japanese/bugzilla/pkg-plist
===================================================================
RCS file: /home/ncvs/ports/japanese/bugzilla/pkg-plist,v
retrieving revision 1.7
diff -u -r1.7 pkg-plist
--- japanese/bugzilla/pkg-plist	18 Apr 2010 08:57:51 -0000	1.7
+++ japanese/bugzilla/pkg-plist	10 Oct 2010 05:16:26 -0000
@@ -1,321 +1,321 @@
-%%BUGZILLADIR%%/template/ja/default/account/auth/login-small.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/auth/login.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/cancel-token.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/created.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/email/change-new.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/email/change-old.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/email/confirm-new.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/email/confirm.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/email/request-new.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/password/forgotten-password.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/password/set-forgotten-password.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/prefs/account.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/prefs/email.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/prefs/permissions.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/prefs/prefs.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/prefs/saved-searches.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/prefs/settings.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/account/profile-activity.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/admin.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/classifications/add.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/classifications/del.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/classifications/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/classifications/footer.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/classifications/reclassify.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/classifications/select.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/components/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/components/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/components/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/components/footer.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/components/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/components/select-product.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/confirm-action.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/custom_fields/cf-js.js.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/custom_fields/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/custom_fields/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/custom_fields/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/custom_fields/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/fieldvalues/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/fieldvalues/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/fieldvalues/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/fieldvalues/footer.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/fieldvalues/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/fieldvalues/select-field.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/flag-type/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/flag-type/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/flag-type/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/groups/confirm-remove.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/groups/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/groups/delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/groups/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/groups/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/keywords/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/keywords/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/keywords/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/keywords/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/milestones/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/milestones/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/milestones/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/milestones/footer.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/milestones/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/milestones/select-product.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/admin.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/attachment.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/auth.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/advanced.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/bugchange.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/bugfields.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/bugmove.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/common.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/core.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/dependencygraph.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/editparams.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/general.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/groupsecurity.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/index.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/ldap.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/mta.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/patchviewer.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/query.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/radius.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/shadowdb.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/params/usermatch.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/edit-common.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/footer.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/groupcontrol/confirm-edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/groupcontrol/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/groupcontrol/updated.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/list-classifications.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/products/updated.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/sanitycheck/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/sanitycheck/messages.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/settings/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/sudo.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/table.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/users/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/users/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/users/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/users/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/users/listselectvars.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/users/responsibilities.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/users/search.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/users/userdata.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/versions/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/versions/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/versions/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/versions/footer.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/versions/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/versions/select-product.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/workflow/comment.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/admin/workflow/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/cancel-create-dupe.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/choose.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/confirm-delete.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/content-types.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/created.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/createformcontents.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/delete_reason.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/diff-file.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/diff-footer.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/diff-header.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/midair.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/show-multiple.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/attachment/updated.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/activity/show.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/activity/table.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/choose.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/comments.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/create/comment-guided.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/create/comment.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/create/confirm-create-dupe.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/create/create-guided.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/create/create.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/create/created.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/create/make-template.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/create/user-message.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/dependency-graph.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/dependency-tree.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/edit.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/field-events.js.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/field.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/format_comment.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/knob.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/navigate.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/process/bugmail.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/process/confirm-duplicate.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/process/header.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/process/midair.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/process/results.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/process/verify-new-product.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/show-header.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/show-multiple.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/show.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/show.xml.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/summarize-time.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/time.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/votes/delete-all.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/votes/list-for-bug.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/bug/votes/list-for-user.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/config.js.tmpl
-%%BUGZILLADIR%%/template/ja/default/config.rdf.tmpl
-%%BUGZILLADIR%%/template/ja/default/email/lockout.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/email/newchangedmail.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/email/sanitycheck.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/email/sudo.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/email/votes-removed.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/email/whine.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/extensions/config.pm.tmpl
-%%BUGZILLADIR%%/template/ja/default/extensions/extension.pm.tmpl
-%%BUGZILLADIR%%/template/ja/default/extensions/hook-readme.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/extensions/license.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/extensions/name-readme.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/extensions/util.pm.tmpl
-%%BUGZILLADIR%%/template/ja/default/filterexceptions.pl
-%%BUGZILLADIR%%/template/ja/default/flag/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/banner.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/choose-classification.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/choose-product.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/code-error.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/common-links.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/confirm-action.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/confirm-user-match.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/docslinks.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/field-descs.none.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/footer.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/header.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/help.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/hidden-fields.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/initialize.none.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/js-products.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/message.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/message.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/messages.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/per-bug-queries.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/select-menu.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/setting-descs.none.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/site-navigation.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/tabs.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/textarea.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/useful-links.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/user-error.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/user.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/userselect.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/global/variables.none.tmpl
-%%BUGZILLADIR%%/template/ja/default/index.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/change-columns.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/edit-multiple.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/list-simple.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/list.atom.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/list.csv.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/list.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/list.ics.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/list.js.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/list.rdf.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/quips.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/server-push.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/list/table.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/pages/bug-writing.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/pages/fields.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/pages/linked.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/pages/linkify.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/pages/quicksearch.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/pages/release-notes.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/pages/sudo.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/pages/voting.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/chart.csv.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/chart.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/chart.png.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/components.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/create-chart.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/delete-series.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/duplicates-simple.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/duplicates-table.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/duplicates.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/edit-series.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/keywords.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/menu.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/old-charts.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/report-bar.png.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/report-line.png.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/report-pie.png.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/report-simple.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/report-table.csv.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/report-table.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/report.csv.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/report.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/series-common.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/reports/series.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/request/email.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/request/queue.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/boolean-charts.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/form.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/knob.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/search-advanced.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/search-create-series.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/search-help.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/search-plugin.xml.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/search-report-graph.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/search-report-select.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/search-report-table.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/search-specific.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/tabs.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/search/type-select.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/setup/strings.txt.pl
-%%BUGZILLADIR%%/template/ja/default/sidebar.xul.tmpl
-%%BUGZILLADIR%%/template/ja/default/welcome-admin.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/whine/mail.html.tmpl
-%%BUGZILLADIR%%/template/ja/default/whine/mail.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/whine/multipart-mime.txt.tmpl
-%%BUGZILLADIR%%/template/ja/default/whine/schedule.html.tmpl
- at dirrmtry %%BUGZILLADIR%%/template/ja/extension
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/whine
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/setup
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/search
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/request
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/reports
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/pages
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/list
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/global
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/flag
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/extensions
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/email
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/bug/votes
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/bug/process
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/bug/create
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/bug/activity
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/bug
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/attachment
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/workflow
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/versions
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/users
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/settings
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/sanitycheck
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/products/groupcontrol
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/products
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/params
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/milestones
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/keywords
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/groups
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/flag-type
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/fieldvalues
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/custom_fields
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/components
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin/classifications
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/admin
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/account/prefs
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/account/password
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/account/email
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/account/auth
- at dirrmtry %%BUGZILLADIR%%/template/ja/default/account
- at dirrmtry %%BUGZILLADIR%%/template/ja/default
- at dirrmtry %%BUGZILLADIR%%/template/ja
- at dirrmtry %%BUGZILLADIR%%/template
- at dirrmtry %%BUGZILLADIR%%
+%%WWWDIR%%/template/ja/default/account/auth/login-small.html.tmpl
+%%WWWDIR%%/template/ja/default/account/auth/login.html.tmpl
+%%WWWDIR%%/template/ja/default/account/cancel-token.txt.tmpl
+%%WWWDIR%%/template/ja/default/account/create.html.tmpl
+%%WWWDIR%%/template/ja/default/account/created.html.tmpl
+%%WWWDIR%%/template/ja/default/account/email/change-new.txt.tmpl
+%%WWWDIR%%/template/ja/default/account/email/change-old.txt.tmpl
+%%WWWDIR%%/template/ja/default/account/email/confirm-new.html.tmpl
+%%WWWDIR%%/template/ja/default/account/email/confirm.html.tmpl
+%%WWWDIR%%/template/ja/default/account/email/request-new.txt.tmpl
+%%WWWDIR%%/template/ja/default/account/password/forgotten-password.txt.tmpl
+%%WWWDIR%%/template/ja/default/account/password/set-forgotten-password.html.tmpl
+%%WWWDIR%%/template/ja/default/account/prefs/account.html.tmpl
+%%WWWDIR%%/template/ja/default/account/prefs/email.html.tmpl
+%%WWWDIR%%/template/ja/default/account/prefs/permissions.html.tmpl
+%%WWWDIR%%/template/ja/default/account/prefs/prefs.html.tmpl
+%%WWWDIR%%/template/ja/default/account/prefs/saved-searches.html.tmpl
+%%WWWDIR%%/template/ja/default/account/prefs/settings.html.tmpl
+%%WWWDIR%%/template/ja/default/account/profile-activity.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/admin.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/classifications/add.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/classifications/del.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/classifications/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/classifications/footer.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/classifications/reclassify.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/classifications/select.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/components/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/components/create.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/components/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/components/footer.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/components/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/components/select-product.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/confirm-action.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/custom_fields/cf-js.js.tmpl
+%%WWWDIR%%/template/ja/default/admin/custom_fields/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/custom_fields/create.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/custom_fields/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/custom_fields/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/fieldvalues/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/fieldvalues/create.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/fieldvalues/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/fieldvalues/footer.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/fieldvalues/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/fieldvalues/select-field.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/flag-type/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/flag-type/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/flag-type/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/groups/confirm-remove.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/groups/create.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/groups/delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/groups/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/groups/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/keywords/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/keywords/create.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/keywords/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/keywords/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/milestones/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/milestones/create.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/milestones/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/milestones/footer.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/milestones/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/milestones/select-product.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/admin.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/attachment.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/auth.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/advanced.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/bugchange.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/bugfields.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/bugmove.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/common.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/core.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/dependencygraph.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/editparams.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/general.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/groupsecurity.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/index.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/ldap.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/mta.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/patchviewer.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/query.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/radius.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/shadowdb.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/params/usermatch.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/create.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/edit-common.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/footer.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/groupcontrol/confirm-edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/groupcontrol/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/groupcontrol/updated.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/list-classifications.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/products/updated.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/sanitycheck/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/sanitycheck/messages.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/settings/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/sudo.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/table.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/users/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/users/create.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/users/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/users/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/users/listselectvars.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/users/responsibilities.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/users/search.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/users/userdata.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/versions/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/versions/create.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/versions/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/versions/footer.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/versions/list.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/versions/select-product.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/workflow/comment.html.tmpl
+%%WWWDIR%%/template/ja/default/admin/workflow/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/cancel-create-dupe.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/choose.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/confirm-delete.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/content-types.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/create.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/created.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/createformcontents.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/delete_reason.txt.tmpl
+%%WWWDIR%%/template/ja/default/attachment/diff-file.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/diff-footer.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/diff-header.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/list.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/midair.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/show-multiple.html.tmpl
+%%WWWDIR%%/template/ja/default/attachment/updated.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/activity/show.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/activity/table.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/choose.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/comments.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/create/comment-guided.txt.tmpl
+%%WWWDIR%%/template/ja/default/bug/create/comment.txt.tmpl
+%%WWWDIR%%/template/ja/default/bug/create/confirm-create-dupe.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/create/create-guided.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/create/create.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/create/created.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/create/make-template.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/create/user-message.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/dependency-graph.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/dependency-tree.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/edit.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/field-events.js.tmpl
+%%WWWDIR%%/template/ja/default/bug/field.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/format_comment.txt.tmpl
+%%WWWDIR%%/template/ja/default/bug/knob.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/navigate.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/process/bugmail.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/process/confirm-duplicate.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/process/header.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/process/midair.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/process/results.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/process/verify-new-product.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/show-header.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/show-multiple.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/show.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/show.xml.tmpl
+%%WWWDIR%%/template/ja/default/bug/summarize-time.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/time.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/votes/delete-all.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/votes/list-for-bug.html.tmpl
+%%WWWDIR%%/template/ja/default/bug/votes/list-for-user.html.tmpl
+%%WWWDIR%%/template/ja/default/config.js.tmpl
+%%WWWDIR%%/template/ja/default/config.rdf.tmpl
+%%WWWDIR%%/template/ja/default/email/lockout.txt.tmpl
+%%WWWDIR%%/template/ja/default/email/newchangedmail.txt.tmpl
+%%WWWDIR%%/template/ja/default/email/sanitycheck.txt.tmpl
+%%WWWDIR%%/template/ja/default/email/sudo.txt.tmpl
+%%WWWDIR%%/template/ja/default/email/votes-removed.txt.tmpl
+%%WWWDIR%%/template/ja/default/email/whine.txt.tmpl
+%%WWWDIR%%/template/ja/default/extensions/config.pm.tmpl
+%%WWWDIR%%/template/ja/default/extensions/extension.pm.tmpl
+%%WWWDIR%%/template/ja/default/extensions/hook-readme.txt.tmpl
+%%WWWDIR%%/template/ja/default/extensions/license.txt.tmpl
+%%WWWDIR%%/template/ja/default/extensions/name-readme.txt.tmpl
+%%WWWDIR%%/template/ja/default/extensions/util.pm.tmpl
+%%WWWDIR%%/template/ja/default/filterexceptions.pl
+%%WWWDIR%%/template/ja/default/flag/list.html.tmpl
+%%WWWDIR%%/template/ja/default/global/banner.html.tmpl
+%%WWWDIR%%/template/ja/default/global/choose-classification.html.tmpl
+%%WWWDIR%%/template/ja/default/global/choose-product.html.tmpl
+%%WWWDIR%%/template/ja/default/global/code-error.html.tmpl
+%%WWWDIR%%/template/ja/default/global/common-links.html.tmpl
+%%WWWDIR%%/template/ja/default/global/confirm-action.html.tmpl
+%%WWWDIR%%/template/ja/default/global/confirm-user-match.html.tmpl
+%%WWWDIR%%/template/ja/default/global/docslinks.html.tmpl
+%%WWWDIR%%/template/ja/default/global/field-descs.none.tmpl
+%%WWWDIR%%/template/ja/default/global/footer.html.tmpl
+%%WWWDIR%%/template/ja/default/global/header.html.tmpl
+%%WWWDIR%%/template/ja/default/global/help.html.tmpl
+%%WWWDIR%%/template/ja/default/global/hidden-fields.html.tmpl
+%%WWWDIR%%/template/ja/default/global/initialize.none.tmpl
+%%WWWDIR%%/template/ja/default/global/js-products.html.tmpl
+%%WWWDIR%%/template/ja/default/global/message.html.tmpl
+%%WWWDIR%%/template/ja/default/global/message.txt.tmpl
+%%WWWDIR%%/template/ja/default/global/messages.html.tmpl
+%%WWWDIR%%/template/ja/default/global/per-bug-queries.html.tmpl
+%%WWWDIR%%/template/ja/default/global/select-menu.html.tmpl
+%%WWWDIR%%/template/ja/default/global/setting-descs.none.tmpl
+%%WWWDIR%%/template/ja/default/global/site-navigation.html.tmpl
+%%WWWDIR%%/template/ja/default/global/tabs.html.tmpl
+%%WWWDIR%%/template/ja/default/global/textarea.html.tmpl
+%%WWWDIR%%/template/ja/default/global/useful-links.html.tmpl
+%%WWWDIR%%/template/ja/default/global/user-error.html.tmpl
+%%WWWDIR%%/template/ja/default/global/user.html.tmpl
+%%WWWDIR%%/template/ja/default/global/userselect.html.tmpl
+%%WWWDIR%%/template/ja/default/global/variables.none.tmpl
+%%WWWDIR%%/template/ja/default/index.html.tmpl
+%%WWWDIR%%/template/ja/default/list/change-columns.html.tmpl
+%%WWWDIR%%/template/ja/default/list/edit-multiple.html.tmpl
+%%WWWDIR%%/template/ja/default/list/list-simple.html.tmpl
+%%WWWDIR%%/template/ja/default/list/list.atom.tmpl
+%%WWWDIR%%/template/ja/default/list/list.csv.tmpl
+%%WWWDIR%%/template/ja/default/list/list.html.tmpl
+%%WWWDIR%%/template/ja/default/list/list.ics.tmpl
+%%WWWDIR%%/template/ja/default/list/list.js.tmpl
+%%WWWDIR%%/template/ja/default/list/list.rdf.tmpl
+%%WWWDIR%%/template/ja/default/list/quips.html.tmpl
+%%WWWDIR%%/template/ja/default/list/server-push.html.tmpl
+%%WWWDIR%%/template/ja/default/list/table.html.tmpl
+%%WWWDIR%%/template/ja/default/pages/bug-writing.html.tmpl
+%%WWWDIR%%/template/ja/default/pages/fields.html.tmpl
+%%WWWDIR%%/template/ja/default/pages/linked.html.tmpl
+%%WWWDIR%%/template/ja/default/pages/linkify.html.tmpl
+%%WWWDIR%%/template/ja/default/pages/quicksearch.html.tmpl
+%%WWWDIR%%/template/ja/default/pages/release-notes.html.tmpl
+%%WWWDIR%%/template/ja/default/pages/sudo.html.tmpl
+%%WWWDIR%%/template/ja/default/pages/voting.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/chart.csv.tmpl
+%%WWWDIR%%/template/ja/default/reports/chart.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/chart.png.tmpl
+%%WWWDIR%%/template/ja/default/reports/components.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/create-chart.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/delete-series.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/duplicates-simple.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/duplicates-table.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/duplicates.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/edit-series.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/keywords.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/menu.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/old-charts.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/report-bar.png.tmpl
+%%WWWDIR%%/template/ja/default/reports/report-line.png.tmpl
+%%WWWDIR%%/template/ja/default/reports/report-pie.png.tmpl
+%%WWWDIR%%/template/ja/default/reports/report-simple.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/report-table.csv.tmpl
+%%WWWDIR%%/template/ja/default/reports/report-table.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/report.csv.tmpl
+%%WWWDIR%%/template/ja/default/reports/report.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/series-common.html.tmpl
+%%WWWDIR%%/template/ja/default/reports/series.html.tmpl
+%%WWWDIR%%/template/ja/default/request/email.txt.tmpl
+%%WWWDIR%%/template/ja/default/request/queue.html.tmpl
+%%WWWDIR%%/template/ja/default/search/boolean-charts.html.tmpl
+%%WWWDIR%%/template/ja/default/search/form.html.tmpl
+%%WWWDIR%%/template/ja/default/search/knob.html.tmpl
+%%WWWDIR%%/template/ja/default/search/search-advanced.html.tmpl
+%%WWWDIR%%/template/ja/default/search/search-create-series.html.tmpl
+%%WWWDIR%%/template/ja/default/search/search-help.html.tmpl
+%%WWWDIR%%/template/ja/default/search/search-plugin.xml.tmpl
+%%WWWDIR%%/template/ja/default/search/search-report-graph.html.tmpl
+%%WWWDIR%%/template/ja/default/search/search-report-select.html.tmpl
+%%WWWDIR%%/template/ja/default/search/search-report-table.html.tmpl
+%%WWWDIR%%/template/ja/default/search/search-specific.html.tmpl
+%%WWWDIR%%/template/ja/default/search/tabs.html.tmpl
+%%WWWDIR%%/template/ja/default/search/type-select.html.tmpl
+%%WWWDIR%%/template/ja/default/setup/strings.txt.pl
+%%WWWDIR%%/template/ja/default/sidebar.xul.tmpl
+%%WWWDIR%%/template/ja/default/welcome-admin.html.tmpl
+%%WWWDIR%%/template/ja/default/whine/mail.html.tmpl
+%%WWWDIR%%/template/ja/default/whine/mail.txt.tmpl
+%%WWWDIR%%/template/ja/default/whine/multipart-mime.txt.tmpl
+%%WWWDIR%%/template/ja/default/whine/schedule.html.tmpl
+ at dirrmtry %%WWWDIR%%/template/ja/extension
+ at dirrmtry %%WWWDIR%%/template/ja/default/whine
+ at dirrmtry %%WWWDIR%%/template/ja/default/setup
+ at dirrmtry %%WWWDIR%%/template/ja/default/search
+ at dirrmtry %%WWWDIR%%/template/ja/default/request
+ at dirrmtry %%WWWDIR%%/template/ja/default/reports
+ at dirrmtry %%WWWDIR%%/template/ja/default/pages
+ at dirrmtry %%WWWDIR%%/template/ja/default/list
+ at dirrmtry %%WWWDIR%%/template/ja/default/global
+ at dirrmtry %%WWWDIR%%/template/ja/default/flag
+ at dirrmtry %%WWWDIR%%/template/ja/default/extensions
+ at dirrmtry %%WWWDIR%%/template/ja/default/email
+ at dirrmtry %%WWWDIR%%/template/ja/default/bug/votes
+ at dirrmtry %%WWWDIR%%/template/ja/default/bug/process
+ at dirrmtry %%WWWDIR%%/template/ja/default/bug/create
+ at dirrmtry %%WWWDIR%%/template/ja/default/bug/activity
+ at dirrmtry %%WWWDIR%%/template/ja/default/bug
+ at dirrmtry %%WWWDIR%%/template/ja/default/attachment
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/workflow
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/versions
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/users
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/settings
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/sanitycheck
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/products/groupcontrol
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/products
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/params
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/milestones
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/keywords
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/groups
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/flag-type
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/fieldvalues
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/custom_fields
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/components
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin/classifications
+ at dirrmtry %%WWWDIR%%/template/ja/default/admin
+ at dirrmtry %%WWWDIR%%/template/ja/default/account/prefs
+ at dirrmtry %%WWWDIR%%/template/ja/default/account/password
+ at dirrmtry %%WWWDIR%%/template/ja/default/account/email
+ at dirrmtry %%WWWDIR%%/template/ja/default/account/auth
+ at dirrmtry %%WWWDIR%%/template/ja/default/account
+ at dirrmtry %%WWWDIR%%/template/ja/default
+ at dirrmtry %%WWWDIR%%/template/ja
+ at dirrmtry %%WWWDIR%%/template
+ at dirrmtry %%WWWDIR%%

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list