Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Jul 2014 14:27:23 +0000 (UTC)
From:      Olli Hauer <ohauer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r362914 - branches/2014Q3/devel/bugzilla44
Message-ID:  <201407251427.s6PERNuV072877@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ohauer
Date: Fri Jul 25 14:27:22 2014
New Revision: 362914
URL: http://svnweb.freebsd.org/changeset/ports/362914
QAT: https://qat.redports.org/buildarchive/r362914/

Log:
  MFH: r362911
  
  - update to bugzilla44-4.4.5
  
  Vulnerability Details
  =====================
  
  Class:       Cross Site Request Forgery
  Versions:    3.7.1 to 4.0.13, 4.1.1 to 4.2.9, 4.3.1 to 4.4.4, 4.5.1 to 4.5.4
  Fixed In:    4.0.14, 4.2.10, 4.4.5, 4.5.5
  Description: Adobe does not properly restrict the SWF file format,
               which allows remote attackers to conduct cross-site
               request forgery (CSRF) attacks against Bugzilla's JSONP
               endpoint, possibly obtaining sensitive bug information,
               via a crafted OBJECT element with SWF content satisfying
               the character-set requirements of a callback API.
  
  http://www.bugzilla.org/security/4.0.13/
  
  Security:	9defb2d6-1404-11e4-8cae-20cf30e32f6d
  		CVE-2014-1546
  
  Approved by: 	portmgr (erwin@)

Modified:
  branches/2014Q3/devel/bugzilla44/Makefile
  branches/2014Q3/devel/bugzilla44/distinfo
  branches/2014Q3/devel/bugzilla44/pkg-plist
Directory Properties:
  branches/2014Q3/   (props changed)

Modified: branches/2014Q3/devel/bugzilla44/Makefile
==============================================================================
--- branches/2014Q3/devel/bugzilla44/Makefile	Fri Jul 25 14:22:44 2014	(r362913)
+++ branches/2014Q3/devel/bugzilla44/Makefile	Fri Jul 25 14:27:22 2014	(r362914)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	bugzilla
-PORTVERSION=	4.4.4
-PORTREVISION=	1
+PORTVERSION=	4.4.5
 CATEGORIES=	devel
 MASTER_SITES=	BUGZILLA
 MASTER_SITE_SUBDIR=	webtools webtools/archived
@@ -162,7 +161,8 @@ EXTRA_PATCHES=	${FILESDIR}/freebsd-proje
 post-extract:
 	@${RM} -rf ${WRKSRC}/.bzr
 	@${RM} -f ${WRKSRC}/.bzrignore ${WRKSRC}/.gitignore ${WRKSRC}/.gitrev \
-		${WRKSRC}/docs/en/README.docs ${WRKSRC}/docs/en/html/Bugzilla-Guide.proc
+		${WRKSRC}/docs/en/README.docs ${WRKSRC}/docs/en/html/Bugzilla-Guide.proc \
+		${WRKSRC}/.travis.yml ${WRKSRC}/Build.PL ${WRKSRC}/MANIFEST.SKIP
 
 post-patch:
 	@${PERL} -pi -e 's/(default => ON_WINDOWS.+)apache/$$1www/' \
@@ -178,7 +178,7 @@ post-patch:
 		${XARGS} ${REINPLACE_CMD} -i '' -e "s!/var/www/html/bugzilla!${WWWDIR}!"
 
 pre-install:
-	@${FIND} ${WRKSRC} -type f \( -name "*.orig" -or -name "*.bak" \) -delete
+	${FIND} ${WRKSRC} -type f \( -name "*.orig" -or -name "*.bak" \) -delete
 
 do-install:	.SILENT
 	${MKDIR} ${STAGEDIR}${WWWDIR}
@@ -191,12 +191,11 @@ do-install:	.SILENT
 	${TAR} -C ${WRKSRC} -cf - Bugzilla template | ${TAR} --unlink -C ${STAGEDIR}${WWWDIR} -xf -
 	@${MKDIR} ${EMPTY_DIRS_LIST:S!^!${STAGEDIR}${WWWDIR}/!}
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
-	(cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/)
+	(cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
 
 .if ${PORT_OPTIONS:MCONTRIB}
-	@(cd ${WRKSRC}/contrib && \
-		${FIND} . -type d -exec ${MKDIR} "${STAGEDIR}${WWWDIR}/contrib/{}" \; && \
-		${FIND} . -type f -exec ${INSTALL_DATA} "{}" "${STAGEDIR}${WWWDIR}/contrib/{}" \;)
+	@${MKDIR} ${STAGEDIR}${WWWDIR}/contrib
+	(cd ${WRKSRC}/contrib && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/contrib)
 .endif
 
 .include <bsd.port.mk>

Modified: branches/2014Q3/devel/bugzilla44/distinfo
==============================================================================
--- branches/2014Q3/devel/bugzilla44/distinfo	Fri Jul 25 14:22:44 2014	(r362913)
+++ branches/2014Q3/devel/bugzilla44/distinfo	Fri Jul 25 14:27:22 2014	(r362914)
@@ -1,2 +1,2 @@
-SHA256 (bugzilla/bugzilla-4.4.4.tar.gz) = c799da664c8b3ca8acf993026021249f12f2dd6c3604837bc3ebacf11927d2d1
-SIZE (bugzilla/bugzilla-4.4.4.tar.gz) = 2957476
+SHA256 (bugzilla/bugzilla-4.4.5.tar.gz) = 70609fa5bbe55a3b802afcf749a098824d7a96dc87b91ce07b000cfdd7987da5
+SIZE (bugzilla/bugzilla-4.4.5.tar.gz) = 2955964

Modified: branches/2014Q3/devel/bugzilla44/pkg-plist
==============================================================================
--- branches/2014Q3/devel/bugzilla44/pkg-plist	Fri Jul 25 14:22:44 2014	(r362913)
+++ branches/2014Q3/devel/bugzilla44/pkg-plist	Fri Jul 25 14:27:22 2014	(r362914)
@@ -887,178 +887,178 @@
 %%WWWDIR%%/whine.pl
 %%WWWDIR%%/whineatnews.pl
 %%WWWDIR%%/xmlrpc.cgi
-@dirrmtry %%WWWDIR%%/xt
-@dirrm %%WWWDIR%%/template/en/default/whine
-@dirrm %%WWWDIR%%/template/en/default/setup
-@dirrm %%WWWDIR%%/template/en/default/search
-@dirrm %%WWWDIR%%/template/en/default/request
-@dirrm %%WWWDIR%%/template/en/default/reports
-@dirrm %%WWWDIR%%/template/en/default/pages
-@dirrm %%WWWDIR%%/template/en/default/list
-@dirrm %%WWWDIR%%/template/en/default/global
-@dirrm %%WWWDIR%%/template/en/default/flag
-@dirrm %%WWWDIR%%/template/en/default/extensions
-@dirrm %%WWWDIR%%/template/en/default/email
-@dirrm %%WWWDIR%%/template/en/default/bug/process
-@dirrm %%WWWDIR%%/template/en/default/bug/create
-@dirrm %%WWWDIR%%/template/en/default/bug/activity
-@dirrm %%WWWDIR%%/template/en/default/bug
-@dirrm %%WWWDIR%%/template/en/default/attachment
-@dirrm %%WWWDIR%%/template/en/default/admin/workflow
-@dirrm %%WWWDIR%%/template/en/default/admin/versions
-@dirrm %%WWWDIR%%/template/en/default/admin/users
-@dirrm %%WWWDIR%%/template/en/default/admin/settings
-@dirrm %%WWWDIR%%/template/en/default/admin/sanitycheck
-@dirrm %%WWWDIR%%/template/en/default/admin/products/groupcontrol
-@dirrm %%WWWDIR%%/template/en/default/admin/products
-@dirrm %%WWWDIR%%/template/en/default/admin/params
-@dirrm %%WWWDIR%%/template/en/default/admin/milestones
-@dirrm %%WWWDIR%%/template/en/default/admin/keywords
-@dirrm %%WWWDIR%%/template/en/default/admin/groups
-@dirrm %%WWWDIR%%/template/en/default/admin/flag-type
-@dirrm %%WWWDIR%%/template/en/default/admin/fieldvalues
-@dirrm %%WWWDIR%%/template/en/default/admin/custom_fields
-@dirrm %%WWWDIR%%/template/en/default/admin/components
-@dirrm %%WWWDIR%%/template/en/default/admin/classifications
-@dirrm %%WWWDIR%%/template/en/default/admin
-@dirrm %%WWWDIR%%/template/en/default/account/prefs
-@dirrm %%WWWDIR%%/template/en/default/account/password
-@dirrm %%WWWDIR%%/template/en/default/account/email
-@dirrm %%WWWDIR%%/template/en/default/account/auth
-@dirrm %%WWWDIR%%/template/en/default/account
-@dirrm %%WWWDIR%%/template/en/default
-@dirrm %%WWWDIR%%/template/en
-@dirrmtry %%WWWDIR%%/template
-@dirrmtry %%WWWDIR%%/t
-@dirrm %%WWWDIR%%/skins/standard/index
-@dirrm %%WWWDIR%%/skins/standard/global
-@dirrm %%WWWDIR%%/skins/standard/dependency-tree
-@dirrm %%WWWDIR%%/skins/standard
-@dirrm %%WWWDIR%%/skins/contrib/Dusk
-@dirrm %%WWWDIR%%/skins/contrib
-@dirrmtry %%WWWDIR%%/skins
-@dirrmtry %%WWWDIR%%/lib
-@dirrmtry %%WWWDIR%%/js/yui/yuitest
-@dirrmtry %%WWWDIR%%/js/yui/yuiloader
-@dirrmtry %%WWWDIR%%/js/yui/yahoo-dom-event
-@dirrmtry %%WWWDIR%%/js/yui/yahoo
-@dirrmtry %%WWWDIR%%/js/yui/uploader
-@dirrmtry %%WWWDIR%%/js/yui/treeview
-@dirrmtry %%WWWDIR%%/js/yui/tabview
-@dirrmtry %%WWWDIR%%/js/yui/swfstore
-@dirrmtry %%WWWDIR%%/js/yui/swfdetect
-@dirrmtry %%WWWDIR%%/js/yui/swf
-@dirrmtry %%WWWDIR%%/js/yui/stylesheet
-@dirrmtry %%WWWDIR%%/js/yui/storage
-@dirrmtry %%WWWDIR%%/js/yui/slider
-@dirrmtry %%WWWDIR%%/js/yui/selector
-@dirrmtry %%WWWDIR%%/js/yui/resize
-@dirrmtry %%WWWDIR%%/js/yui/reset-fonts-grids
-@dirrmtry %%WWWDIR%%/js/yui/reset-fonts
-@dirrmtry %%WWWDIR%%/js/yui/reset
-@dirrmtry %%WWWDIR%%/js/yui/progressbar
-@dirrmtry %%WWWDIR%%/js/yui/profilerviewer
-@dirrmtry %%WWWDIR%%/js/yui/profiler
-@dirrmtry %%WWWDIR%%/js/yui/paginator
-@dirrmtry %%WWWDIR%%/js/yui/menu
-@dirrmtry %%WWWDIR%%/js/yui/logger
-@dirrmtry %%WWWDIR%%/js/yui/layout
-@dirrmtry %%WWWDIR%%/js/yui/json
-@dirrmtry %%WWWDIR%%/js/yui/imageloader
-@dirrmtry %%WWWDIR%%/js/yui/imagecropper
-@dirrmtry %%WWWDIR%%/js/yui/history
-@dirrmtry %%WWWDIR%%/js/yui/grids
-@dirrmtry %%WWWDIR%%/js/yui/get
-@dirrmtry %%WWWDIR%%/js/yui/fonts
-@dirrmtry %%WWWDIR%%/js/yui/event-simulate
-@dirrmtry %%WWWDIR%%/js/yui/event-mouseenter
-@dirrmtry %%WWWDIR%%/js/yui/event-delegate
-@dirrmtry %%WWWDIR%%/js/yui/event
-@dirrmtry %%WWWDIR%%/js/yui/element-delegate
-@dirrmtry %%WWWDIR%%/js/yui/element
-@dirrmtry %%WWWDIR%%/js/yui/dragdrop
-@dirrmtry %%WWWDIR%%/js/yui/dom
-@dirrmtry %%WWWDIR%%/js/yui/datemath
-@dirrmtry %%WWWDIR%%/js/yui/datatable
-@dirrmtry %%WWWDIR%%/js/yui/datasource
-@dirrmtry %%WWWDIR%%/js/yui/cookie
-@dirrmtry %%WWWDIR%%/js/yui/container
-@dirrmtry %%WWWDIR%%/js/yui/connection
-@dirrmtry %%WWWDIR%%/js/yui/colorpicker
-@dirrmtry %%WWWDIR%%/js/yui/charts
-@dirrmtry %%WWWDIR%%/js/yui/carousel
-@dirrmtry %%WWWDIR%%/js/yui/calendar
-@dirrmtry %%WWWDIR%%/js/yui/button
-@dirrmtry %%WWWDIR%%/js/yui/base
-@dirrmtry %%WWWDIR%%/js/yui/autocomplete
-@dirrmtry %%WWWDIR%%/js/yui/assets/skins/sam
-@dirrmtry %%WWWDIR%%/js/yui/assets/skins
-@dirrmtry %%WWWDIR%%/js/yui/assets
-@dirrmtry %%WWWDIR%%/js/yui/animation
-@dirrmtry %%WWWDIR%%/js/yui
-@dirrmtry %%WWWDIR%%/js/history.js
-@dirrmtry %%WWWDIR%%/js
-@dirrm %%WWWDIR%%/images
-@dirrmtry %%WWWDIR%%/graphs
-@dirrmtry %%WWWDIR%%/data
-%%CONTRIB%%@dirrm %%WWWDIR%%/contrib/cmdline
-%%CONTRIB%%@dirrm %%WWWDIR%%/contrib/bugzilla-submit
-@dirrmtry %%WWWDIR%%/contrib
-@dirrm %%WWWDIR%%/Bugzilla/Whine
-@dirrm %%WWWDIR%%/Bugzilla/WebService/Server
-@dirrm %%WWWDIR%%/Bugzilla/WebService
-@dirrm %%WWWDIR%%/Bugzilla/User/Setting
-@dirrm %%WWWDIR%%/Bugzilla/User
-@dirrm %%WWWDIR%%/Bugzilla/Template/Plugin
-@dirrm %%WWWDIR%%/Bugzilla/Template
-@dirrm %%WWWDIR%%/Bugzilla/Send
-@dirrm %%WWWDIR%%/Bugzilla/Search
-@dirrm %%WWWDIR%%/Bugzilla/Migrate
-@dirrm %%WWWDIR%%/Bugzilla/JobQueue
-@dirrm %%WWWDIR%%/Bugzilla/Job
-@dirrm %%WWWDIR%%/Bugzilla/Install
-@dirrm %%WWWDIR%%/Bugzilla/Field
-@dirrm %%WWWDIR%%/Bugzilla/DB/Schema
-@dirrm %%WWWDIR%%/Bugzilla/DB
-@dirrm %%WWWDIR%%/Bugzilla/Config
-@dirrm %%WWWDIR%%/Bugzilla/BugUrl/Bugzilla
-@dirrm %%WWWDIR%%/Bugzilla/BugUrl
-@dirrm %%WWWDIR%%/Bugzilla/Auth/Verify
-@dirrm %%WWWDIR%%/Bugzilla/Auth/Persist
-@dirrm %%WWWDIR%%/Bugzilla/Auth/Login
-@dirrm %%WWWDIR%%/Bugzilla/Auth
-@dirrm %%WWWDIR%%/Bugzilla/Attachment
-@dirrmtry %%WWWDIR%%/Bugzilla
-@dirrmtry %%WWWDIR%%
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/xsl
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTMLBatch
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTML
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/xml
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/txt
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/pdf
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/images/callouts
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/images
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/extensions
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/contrib
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Whine
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/WebService/Server
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/WebService
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/User/Setting
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/User
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Auth
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Config
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/DB
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Field
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Install
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/JobQueue
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Search
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Template/Plugin
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Template
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Search
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/JobQueue
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Install
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Field
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/DB
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Config
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Auth
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/User/Setting
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/User
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/WebService/Server
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/WebService
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Whine
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/contrib
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/extensions
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/images/callouts
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/images
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/pdf
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/txt
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/xml
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/en
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTML
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTMLBatch
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/xsl
 %%PORTDOCS%%@dirrm %%DOCSDIR%%
+@dirrm %%WWWDIR%%/Bugzilla/Attachment
+@dirrm %%WWWDIR%%/Bugzilla/Auth/Login
+@dirrm %%WWWDIR%%/Bugzilla/Auth/Persist
+@dirrm %%WWWDIR%%/Bugzilla/Auth/Verify
+@dirrm %%WWWDIR%%/Bugzilla/Auth
+@dirrm %%WWWDIR%%/Bugzilla/BugUrl/Bugzilla
+@dirrm %%WWWDIR%%/Bugzilla/BugUrl
+@dirrm %%WWWDIR%%/Bugzilla/Config
+@dirrm %%WWWDIR%%/Bugzilla/DB/Schema
+@dirrm %%WWWDIR%%/Bugzilla/DB
+@dirrm %%WWWDIR%%/Bugzilla/Field
+@dirrm %%WWWDIR%%/Bugzilla/Install
+@dirrm %%WWWDIR%%/Bugzilla/Job
+@dirrm %%WWWDIR%%/Bugzilla/JobQueue
+@dirrm %%WWWDIR%%/Bugzilla/Migrate
+@dirrm %%WWWDIR%%/Bugzilla/Search
+@dirrm %%WWWDIR%%/Bugzilla/Send
+@dirrm %%WWWDIR%%/Bugzilla/Template/Plugin
+@dirrm %%WWWDIR%%/Bugzilla/Template
+@dirrm %%WWWDIR%%/Bugzilla/User/Setting
+@dirrm %%WWWDIR%%/Bugzilla/User
+@dirrm %%WWWDIR%%/Bugzilla/WebService/Server
+@dirrm %%WWWDIR%%/Bugzilla/WebService
+@dirrm %%WWWDIR%%/Bugzilla/Whine
+@dirrmtry %%WWWDIR%%/Bugzilla
+%%CONTRIB%%@dirrm %%WWWDIR%%/contrib/bugzilla-submit
+%%CONTRIB%%@dirrm %%WWWDIR%%/contrib/cmdline
+@dirrmtry %%WWWDIR%%/contrib
+@dirrmtry %%WWWDIR%%/data
+@dirrmtry %%WWWDIR%%/graphs
+@dirrmtry %%WWWDIR%%/images
+@dirrm %%WWWDIR%%/js/history.js
+@dirrm %%WWWDIR%%/js/yui/animation
+@dirrm %%WWWDIR%%/js/yui/assets/skins/sam
+@dirrm %%WWWDIR%%/js/yui/assets/skins
+@dirrm %%WWWDIR%%/js/yui/assets
+@dirrm %%WWWDIR%%/js/yui/autocomplete
+@dirrm %%WWWDIR%%/js/yui/base
+@dirrm %%WWWDIR%%/js/yui/button
+@dirrm %%WWWDIR%%/js/yui/calendar
+@dirrm %%WWWDIR%%/js/yui/carousel
+@dirrm %%WWWDIR%%/js/yui/charts
+@dirrm %%WWWDIR%%/js/yui/colorpicker
+@dirrm %%WWWDIR%%/js/yui/connection
+@dirrm %%WWWDIR%%/js/yui/container
+@dirrm %%WWWDIR%%/js/yui/cookie
+@dirrm %%WWWDIR%%/js/yui/datasource
+@dirrm %%WWWDIR%%/js/yui/datatable
+@dirrm %%WWWDIR%%/js/yui/datemath
+@dirrm %%WWWDIR%%/js/yui/dom
+@dirrm %%WWWDIR%%/js/yui/dragdrop
+@dirrm %%WWWDIR%%/js/yui/element
+@dirrm %%WWWDIR%%/js/yui/element-delegate
+@dirrm %%WWWDIR%%/js/yui/event
+@dirrm %%WWWDIR%%/js/yui/event-delegate
+@dirrm %%WWWDIR%%/js/yui/event-mouseenter
+@dirrm %%WWWDIR%%/js/yui/event-simulate
+@dirrm %%WWWDIR%%/js/yui/fonts
+@dirrm %%WWWDIR%%/js/yui/get
+@dirrm %%WWWDIR%%/js/yui/grids
+@dirrm %%WWWDIR%%/js/yui/history
+@dirrm %%WWWDIR%%/js/yui/imagecropper
+@dirrm %%WWWDIR%%/js/yui/imageloader
+@dirrm %%WWWDIR%%/js/yui/json
+@dirrm %%WWWDIR%%/js/yui/layout
+@dirrm %%WWWDIR%%/js/yui/logger
+@dirrm %%WWWDIR%%/js/yui/menu
+@dirrm %%WWWDIR%%/js/yui/paginator
+@dirrm %%WWWDIR%%/js/yui/profiler
+@dirrm %%WWWDIR%%/js/yui/profilerviewer
+@dirrm %%WWWDIR%%/js/yui/progressbar
+@dirrm %%WWWDIR%%/js/yui/reset
+@dirrm %%WWWDIR%%/js/yui/reset-fonts
+@dirrm %%WWWDIR%%/js/yui/reset-fonts-grids
+@dirrm %%WWWDIR%%/js/yui/resize
+@dirrm %%WWWDIR%%/js/yui/selector
+@dirrm %%WWWDIR%%/js/yui/slider
+@dirrm %%WWWDIR%%/js/yui/storage
+@dirrm %%WWWDIR%%/js/yui/stylesheet
+@dirrm %%WWWDIR%%/js/yui/swf
+@dirrm %%WWWDIR%%/js/yui/swfdetect
+@dirrm %%WWWDIR%%/js/yui/swfstore
+@dirrm %%WWWDIR%%/js/yui/tabview
+@dirrm %%WWWDIR%%/js/yui/treeview
+@dirrm %%WWWDIR%%/js/yui/uploader
+@dirrm %%WWWDIR%%/js/yui/yahoo
+@dirrm %%WWWDIR%%/js/yui/yahoo-dom-event
+@dirrm %%WWWDIR%%/js/yui/yuiloader
+@dirrm %%WWWDIR%%/js/yui/yuitest
+@dirrm %%WWWDIR%%/js/yui
+@dirrm %%WWWDIR%%/js
+@dirrmtry %%WWWDIR%%/lib
+@dirrm %%WWWDIR%%/skins/contrib/Dusk
+@dirrm %%WWWDIR%%/skins/contrib
+@dirrm %%WWWDIR%%/skins/standard/dependency-tree
+@dirrm %%WWWDIR%%/skins/standard/global
+@dirrm %%WWWDIR%%/skins/standard/index
+@dirrm %%WWWDIR%%/skins/standard
+@dirrmtry %%WWWDIR%%/skins
+@dirrmtry %%WWWDIR%%/t
+@dirrm %%WWWDIR%%/template/en/default/account/auth
+@dirrm %%WWWDIR%%/template/en/default/account/email
+@dirrm %%WWWDIR%%/template/en/default/account/password
+@dirrm %%WWWDIR%%/template/en/default/account/prefs
+@dirrm %%WWWDIR%%/template/en/default/account
+@dirrm %%WWWDIR%%/template/en/default/admin/classifications
+@dirrm %%WWWDIR%%/template/en/default/admin/components
+@dirrm %%WWWDIR%%/template/en/default/admin/custom_fields
+@dirrm %%WWWDIR%%/template/en/default/admin/fieldvalues
+@dirrm %%WWWDIR%%/template/en/default/admin/flag-type
+@dirrm %%WWWDIR%%/template/en/default/admin/groups
+@dirrm %%WWWDIR%%/template/en/default/admin/keywords
+@dirrm %%WWWDIR%%/template/en/default/admin/milestones
+@dirrm %%WWWDIR%%/template/en/default/admin/params
+@dirrm %%WWWDIR%%/template/en/default/admin/products/groupcontrol
+@dirrm %%WWWDIR%%/template/en/default/admin/products
+@dirrm %%WWWDIR%%/template/en/default/admin/sanitycheck
+@dirrm %%WWWDIR%%/template/en/default/admin/settings
+@dirrm %%WWWDIR%%/template/en/default/admin/users
+@dirrm %%WWWDIR%%/template/en/default/admin/versions
+@dirrm %%WWWDIR%%/template/en/default/admin/workflow
+@dirrm %%WWWDIR%%/template/en/default/admin
+@dirrm %%WWWDIR%%/template/en/default/attachment
+@dirrm %%WWWDIR%%/template/en/default/bug/activity
+@dirrm %%WWWDIR%%/template/en/default/bug/create
+@dirrm %%WWWDIR%%/template/en/default/bug/process
+@dirrm %%WWWDIR%%/template/en/default/bug
+@dirrm %%WWWDIR%%/template/en/default/email
+@dirrm %%WWWDIR%%/template/en/default/extensions
+@dirrm %%WWWDIR%%/template/en/default/flag
+@dirrm %%WWWDIR%%/template/en/default/global
+@dirrm %%WWWDIR%%/template/en/default/list
+@dirrm %%WWWDIR%%/template/en/default/pages
+@dirrm %%WWWDIR%%/template/en/default/reports
+@dirrm %%WWWDIR%%/template/en/default/request
+@dirrm %%WWWDIR%%/template/en/default/search
+@dirrm %%WWWDIR%%/template/en/default/setup
+@dirrm %%WWWDIR%%/template/en/default/whine
+@dirrm %%WWWDIR%%/template/en/default
+@dirrm %%WWWDIR%%/template/en
+@dirrmtry %%WWWDIR%%/template
+@dirrmtry %%WWWDIR%%/xt
+@dirrmtry %%WWWDIR%%



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407251427.s6PERNuV072877>