[Midnightbsd-cvs] mports [20249] trunk: add drupal
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Sep 19 14:53:07 EDT 2015
Revision: 20249
http://svnweb.midnightbsd.org/mports/?rev=20249
Author: laffer1
Date: 2015-09-19 14:53:07 -0400 (Sat, 19 Sep 2015)
Log Message:
-----------
add drupal
Modified Paths:
--------------
trunk/www/Makefile
Added Paths:
-----------
trunk/Mk/extensions/drupal.mk
trunk/www/drupal7/
trunk/www/drupal7/Makefile
trunk/www/drupal7/distinfo
trunk/www/drupal7/files/
trunk/www/drupal7/files/pkg-message.in
trunk/www/drupal7/pkg-descr
trunk/www/drupal7/pkg-plist
Added: trunk/Mk/extensions/drupal.mk
===================================================================
--- trunk/Mk/extensions/drupal.mk (rev 0)
+++ trunk/Mk/extensions/drupal.mk 2015-09-19 18:53:07 UTC (rev 20249)
@@ -0,0 +1,119 @@
+# $MidnightBSD$
+# $FreeBSD: head/Mk/Uses/drupal.mk 372608 2014-11-15 17:05:44Z antoine $
+#
+# Support for Drupal ports and modules.
+#
+# Feature: drupal
+# Usage: USES=drupal or USES=drupal:ARGS
+# Valid ARGS: module <version> theme
+#
+# module The port is a drupal module
+
+.if !defined(_INCLUDE_USES_DRUPAL_Mk)
+_INCLUDE_USES_DRUPAL_Mk= yes
+
+.if ${drupal_ARGS:M[67]}
+_DRUPAL_VERSION= ${drupal_ARGS:M[67]}
+.endif
+
+VALID_VERSIONS= 6 7
+
+.if ${drupal_ARGS:N[67]:Ntheme:Nmodule}
+IGNORE= Unknown argument for USES=drupal: ${drupal_ARGS:N[67]:Ntheme:Nmodule}
+.endif
+
+_DRUPAL_COMP= ${drupal_ARGS:N[67]}
+
+.if !defined(_DRUPAL_VERSION) || ! ${VALID_VERSIONS:M${_DRUPAL_VERSION}}
+IGNORE= Missing or invalid argument for USES=drupal, a version must be provided: ${VALID_VERSIONS}
+.endif
+
+.if ${drupal_ARGS:Mmodule} && ${drupal_ARGS:Mtheme}
+IGNORE= theme and module arguments are mutually exclusive for USES=drupal
+.endif
+
+DRUPAL_BASE?= www/drupal${_DRUPAL_VERSION}
+
+DRUPAL_DIR= ${PREFIX}/${DRUPAL_BASE}
+DRUPAL_DOCSDIR?= ${PREFIX}/${DRUPAL_BASE}/doc
+PLIST_SUB+= DRUPAL_BASE=${DRUPAL_BASE}
+SUB_LIST+= DRUPAL_BASE=${DRUPAL_BASE} DRUPAL_DIR=${DRUPAL_DIR}
+
+.if ! ${_DRUPAL_COMP}
+DOCSDIR?= ${DRUPAL_DOCSDIR}
+.endif
+
+.if ${_DRUPAL_COMP}
+_USES_POST+= drupal
+PKGNAMEPREFIX= drupal${_DRUPAL_VERSION}-
+.if defined(DOC_FILES)
+OPTIONS_DEFINE= DOCS
+.endif
+
+# drupal contributions must be licensed under the GPLv2 or GPLv3. This is
+# documented at: http://drupal.org/licensing/faq/
+.if !defined(LICENSE)
+LICENSE= gpl2 gpl3
+LICENSE_COMB= dual
+.endif
+
+.if defined(DRUPAL_MODSUBDIR)
+DRUPAL_MODDIR?= ${DRUPAL_BASE}/sites/all/${_DRUPAL_COMP}s/${DRUPAL_MODSUBDIR}
+.else
+DRUPAL_MODDIR?= ${DRUPAL_BASE}/sites/all/${_DRUPAL_COMP}s
+.endif
+
+DRUPAL_MODLIB?= ${DRUPAL_BASE}/sites/all/libraries
+
+DOCSDIR?= ${DRUPAL_DOCSDIR}/${PORTNAME}
+
+MASTER_SITE_DRUPAL+= \
+ http://ftp.drupal.org/files/projects/ \
+ http://ftp.osuosl.org/pub/drupal/files/projects/
+MASTER_SITE_DRUPAL_SUBDIR=
+
+MASTER_SITES?= ${MASTER_SITE_DRUPAL}
+MASTER_SITE_SUBDIR?= ${MASTER_SITE_DRUPAL_SUBDIR}
+
+DIST_SUBDIR= drupal
+
+NO_BUILD?= yes
+
+WRKSRC?= ${WRKDIR}/${PORTNAME}
+RUN_DEPENDS+= ${LOCALBASE}/${DRUPAL_BASE}/index.php:${PORTSDIR}/${DRUPAL_BASE}
+
+PLIST_SUB+= DRUPAL_MODDIR=${DRUPAL_MODDIR}
+PLIST_FILES+= "@owner www" \
+ "@group www" \
+ ${MODULE_FILES:C|^|%%DRUPAL_MODDIR%%/|} \
+ "@owner root" \
+ "@group wheel"
+PLIST_DIRS+= ${MODULE_DIRS:C|^|%%DRUPAL_MODDIR%%/|}
+.endif
+.endif
+
+.if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_DRUPAL_POST_MK)
+_INCLUDE_USES_DRUPAL_POST_MK= yes
+
+.if ${_DRUPAL_COMP}
+.if ${PORT_OPTIONS:MDOCS}
+PLIST_FILES+= ${DOC_FILES:C|^|%%DOCSDIR%%/|}
+PLIST_DIRS+= ${DOC_DIRS:C|^|%%DOCSDIR%%/|}
+PLIST_DIRS+= %%DOCSDIR%%
+.endif
+
+do-install:
+ @${MKDIR} ${DRUPAL_MODDIR:C|^|${STAGEDIR}${PREFIX}/|}
+.if defined(MODULE_DIRS)
+ @${MKDIR} ${MODULE_DIRS:C|^|${STAGEDIR}${PREFIX}/${DRUPAL_MODDIR}/|}
+.endif
+.for f in ${MODULE_FILES}
+ @${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/${DRUPAL_MODDIR}/${f}
+.endfor
+ @${MKDIR} ${STAGEDIR}${DOCSDIR} ${DOC_DIRS:C|^|${STAGEDIR}${DOCSDIR}/|}
+.for f in ${DOC_FILES}
+ @${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/${f}
+.endfor
+
+.endif
+.endif
Property changes on: trunk/Mk/extensions/drupal.mk
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Modified: trunk/www/Makefile
===================================================================
--- trunk/www/Makefile 2015-09-19 18:48:51 UTC (rev 20248)
+++ trunk/www/Makefile 2015-09-19 18:53:07 UTC (rev 20249)
@@ -15,6 +15,7 @@
SUBDIR += cherokee
SUBDIR += chromium
SUBDIR += dummyflash
+SUBDIR += drupal7
SUBDIR += epiphany
SUBDIR += etoile-bookmarkkit
SUBDIR += etoile-mollusk
Added: trunk/www/drupal7/Makefile
===================================================================
--- trunk/www/drupal7/Makefile (rev 0)
+++ trunk/www/drupal7/Makefile 2015-09-19 18:53:07 UTC (rev 20249)
@@ -0,0 +1,76 @@
+# Created by: Nick Hilliard <nick at foobar.org>
+# $FreeBSD: head/www/drupal7/Makefile 395015 2015-08-22 06:58:32Z delphij $
+
+PORTNAME= drupal7
+PORTVERSION= 7.39
+CATEGORIES= www
+MASTER_SITES= http://ftp.drupal.org/files/projects/
+DISTNAME= drupal-${PORTVERSION}
+DIST_SUBDIR= drupal
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT= Database driven web content management system (CMS)
+
+LICENSE= gpl2 gpl3
+LICENSE_COMB= dual
+
+USES= drupal:7 shebangfix
+SHEBANG_FILES= scripts/password-hash.sh
+
+USE_PHP= dom filter gd hash json mbstring pcre pdo session simplexml xml
+WANT_PHP_WEB= yes
+
+OPTIONS_DEFINE= MYSQL SQLITE3 PGSQL DOCS
+OPTIONS_DEFAULT= MYSQL
+
+NO_BUILD= yes
+DOCS= CHANGELOG.txt INSTALL.mysql.txt INSTALL.sqlite.txt \
+ LICENSE.txt README.txt COPYRIGHT.txt INSTALL.pgsql.txt \
+ INSTALL.txt MAINTAINERS.txt UPGRADE.txt
+
+SUB_FILES+= pkg-message
+PKGMESSAGE= ${WRKDIR}/pkg-message
+
+PGSQL_USES= pgsql
+PGSQL_USE= PHP=pdo_pgsql
+
+.include <bsd.mport.options.mk>
+
+.if ${PORT_OPTIONS:MSQLITE3}
+USE_PHP+= pdo_sqlite
+.endif
+.if ${PORT_OPTIONS:MMYSQL}
+USE_MYSQL= yes
+USE_PHP+= pdo_mysql
+.endif
+
+do-install:
+ ${MKDIR} ${DRUPAL_DIR}
+ ${CP} ${WRKSRC}/.htaccess ${DRUPAL_DIR}
+ ${CP} ${WRKSRC}/cron.php ${DRUPAL_DIR}
+ ${CP} ${WRKSRC}/authorize.php ${DRUPAL_DIR}
+ ${CP} -R ${WRKSRC}/includes ${DRUPAL_DIR}
+ ${CP} ${WRKSRC}/index.php ${DRUPAL_DIR}
+ ${CP} ${WRKSRC}/install.php ${DRUPAL_DIR}
+ ${CP} -R ${WRKSRC}/misc ${DRUPAL_DIR}
+ ${CP} -R ${WRKSRC}/modules ${DRUPAL_DIR}
+ ${CP} -R ${WRKSRC}/profiles ${DRUPAL_DIR}
+ ${CP} ${WRKSRC}/robots.txt ${DRUPAL_DIR}
+ ${CP} -R ${WRKSRC}/scripts ${DRUPAL_DIR}
+ ${MKDIR} ${DRUPAL_DIR}/sites/all
+ ${MKDIR} ${DRUPAL_DIR}/sites/all/libraries
+ ${CP} ${WRKSRC}/sites/example.sites.php ${DRUPAL_DIR}/sites/
+ ${CP} -R ${WRKSRC}/sites/all ${DRUPAL_DIR}/sites/
+ ${MKDIR} ${DRUPAL_DIR}/sites/default
+ ${MKDIR} ${DRUPAL_DIR}/sites/default/files
+ ${CP} ${WRKSRC}/sites/default/default.settings.php ${DRUPAL_DIR}/sites/default/default.settings.php.sample
+ ${CP} -R ${WRKSRC}/themes ${DRUPAL_DIR}
+ ${CP} ${WRKSRC}/update.php ${DRUPAL_DIR}
+ ${CP} ${WRKSRC}/web.config ${DRUPAL_DIR}
+ ${CP} ${WRKSRC}/xmlrpc.php ${DRUPAL_DIR}
+.if ${PORT_OPTIONS:MDOCS}
+ ${MKDIR} ${DOCSDIR}
+ ${CP} ${DOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>
Property changes on: trunk/www/drupal7/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/drupal7/distinfo
===================================================================
--- trunk/www/drupal7/distinfo (rev 0)
+++ trunk/www/drupal7/distinfo 2015-09-19 18:53:07 UTC (rev 20249)
@@ -0,0 +1,2 @@
+SHA256 (drupal/drupal-7.39.tar.gz) = afad72be4389e2a2dfc630fc8582277ed185d884101978890139e0d14e4ddbab
+SIZE (drupal/drupal-7.39.tar.gz) = 3249343
Property changes on: trunk/www/drupal7/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/drupal7/files/pkg-message.in
===================================================================
--- trunk/www/drupal7/files/pkg-message.in (rev 0)
+++ trunk/www/drupal7/files/pkg-message.in 2015-09-19 18:53:07 UTC (rev 20249)
@@ -0,0 +1,42 @@
+################################################################################
+Complete instructions for installing and configuring Drupal can be found here:
+
+%%DOCSDIR%%/INSTALL.txt
+
+You need to create the DB where Drupal is going to live, and depending on
+which database you intend to use, you should consult one of the following
+documents:
+
+ %%DOCSDIR%%/INSTALL.mysql.txt
+ %%DOCSDIR%%/INSTALL.pgsql.txt
+ %%DOCSDIR%%/INSTALL.sqlite.txt
+
+You also need to add appropriate configuration directives to your apache
+configuration file (%%PREFIX%%/etc/apache(2)/httpd.conf).
+
+A typical configuration might read:
+
+ Alias /drupal "%%DRUPAL_DIR%%"
+ <Directory "%%DRUPAL_DIR%%">
+ Options Indexes FollowSymlinks MultiViews
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ </Directory>
+
+Please see http://drupal.org/cron for important information on setting up
+periodic maintenance tasks in Drupal.
+
+Please see http://drupal.org/requirements for important information on
+system requirements for Drupal 7. In particular, please ensure that your
+configuration:
+
+- uses PHP 5.2.5 or later
+- PHP "memory_limit" is set to "32Mb" or larger
+- PHP "register_globals" is set to "Off"
+- PHP "safe_mode" is set to "Off"
+- PHP "session.cache_limiter" is set to "nocache"
+
+For important information about upgrading from previous versions of Drupal, please
+please see: %%DOCSDIR%%/UPGRADE.txt
+################################################################################
Property changes on: trunk/www/drupal7/files/pkg-message.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/drupal7/pkg-descr
===================================================================
--- trunk/www/drupal7/pkg-descr (rev 0)
+++ trunk/www/drupal7/pkg-descr 2015-09-19 18:53:07 UTC (rev 20249)
@@ -0,0 +1,12 @@
+Drupal is a free web Content Management System (CMS) that allows an
+individual or a community of users to easily publish, manage and organize a
+wide variety of content on a website.
+
+Drupal is ready to go from the moment you download it. It even has an
+easy-to-use web installer! The built-in functionality, combined with dozens
+of freely available add-on modules, will enable features such as: Content
+Management Systems, Blogs, Collaborative authoring environments, Forums,
+Peer-to-peer networking, Newsletters, Podcasting, Picture galleries, File
+uploads/downloads and much more.
+
+WWW: http://drupal.org
Property changes on: trunk/www/drupal7/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/drupal7/pkg-plist
===================================================================
--- trunk/www/drupal7/pkg-plist (rev 0)
+++ trunk/www/drupal7/pkg-plist 2015-09-19 18:53:07 UTC (rev 20249)
@@ -0,0 +1,1093 @@
+ at owner www
+ at group www
+%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
+%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT.txt
+%%PORTDOCS%%%%DOCSDIR%%/INSTALL.mysql.txt
+%%PORTDOCS%%%%DOCSDIR%%/INSTALL.pgsql.txt
+%%PORTDOCS%%%%DOCSDIR%%/INSTALL.sqlite.txt
+%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
+%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt
+%%PORTDOCS%%%%DOCSDIR%%/MAINTAINERS.txt
+%%PORTDOCS%%%%DOCSDIR%%/README.txt
+%%PORTDOCS%%%%DOCSDIR%%/UPGRADE.txt
+%%DRUPAL_BASE%%/.htaccess
+%%DRUPAL_BASE%%/authorize.php
+%%DRUPAL_BASE%%/cron.php
+%%DRUPAL_BASE%%/includes/actions.inc
+%%DRUPAL_BASE%%/includes/ajax.inc
+%%DRUPAL_BASE%%/includes/archiver.inc
+%%DRUPAL_BASE%%/includes/authorize.inc
+%%DRUPAL_BASE%%/includes/batch.inc
+%%DRUPAL_BASE%%/includes/batch.queue.inc
+%%DRUPAL_BASE%%/includes/bootstrap.inc
+%%DRUPAL_BASE%%/includes/cache-install.inc
+%%DRUPAL_BASE%%/includes/cache.inc
+%%DRUPAL_BASE%%/includes/common.inc
+%%DRUPAL_BASE%%/includes/database/database.inc
+%%DRUPAL_BASE%%/includes/database/log.inc
+%%DRUPAL_BASE%%/includes/database/mysql/database.inc
+%%DRUPAL_BASE%%/includes/database/mysql/install.inc
+%%DRUPAL_BASE%%/includes/database/mysql/query.inc
+%%DRUPAL_BASE%%/includes/database/mysql/schema.inc
+%%DRUPAL_BASE%%/includes/database/pgsql/database.inc
+%%DRUPAL_BASE%%/includes/database/pgsql/install.inc
+%%DRUPAL_BASE%%/includes/database/pgsql/query.inc
+%%DRUPAL_BASE%%/includes/database/pgsql/schema.inc
+%%DRUPAL_BASE%%/includes/database/pgsql/select.inc
+%%DRUPAL_BASE%%/includes/database/prefetch.inc
+%%DRUPAL_BASE%%/includes/database/query.inc
+%%DRUPAL_BASE%%/includes/database/schema.inc
+%%DRUPAL_BASE%%/includes/database/select.inc
+%%DRUPAL_BASE%%/includes/database/sqlite/database.inc
+%%DRUPAL_BASE%%/includes/database/sqlite/install.inc
+%%DRUPAL_BASE%%/includes/database/sqlite/query.inc
+%%DRUPAL_BASE%%/includes/database/sqlite/schema.inc
+%%DRUPAL_BASE%%/includes/database/sqlite/select.inc
+%%DRUPAL_BASE%%/includes/date.inc
+%%DRUPAL_BASE%%/includes/entity.inc
+%%DRUPAL_BASE%%/includes/errors.inc
+%%DRUPAL_BASE%%/includes/file.inc
+%%DRUPAL_BASE%%/includes/file.mimetypes.inc
+%%DRUPAL_BASE%%/includes/filetransfer/filetransfer.inc
+%%DRUPAL_BASE%%/includes/filetransfer/ftp.inc
+%%DRUPAL_BASE%%/includes/filetransfer/local.inc
+%%DRUPAL_BASE%%/includes/filetransfer/ssh.inc
+%%DRUPAL_BASE%%/includes/form.inc
+%%DRUPAL_BASE%%/includes/graph.inc
+%%DRUPAL_BASE%%/includes/image.inc
+%%DRUPAL_BASE%%/includes/install.core.inc
+%%DRUPAL_BASE%%/includes/install.inc
+%%DRUPAL_BASE%%/includes/iso.inc
+%%DRUPAL_BASE%%/includes/json-encode.inc
+%%DRUPAL_BASE%%/includes/language.inc
+%%DRUPAL_BASE%%/includes/locale.inc
+%%DRUPAL_BASE%%/includes/lock.inc
+%%DRUPAL_BASE%%/includes/mail.inc
+%%DRUPAL_BASE%%/includes/menu.inc
+%%DRUPAL_BASE%%/includes/module.inc
+%%DRUPAL_BASE%%/includes/pager.inc
+%%DRUPAL_BASE%%/includes/password.inc
+%%DRUPAL_BASE%%/includes/path.inc
+%%DRUPAL_BASE%%/includes/registry.inc
+%%DRUPAL_BASE%%/includes/session.inc
+%%DRUPAL_BASE%%/includes/stream_wrappers.inc
+%%DRUPAL_BASE%%/includes/tablesort.inc
+%%DRUPAL_BASE%%/includes/theme.inc
+%%DRUPAL_BASE%%/includes/theme.maintenance.inc
+%%DRUPAL_BASE%%/includes/token.inc
+%%DRUPAL_BASE%%/includes/unicode.entities.inc
+%%DRUPAL_BASE%%/includes/unicode.inc
+%%DRUPAL_BASE%%/includes/update.inc
+%%DRUPAL_BASE%%/includes/updater.inc
+%%DRUPAL_BASE%%/includes/utility.inc
+%%DRUPAL_BASE%%/includes/xmlrpc.inc
+%%DRUPAL_BASE%%/includes/xmlrpcs.inc
+%%DRUPAL_BASE%%/index.php
+%%DRUPAL_BASE%%/install.php
+%%DRUPAL_BASE%%/misc/ajax.js
+%%DRUPAL_BASE%%/misc/arrow-asc.png
+%%DRUPAL_BASE%%/misc/arrow-desc.png
+%%DRUPAL_BASE%%/misc/authorize.js
+%%DRUPAL_BASE%%/misc/autocomplete.js
+%%DRUPAL_BASE%%/misc/batch.js
+%%DRUPAL_BASE%%/misc/collapse.js
+%%DRUPAL_BASE%%/misc/configure.png
+%%DRUPAL_BASE%%/misc/draggable.png
+%%DRUPAL_BASE%%/misc/drupal.js
+%%DRUPAL_BASE%%/misc/druplicon.png
+%%DRUPAL_BASE%%/misc/farbtastic/farbtastic.css
+%%DRUPAL_BASE%%/misc/farbtastic/farbtastic.js
+%%DRUPAL_BASE%%/misc/farbtastic/marker.png
+%%DRUPAL_BASE%%/misc/farbtastic/mask.png
+%%DRUPAL_BASE%%/misc/farbtastic/wheel.png
+%%DRUPAL_BASE%%/misc/favicon.ico
+%%DRUPAL_BASE%%/misc/feed.png
+%%DRUPAL_BASE%%/misc/form.js
+%%DRUPAL_BASE%%/misc/forum-icons.png
+%%DRUPAL_BASE%%/misc/grippie.png
+%%DRUPAL_BASE%%/misc/help.png
+%%DRUPAL_BASE%%/misc/jquery.ba-bbq.js
+%%DRUPAL_BASE%%/misc/jquery.cookie.js
+%%DRUPAL_BASE%%/misc/jquery.form.js
+%%DRUPAL_BASE%%/misc/jquery.js
+%%DRUPAL_BASE%%/misc/jquery.once.js
+%%DRUPAL_BASE%%/misc/machine-name.js
+%%DRUPAL_BASE%%/misc/menu-collapsed-rtl.png
+%%DRUPAL_BASE%%/misc/menu-collapsed.png
+%%DRUPAL_BASE%%/misc/menu-expanded.png
+%%DRUPAL_BASE%%/misc/menu-leaf.png
+%%DRUPAL_BASE%%/misc/message-16-error.png
+%%DRUPAL_BASE%%/misc/message-16-help.png
+%%DRUPAL_BASE%%/misc/message-16-info.png
+%%DRUPAL_BASE%%/misc/message-16-ok.png
+%%DRUPAL_BASE%%/misc/message-16-warning.png
+%%DRUPAL_BASE%%/misc/message-24-error.png
+%%DRUPAL_BASE%%/misc/message-24-help.png
+%%DRUPAL_BASE%%/misc/message-24-info.png
+%%DRUPAL_BASE%%/misc/message-24-ok.png
+%%DRUPAL_BASE%%/misc/message-24-warning.png
+%%DRUPAL_BASE%%/misc/permissions.png
+%%DRUPAL_BASE%%/misc/powered-black-135x42.png
+%%DRUPAL_BASE%%/misc/powered-black-80x15.png
+%%DRUPAL_BASE%%/misc/powered-black-88x31.png
+%%DRUPAL_BASE%%/misc/powered-blue-135x42.png
+%%DRUPAL_BASE%%/misc/powered-blue-80x15.png
+%%DRUPAL_BASE%%/misc/powered-blue-88x31.png
+%%DRUPAL_BASE%%/misc/powered-gray-135x42.png
+%%DRUPAL_BASE%%/misc/powered-gray-80x15.png
+%%DRUPAL_BASE%%/misc/powered-gray-88x31.png
+%%DRUPAL_BASE%%/misc/print-rtl.css
+%%DRUPAL_BASE%%/misc/print.css
+%%DRUPAL_BASE%%/misc/progress.gif
+%%DRUPAL_BASE%%/misc/progress.js
+%%DRUPAL_BASE%%/misc/states.js
+%%DRUPAL_BASE%%/misc/tabledrag.js
+%%DRUPAL_BASE%%/misc/tableheader.js
+%%DRUPAL_BASE%%/misc/tableselect.js
+%%DRUPAL_BASE%%/misc/textarea.js
+%%DRUPAL_BASE%%/misc/throbber-active.gif
+%%DRUPAL_BASE%%/misc/throbber-inactive.png
+%%DRUPAL_BASE%%/misc/throbber.gif
+%%DRUPAL_BASE%%/misc/timezone.js
+%%DRUPAL_BASE%%/misc/tree-bottom.png
+%%DRUPAL_BASE%%/misc/tree.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-bg_flat_75_ffffff_40x100.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-bg_glass_55_fbf9ee_1x400.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-bg_glass_65_ffffff_1x400.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-bg_glass_75_dadada_1x400.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-bg_glass_75_e6e6e6_1x400.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-bg_glass_95_fef1ec_1x400.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-icons_222222_256x240.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-icons_2e83ff_256x240.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-icons_454545_256x240.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-icons_888888_256x240.png
+%%DRUPAL_BASE%%/misc/ui/images/ui-icons_cd0a0a_256x240.png
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.blind.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.bounce.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.clip.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.core.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.drop.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.explode.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.fade.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.fold.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.highlight.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.pulsate.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.scale.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.shake.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.slide.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.effects.transfer.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.accordion.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.accordion.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.autocomplete.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.autocomplete.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.button.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.button.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.core.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.core.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.datepicker.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.datepicker.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.dialog.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.dialog.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.draggable.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.droppable.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.mouse.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.position.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.progressbar.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.progressbar.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.resizable.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.resizable.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.selectable.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.selectable.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.slider.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.slider.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.sortable.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.tabs.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.tabs.min.js
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.theme.css
+%%DRUPAL_BASE%%/misc/ui/jquery.ui.widget.min.js
+%%DRUPAL_BASE%%/misc/vertical-tabs-rtl.css
+%%DRUPAL_BASE%%/misc/vertical-tabs.css
+%%DRUPAL_BASE%%/misc/vertical-tabs.js
+%%DRUPAL_BASE%%/misc/watchdog-error.png
+%%DRUPAL_BASE%%/misc/watchdog-ok.png
+%%DRUPAL_BASE%%/misc/watchdog-warning.png
+%%DRUPAL_BASE%%/modules/README.txt
+%%DRUPAL_BASE%%/modules/aggregator/aggregator-feed-source.tpl.php
+%%DRUPAL_BASE%%/modules/aggregator/aggregator-item.tpl.php
+%%DRUPAL_BASE%%/modules/aggregator/aggregator-rtl.css
+%%DRUPAL_BASE%%/modules/aggregator/aggregator-summary-item.tpl.php
+%%DRUPAL_BASE%%/modules/aggregator/aggregator-summary-items.tpl.php
+%%DRUPAL_BASE%%/modules/aggregator/aggregator-wrapper.tpl.php
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.admin.inc
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.api.php
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.css
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.fetcher.inc
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.info
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.install
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.module
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.pages.inc
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.parser.inc
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.processor.inc
+%%DRUPAL_BASE%%/modules/aggregator/aggregator.test
+%%DRUPAL_BASE%%/modules/aggregator/tests/aggregator_test.info
+%%DRUPAL_BASE%%/modules/aggregator/tests/aggregator_test.module
+%%DRUPAL_BASE%%/modules/aggregator/tests/aggregator_test_atom.xml
+%%DRUPAL_BASE%%/modules/aggregator/tests/aggregator_test_rss091.xml
+%%DRUPAL_BASE%%/modules/aggregator/tests/aggregator_test_title_entities.xml
+%%DRUPAL_BASE%%/modules/block/block-admin-display-form.tpl.php
+%%DRUPAL_BASE%%/modules/block/block.admin.inc
+%%DRUPAL_BASE%%/modules/block/block.api.php
+%%DRUPAL_BASE%%/modules/block/block.css
+%%DRUPAL_BASE%%/modules/block/block.info
+%%DRUPAL_BASE%%/modules/block/block.install
+%%DRUPAL_BASE%%/modules/block/block.js
+%%DRUPAL_BASE%%/modules/block/block.module
+%%DRUPAL_BASE%%/modules/block/block.test
+%%DRUPAL_BASE%%/modules/block/block.tpl.php
+%%DRUPAL_BASE%%/modules/block/tests/block_test.info
+%%DRUPAL_BASE%%/modules/block/tests/block_test.module
+%%DRUPAL_BASE%%/modules/block/tests/themes/block_test_theme/block_test_theme.info
+%%DRUPAL_BASE%%/modules/block/tests/themes/block_test_theme/page.tpl.php
+%%DRUPAL_BASE%%/modules/blog/blog.info
+%%DRUPAL_BASE%%/modules/blog/blog.install
+%%DRUPAL_BASE%%/modules/blog/blog.module
+%%DRUPAL_BASE%%/modules/blog/blog.pages.inc
+%%DRUPAL_BASE%%/modules/blog/blog.test
+%%DRUPAL_BASE%%/modules/book/book-all-books-block.tpl.php
+%%DRUPAL_BASE%%/modules/book/book-export-html.tpl.php
+%%DRUPAL_BASE%%/modules/book/book-navigation.tpl.php
+%%DRUPAL_BASE%%/modules/book/book-node-export-html.tpl.php
+%%DRUPAL_BASE%%/modules/book/book-rtl.css
+%%DRUPAL_BASE%%/modules/book/book.admin.inc
+%%DRUPAL_BASE%%/modules/book/book.css
+%%DRUPAL_BASE%%/modules/book/book.info
+%%DRUPAL_BASE%%/modules/book/book.install
+%%DRUPAL_BASE%%/modules/book/book.js
+%%DRUPAL_BASE%%/modules/book/book.module
+%%DRUPAL_BASE%%/modules/book/book.pages.inc
+%%DRUPAL_BASE%%/modules/book/book.test
+%%DRUPAL_BASE%%/modules/color/color-rtl.css
+%%DRUPAL_BASE%%/modules/color/color.css
+%%DRUPAL_BASE%%/modules/color/color.info
+%%DRUPAL_BASE%%/modules/color/color.install
+%%DRUPAL_BASE%%/modules/color/color.js
+%%DRUPAL_BASE%%/modules/color/color.module
+%%DRUPAL_BASE%%/modules/color/color.test
+%%DRUPAL_BASE%%/modules/color/images/hook-rtl.png
+%%DRUPAL_BASE%%/modules/color/images/hook.png
+%%DRUPAL_BASE%%/modules/color/images/lock.png
+%%DRUPAL_BASE%%/modules/color/preview.html
+%%DRUPAL_BASE%%/modules/color/preview.js
+%%DRUPAL_BASE%%/modules/comment/comment-node-form.js
+%%DRUPAL_BASE%%/modules/comment/comment-rtl.css
+%%DRUPAL_BASE%%/modules/comment/comment-wrapper.tpl.php
+%%DRUPAL_BASE%%/modules/comment/comment.admin.inc
+%%DRUPAL_BASE%%/modules/comment/comment.api.php
+%%DRUPAL_BASE%%/modules/comment/comment.css
+%%DRUPAL_BASE%%/modules/comment/comment.info
+%%DRUPAL_BASE%%/modules/comment/comment.install
+%%DRUPAL_BASE%%/modules/comment/comment.module
+%%DRUPAL_BASE%%/modules/comment/comment.pages.inc
+%%DRUPAL_BASE%%/modules/comment/comment.test
+%%DRUPAL_BASE%%/modules/comment/comment.tokens.inc
+%%DRUPAL_BASE%%/modules/comment/comment.tpl.php
+%%DRUPAL_BASE%%/modules/contact/contact.admin.inc
+%%DRUPAL_BASE%%/modules/contact/contact.info
+%%DRUPAL_BASE%%/modules/contact/contact.install
+%%DRUPAL_BASE%%/modules/contact/contact.module
+%%DRUPAL_BASE%%/modules/contact/contact.pages.inc
+%%DRUPAL_BASE%%/modules/contact/contact.test
+%%DRUPAL_BASE%%/modules/contextual/contextual-rtl.css
+%%DRUPAL_BASE%%/modules/contextual/contextual.api.php
+%%DRUPAL_BASE%%/modules/contextual/contextual.css
+%%DRUPAL_BASE%%/modules/contextual/contextual.info
+%%DRUPAL_BASE%%/modules/contextual/contextual.js
+%%DRUPAL_BASE%%/modules/contextual/contextual.module
+%%DRUPAL_BASE%%/modules/contextual/contextual.test
+%%DRUPAL_BASE%%/modules/contextual/images/gear-select.png
+%%DRUPAL_BASE%%/modules/dashboard/dashboard-rtl.css
+%%DRUPAL_BASE%%/modules/dashboard/dashboard.api.php
+%%DRUPAL_BASE%%/modules/dashboard/dashboard.css
+%%DRUPAL_BASE%%/modules/dashboard/dashboard.info
+%%DRUPAL_BASE%%/modules/dashboard/dashboard.install
+%%DRUPAL_BASE%%/modules/dashboard/dashboard.js
+%%DRUPAL_BASE%%/modules/dashboard/dashboard.module
+%%DRUPAL_BASE%%/modules/dashboard/dashboard.test
+%%DRUPAL_BASE%%/modules/dblog/dblog-rtl.css
+%%DRUPAL_BASE%%/modules/dblog/dblog.admin.inc
+%%DRUPAL_BASE%%/modules/dblog/dblog.css
+%%DRUPAL_BASE%%/modules/dblog/dblog.info
+%%DRUPAL_BASE%%/modules/dblog/dblog.install
+%%DRUPAL_BASE%%/modules/dblog/dblog.module
+%%DRUPAL_BASE%%/modules/dblog/dblog.test
+%%DRUPAL_BASE%%/modules/field/field.api.php
+%%DRUPAL_BASE%%/modules/field/field.attach.inc
+%%DRUPAL_BASE%%/modules/field/field.crud.inc
+%%DRUPAL_BASE%%/modules/field/field.default.inc
+%%DRUPAL_BASE%%/modules/field/field.form.inc
+%%DRUPAL_BASE%%/modules/field/field.info
+%%DRUPAL_BASE%%/modules/field/field.info.class.inc
+%%DRUPAL_BASE%%/modules/field/field.info.inc
+%%DRUPAL_BASE%%/modules/field/field.install
+%%DRUPAL_BASE%%/modules/field/field.module
+%%DRUPAL_BASE%%/modules/field/field.multilingual.inc
+%%DRUPAL_BASE%%/modules/field/modules/field_sql_storage/field_sql_storage.info
+%%DRUPAL_BASE%%/modules/field/modules/field_sql_storage/field_sql_storage.install
+%%DRUPAL_BASE%%/modules/field/modules/field_sql_storage/field_sql_storage.module
+%%DRUPAL_BASE%%/modules/field/modules/field_sql_storage/field_sql_storage.test
+%%DRUPAL_BASE%%/modules/field/modules/list/list.info
+%%DRUPAL_BASE%%/modules/field/modules/list/list.install
+%%DRUPAL_BASE%%/modules/field/modules/list/list.module
+%%DRUPAL_BASE%%/modules/field/modules/list/tests/list.test
+%%DRUPAL_BASE%%/modules/field/modules/list/tests/list_test.info
+%%DRUPAL_BASE%%/modules/field/modules/list/tests/list_test.module
+%%DRUPAL_BASE%%/modules/field/modules/number/number.info
+%%DRUPAL_BASE%%/modules/field/modules/number/number.install
+%%DRUPAL_BASE%%/modules/field/modules/number/number.module
+%%DRUPAL_BASE%%/modules/field/modules/number/number.test
+%%DRUPAL_BASE%%/modules/field/modules/options/options.api.php
+%%DRUPAL_BASE%%/modules/field/modules/options/options.info
+%%DRUPAL_BASE%%/modules/field/modules/options/options.module
+%%DRUPAL_BASE%%/modules/field/modules/options/options.test
+%%DRUPAL_BASE%%/modules/field/modules/text/text.info
+%%DRUPAL_BASE%%/modules/field/modules/text/text.install
+%%DRUPAL_BASE%%/modules/field/modules/text/text.js
+%%DRUPAL_BASE%%/modules/field/modules/text/text.module
+%%DRUPAL_BASE%%/modules/field/modules/text/text.test
+%%DRUPAL_BASE%%/modules/field/tests/field.test
+%%DRUPAL_BASE%%/modules/field/tests/field_test.entity.inc
+%%DRUPAL_BASE%%/modules/field/tests/field_test.field.inc
+%%DRUPAL_BASE%%/modules/field/tests/field_test.info
+%%DRUPAL_BASE%%/modules/field/tests/field_test.install
+%%DRUPAL_BASE%%/modules/field/tests/field_test.module
+%%DRUPAL_BASE%%/modules/field/tests/field_test.storage.inc
+%%DRUPAL_BASE%%/modules/field/theme/field-rtl.css
+%%DRUPAL_BASE%%/modules/field/theme/field.css
+%%DRUPAL_BASE%%/modules/field/theme/field.tpl.php
+%%DRUPAL_BASE%%/modules/field_ui/field_ui-rtl.css
+%%DRUPAL_BASE%%/modules/field_ui/field_ui.admin.inc
+%%DRUPAL_BASE%%/modules/field_ui/field_ui.api.php
+%%DRUPAL_BASE%%/modules/field_ui/field_ui.css
+%%DRUPAL_BASE%%/modules/field_ui/field_ui.info
+%%DRUPAL_BASE%%/modules/field_ui/field_ui.js
+%%DRUPAL_BASE%%/modules/field_ui/field_ui.module
+%%DRUPAL_BASE%%/modules/field_ui/field_ui.test
+%%DRUPAL_BASE%%/modules/file/file.api.php
+%%DRUPAL_BASE%%/modules/file/file.css
+%%DRUPAL_BASE%%/modules/file/file.field.inc
+%%DRUPAL_BASE%%/modules/file/file.info
+%%DRUPAL_BASE%%/modules/file/file.install
+%%DRUPAL_BASE%%/modules/file/file.js
+%%DRUPAL_BASE%%/modules/file/file.module
+%%DRUPAL_BASE%%/modules/file/icons/application-octet-stream.png
+%%DRUPAL_BASE%%/modules/file/icons/application-pdf.png
+%%DRUPAL_BASE%%/modules/file/icons/application-x-executable.png
+%%DRUPAL_BASE%%/modules/file/icons/audio-x-generic.png
+%%DRUPAL_BASE%%/modules/file/icons/image-x-generic.png
+%%DRUPAL_BASE%%/modules/file/icons/package-x-generic.png
+%%DRUPAL_BASE%%/modules/file/icons/text-html.png
+%%DRUPAL_BASE%%/modules/file/icons/text-plain.png
+%%DRUPAL_BASE%%/modules/file/icons/text-x-generic.png
+%%DRUPAL_BASE%%/modules/file/icons/text-x-script.png
+%%DRUPAL_BASE%%/modules/file/icons/video-x-generic.png
+%%DRUPAL_BASE%%/modules/file/icons/x-office-document.png
+%%DRUPAL_BASE%%/modules/file/icons/x-office-presentation.png
+%%DRUPAL_BASE%%/modules/file/icons/x-office-spreadsheet.png
+%%DRUPAL_BASE%%/modules/file/tests/file.test
+%%DRUPAL_BASE%%/modules/file/tests/file_module_test.info
+%%DRUPAL_BASE%%/modules/file/tests/file_module_test.module
+%%DRUPAL_BASE%%/modules/filter/filter.admin.inc
+%%DRUPAL_BASE%%/modules/filter/filter.admin.js
+%%DRUPAL_BASE%%/modules/filter/filter.api.php
+%%DRUPAL_BASE%%/modules/filter/filter.css
+%%DRUPAL_BASE%%/modules/filter/filter.info
+%%DRUPAL_BASE%%/modules/filter/filter.install
+%%DRUPAL_BASE%%/modules/filter/filter.js
+%%DRUPAL_BASE%%/modules/filter/filter.module
+%%DRUPAL_BASE%%/modules/filter/filter.pages.inc
+%%DRUPAL_BASE%%/modules/filter/filter.test
+%%DRUPAL_BASE%%/modules/filter/tests/filter.url-input.txt
+%%DRUPAL_BASE%%/modules/filter/tests/filter.url-output.txt
+%%DRUPAL_BASE%%/modules/forum/forum-icon.tpl.php
+%%DRUPAL_BASE%%/modules/forum/forum-list.tpl.php
+%%DRUPAL_BASE%%/modules/forum/forum-rtl.css
+%%DRUPAL_BASE%%/modules/forum/forum-submitted.tpl.php
+%%DRUPAL_BASE%%/modules/forum/forum-topic-list.tpl.php
+%%DRUPAL_BASE%%/modules/forum/forum.admin.inc
+%%DRUPAL_BASE%%/modules/forum/forum.css
+%%DRUPAL_BASE%%/modules/forum/forum.info
+%%DRUPAL_BASE%%/modules/forum/forum.install
+%%DRUPAL_BASE%%/modules/forum/forum.module
+%%DRUPAL_BASE%%/modules/forum/forum.pages.inc
+%%DRUPAL_BASE%%/modules/forum/forum.test
+%%DRUPAL_BASE%%/modules/forum/forums.tpl.php
+%%DRUPAL_BASE%%/modules/help/help-rtl.css
+%%DRUPAL_BASE%%/modules/help/help.admin.inc
+%%DRUPAL_BASE%%/modules/help/help.css
+%%DRUPAL_BASE%%/modules/help/help.info
+%%DRUPAL_BASE%%/modules/help/help.module
+%%DRUPAL_BASE%%/modules/help/help.test
+%%DRUPAL_BASE%%/modules/image/image-rtl.css
+%%DRUPAL_BASE%%/modules/image/image.admin.css
+%%DRUPAL_BASE%%/modules/image/image.admin.inc
+%%DRUPAL_BASE%%/modules/image/image.api.php
+%%DRUPAL_BASE%%/modules/image/image.css
+%%DRUPAL_BASE%%/modules/image/image.effects.inc
+%%DRUPAL_BASE%%/modules/image/image.field.inc
+%%DRUPAL_BASE%%/modules/image/image.info
+%%DRUPAL_BASE%%/modules/image/image.install
+%%DRUPAL_BASE%%/modules/image/image.module
+%%DRUPAL_BASE%%/modules/image/image.test
+%%DRUPAL_BASE%%/modules/image/sample.png
+%%DRUPAL_BASE%%/modules/image/tests/image_module_test.info
+%%DRUPAL_BASE%%/modules/image/tests/image_module_test.module
+%%DRUPAL_BASE%%/modules/locale/locale-rtl.css
+%%DRUPAL_BASE%%/modules/locale/locale.admin.inc
+%%DRUPAL_BASE%%/modules/locale/locale.api.php
+%%DRUPAL_BASE%%/modules/locale/locale.css
+%%DRUPAL_BASE%%/modules/locale/locale.datepicker.js
+%%DRUPAL_BASE%%/modules/locale/locale.info
+%%DRUPAL_BASE%%/modules/locale/locale.install
+%%DRUPAL_BASE%%/modules/locale/locale.module
+%%DRUPAL_BASE%%/modules/locale/locale.test
+%%DRUPAL_BASE%%/modules/locale/tests/locale_test.info
+%%DRUPAL_BASE%%/modules/locale/tests/locale_test.js
+%%DRUPAL_BASE%%/modules/locale/tests/locale_test.module
+%%DRUPAL_BASE%%/modules/locale/tests/translations/test.xx.po
+%%DRUPAL_BASE%%/modules/menu/menu.admin.inc
+%%DRUPAL_BASE%%/modules/menu/menu.admin.js
+%%DRUPAL_BASE%%/modules/menu/menu.api.php
+%%DRUPAL_BASE%%/modules/menu/menu.css
+%%DRUPAL_BASE%%/modules/menu/menu.info
+%%DRUPAL_BASE%%/modules/menu/menu.install
+%%DRUPAL_BASE%%/modules/menu/menu.js
+%%DRUPAL_BASE%%/modules/menu/menu.module
+%%DRUPAL_BASE%%/modules/menu/menu.test
+%%DRUPAL_BASE%%/modules/node/content_types.inc
+%%DRUPAL_BASE%%/modules/node/content_types.js
+%%DRUPAL_BASE%%/modules/node/node.admin.inc
+%%DRUPAL_BASE%%/modules/node/node.api.php
+%%DRUPAL_BASE%%/modules/node/node.css
+%%DRUPAL_BASE%%/modules/node/node.info
+%%DRUPAL_BASE%%/modules/node/node.install
+%%DRUPAL_BASE%%/modules/node/node.js
+%%DRUPAL_BASE%%/modules/node/node.module
+%%DRUPAL_BASE%%/modules/node/node.pages.inc
+%%DRUPAL_BASE%%/modules/node/node.test
+%%DRUPAL_BASE%%/modules/node/node.tokens.inc
+%%DRUPAL_BASE%%/modules/node/node.tpl.php
+%%DRUPAL_BASE%%/modules/node/tests/node_access_test.info
+%%DRUPAL_BASE%%/modules/node/tests/node_access_test.install
+%%DRUPAL_BASE%%/modules/node/tests/node_access_test.module
+%%DRUPAL_BASE%%/modules/node/tests/node_test.info
+%%DRUPAL_BASE%%/modules/node/tests/node_test.module
+%%DRUPAL_BASE%%/modules/node/tests/node_test_exception.info
+%%DRUPAL_BASE%%/modules/node/tests/node_test_exception.module
+%%DRUPAL_BASE%%/modules/openid/login-bg.png
+%%DRUPAL_BASE%%/modules/openid/openid-rtl.css
+%%DRUPAL_BASE%%/modules/openid/openid.api.php
+%%DRUPAL_BASE%%/modules/openid/openid.css
+%%DRUPAL_BASE%%/modules/openid/openid.inc
+%%DRUPAL_BASE%%/modules/openid/openid.info
+%%DRUPAL_BASE%%/modules/openid/openid.install
+%%DRUPAL_BASE%%/modules/openid/openid.js
+%%DRUPAL_BASE%%/modules/openid/openid.module
+%%DRUPAL_BASE%%/modules/openid/openid.pages.inc
+%%DRUPAL_BASE%%/modules/openid/openid.test
+%%DRUPAL_BASE%%/modules/openid/tests/openid_test.info
+%%DRUPAL_BASE%%/modules/openid/tests/openid_test.install
+%%DRUPAL_BASE%%/modules/openid/tests/openid_test.module
+%%DRUPAL_BASE%%/modules/overlay/images/background.png
+%%DRUPAL_BASE%%/modules/overlay/images/close-rtl.png
+%%DRUPAL_BASE%%/modules/overlay/images/close.png
+%%DRUPAL_BASE%%/modules/overlay/overlay-child-rtl.css
+%%DRUPAL_BASE%%/modules/overlay/overlay-child.css
+%%DRUPAL_BASE%%/modules/overlay/overlay-child.js
+%%DRUPAL_BASE%%/modules/overlay/overlay-parent.css
+%%DRUPAL_BASE%%/modules/overlay/overlay-parent.js
+%%DRUPAL_BASE%%/modules/overlay/overlay.api.php
+%%DRUPAL_BASE%%/modules/overlay/overlay.info
+%%DRUPAL_BASE%%/modules/overlay/overlay.install
+%%DRUPAL_BASE%%/modules/overlay/overlay.module
+%%DRUPAL_BASE%%/modules/overlay/overlay.tpl.php
+%%DRUPAL_BASE%%/modules/path/path.admin.inc
+%%DRUPAL_BASE%%/modules/path/path.api.php
+%%DRUPAL_BASE%%/modules/path/path.info
+%%DRUPAL_BASE%%/modules/path/path.js
+%%DRUPAL_BASE%%/modules/path/path.module
+%%DRUPAL_BASE%%/modules/path/path.test
+%%DRUPAL_BASE%%/modules/php/php.info
+%%DRUPAL_BASE%%/modules/php/php.install
+%%DRUPAL_BASE%%/modules/php/php.module
+%%DRUPAL_BASE%%/modules/php/php.test
+%%DRUPAL_BASE%%/modules/poll/poll-bar--block.tpl.php
+%%DRUPAL_BASE%%/modules/poll/poll-bar.tpl.php
+%%DRUPAL_BASE%%/modules/poll/poll-results--block.tpl.php
+%%DRUPAL_BASE%%/modules/poll/poll-results.tpl.php
+%%DRUPAL_BASE%%/modules/poll/poll-rtl.css
+%%DRUPAL_BASE%%/modules/poll/poll-vote.tpl.php
+%%DRUPAL_BASE%%/modules/poll/poll.css
+%%DRUPAL_BASE%%/modules/poll/poll.info
+%%DRUPAL_BASE%%/modules/poll/poll.install
+%%DRUPAL_BASE%%/modules/poll/poll.module
+%%DRUPAL_BASE%%/modules/poll/poll.pages.inc
+%%DRUPAL_BASE%%/modules/poll/poll.test
+%%DRUPAL_BASE%%/modules/poll/poll.tokens.inc
+%%DRUPAL_BASE%%/modules/profile/profile-block.tpl.php
+%%DRUPAL_BASE%%/modules/profile/profile-listing.tpl.php
+%%DRUPAL_BASE%%/modules/profile/profile-wrapper.tpl.php
+%%DRUPAL_BASE%%/modules/profile/profile.admin.inc
+%%DRUPAL_BASE%%/modules/profile/profile.css
+%%DRUPAL_BASE%%/modules/profile/profile.info
+%%DRUPAL_BASE%%/modules/profile/profile.install
+%%DRUPAL_BASE%%/modules/profile/profile.js
+%%DRUPAL_BASE%%/modules/profile/profile.module
+%%DRUPAL_BASE%%/modules/profile/profile.pages.inc
+%%DRUPAL_BASE%%/modules/profile/profile.test
+%%DRUPAL_BASE%%/modules/rdf/rdf.api.php
+%%DRUPAL_BASE%%/modules/rdf/rdf.info
+%%DRUPAL_BASE%%/modules/rdf/rdf.install
+%%DRUPAL_BASE%%/modules/rdf/rdf.module
+%%DRUPAL_BASE%%/modules/rdf/rdf.test
+%%DRUPAL_BASE%%/modules/rdf/tests/rdf_test.info
+%%DRUPAL_BASE%%/modules/rdf/tests/rdf_test.install
+%%DRUPAL_BASE%%/modules/rdf/tests/rdf_test.module
+%%DRUPAL_BASE%%/modules/search/search-block-form.tpl.php
+%%DRUPAL_BASE%%/modules/search/search-result.tpl.php
+%%DRUPAL_BASE%%/modules/search/search-results.tpl.php
+%%DRUPAL_BASE%%/modules/search/search-rtl.css
+%%DRUPAL_BASE%%/modules/search/search.admin.inc
+%%DRUPAL_BASE%%/modules/search/search.api.php
+%%DRUPAL_BASE%%/modules/search/search.css
+%%DRUPAL_BASE%%/modules/search/search.extender.inc
+%%DRUPAL_BASE%%/modules/search/search.info
+%%DRUPAL_BASE%%/modules/search/search.install
+%%DRUPAL_BASE%%/modules/search/search.module
+%%DRUPAL_BASE%%/modules/search/search.pages.inc
+%%DRUPAL_BASE%%/modules/search/search.test
+%%DRUPAL_BASE%%/modules/search/tests/UnicodeTest.txt
+%%DRUPAL_BASE%%/modules/search/tests/search_embedded_form.info
+%%DRUPAL_BASE%%/modules/search/tests/search_embedded_form.module
+%%DRUPAL_BASE%%/modules/search/tests/search_extra_type.info
+%%DRUPAL_BASE%%/modules/search/tests/search_extra_type.module
+%%DRUPAL_BASE%%/modules/search/tests/search_node_tags.info
+%%DRUPAL_BASE%%/modules/search/tests/search_node_tags.module
+%%DRUPAL_BASE%%/modules/shortcut/shortcut-rtl.css
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.admin.css
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.admin.inc
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.admin.js
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.api.php
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.css
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.info
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.install
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.module
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.png
+%%DRUPAL_BASE%%/modules/shortcut/shortcut.test
+%%DRUPAL_BASE%%/modules/simpletest/drupal_web_test_case.php
+%%DRUPAL_BASE%%/modules/simpletest/files/README.txt
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/comment_hacks.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/comment_hacks.css.optimized.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/comment_hacks.css.unoptimized.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_input_with_import.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_input_with_import.css.optimized.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_input_with_import.css.unoptimized.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_input_without_import.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_input_without_import.css.optimized.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_input_without_import.css.unoptimized.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_subfolder/css_input_with_import.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_subfolder/css_input_with_import.css.optimized.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_subfolder/css_input_with_import.css.unoptimized.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/import1.css
+%%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/import2.css
+%%DRUPAL_BASE%%/modules/simpletest/files/html-1.txt
+%%DRUPAL_BASE%%/modules/simpletest/files/html-2.html
+%%DRUPAL_BASE%%/modules/simpletest/files/image-1.png
+%%DRUPAL_BASE%%/modules/simpletest/files/image-2.jpg
+%%DRUPAL_BASE%%/modules/simpletest/files/image-test-transparent-out-of-range.gif
+%%DRUPAL_BASE%%/modules/simpletest/files/image-test.gif
+%%DRUPAL_BASE%%/modules/simpletest/files/image-test.jpg
+%%DRUPAL_BASE%%/modules/simpletest/files/image-test.png
+%%DRUPAL_BASE%%/modules/simpletest/files/javascript-1.txt
+%%DRUPAL_BASE%%/modules/simpletest/files/javascript-2.script
+%%DRUPAL_BASE%%/modules/simpletest/files/php-1.txt
+%%DRUPAL_BASE%%/modules/simpletest/files/php-2.php
+%%DRUPAL_BASE%%/modules/simpletest/files/sql-1.txt
+%%DRUPAL_BASE%%/modules/simpletest/files/sql-2.sql
+%%DRUPAL_BASE%%/modules/simpletest/lib/Drupal/simpletest/Tests/PSR0WebTest.php
+%%DRUPAL_BASE%%/modules/simpletest/simpletest.api.php
+%%DRUPAL_BASE%%/modules/simpletest/simpletest.css
+%%DRUPAL_BASE%%/modules/simpletest/simpletest.info
+%%DRUPAL_BASE%%/modules/simpletest/simpletest.install
+%%DRUPAL_BASE%%/modules/simpletest/simpletest.js
+%%DRUPAL_BASE%%/modules/simpletest/simpletest.module
+%%DRUPAL_BASE%%/modules/simpletest/simpletest.pages.inc
+%%DRUPAL_BASE%%/modules/simpletest/simpletest.test
+%%DRUPAL_BASE%%/modules/simpletest/src/Tests/PSR4WebTest.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/actions.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/actions_loop_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/actions_loop_test.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/actions_loop_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/ajax.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/ajax_forms_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/ajax_forms_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/ajax_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/ajax_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/batch.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/batch_test.callbacks.inc
+%%DRUPAL_BASE%%/modules/simpletest/tests/batch_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/batch_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/bootstrap.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/cache.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/common.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/common_test.css
+%%DRUPAL_BASE%%/modules/simpletest/tests/common_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/common_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/common_test.print.css
+%%DRUPAL_BASE%%/modules/simpletest/tests/common_test_cron_helper.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/common_test_cron_helper.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/common_test_info.txt
+%%DRUPAL_BASE%%/modules/simpletest/tests/database_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/database_test.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/database_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/database_test.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test_class.inc
+%%DRUPAL_BASE%%/modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test_interface.inc
+%%DRUPAL_BASE%%/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_cache_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_cache_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_cache_test_dependency.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_cache_test_dependency.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_crud.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_crud_hook_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_crud_hook_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_crud_hook_test.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_query.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_query_access_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/entity_query_access_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/error.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/error_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/error_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/file.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/file_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/file_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/filetransfer.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/filter_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/filter_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/form.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/form_test.file.inc
+%%DRUPAL_BASE%%/modules/simpletest/tests/form_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/form_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/graph.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/http.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/https.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/image.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/image_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/image_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/lock.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/mail.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/menu.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/menu_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/menu_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/module.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/module_test.file.inc
+%%DRUPAL_BASE%%/modules/simpletest/tests/module_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/module_test.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/module_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/pager.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/password.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/path.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/path_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/path_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test/lib/Drupal/psr_0_test/Tests/ExampleTest.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test/lib/Drupal/psr_0_test/Tests/Nested/NestedExampleTest.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test/psr_0_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test/psr_0_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/psr_4_test/psr_4_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/psr_4_test/psr_4_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/psr_4_test/src/Tests/ExampleTest.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/psr_4_test/src/Tests/Nested/NestedExampleTest.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/registry.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/requirements1_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/requirements1_test.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/requirements1_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/requirements2_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/requirements2_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/schema.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/session.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/session_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/session_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/system.base.css
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_dependencies_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_dependencies_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_incompatible_core_version_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_incompatible_core_version_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_incompatible_module_version_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_incompatible_module_version_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/system_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/tablesort.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/taxonomy_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/taxonomy_test.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/taxonomy_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/theme.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/theme_test.inc
+%%DRUPAL_BASE%%/modules/simpletest/tests/theme_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/theme_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/theme_test.template_test.tpl.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/themes/test_theme/template.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/themes/test_theme/templates/node--1.tpl.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/themes/test_theme/test_theme.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/unicode.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/update.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_script_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_script_test.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_script_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_test_1.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_test_1.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_test_1.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_test_2.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_test_2.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_test_2.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_test_3.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_test_3.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/update_test_3.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.bare.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.comments.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.duplicate-permission.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.filled.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.forum.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.locale.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.menu.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.node_type_broken.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.translatable.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.trigger.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.upload.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.user-no-password-token.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-6.user-password-token.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-7.aggregator.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-7.bare.minimal.database.php.gz
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-7.bare.standard_all.database.php.gz
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-7.field.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-7.filled.minimal.database.php.gz
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-7.filled.standard_all.database.php.gz
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/drupal-7.trigger.database.php
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/update.aggregator.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/update.field.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/update.trigger.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/update.user.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.comment.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.filter.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.forum.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.locale.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.menu.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.node.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.poll.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.taxonomy.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.translatable.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.trigger.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.upload.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/upgrade/upgrade.user.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/url_alter_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/url_alter_test.install
+%%DRUPAL_BASE%%/modules/simpletest/tests/url_alter_test.module
+%%DRUPAL_BASE%%/modules/simpletest/tests/xmlrpc.test
+%%DRUPAL_BASE%%/modules/simpletest/tests/xmlrpc_test.info
+%%DRUPAL_BASE%%/modules/simpletest/tests/xmlrpc_test.module
+%%DRUPAL_BASE%%/modules/statistics/statistics.admin.inc
+%%DRUPAL_BASE%%/modules/statistics/statistics.info
+%%DRUPAL_BASE%%/modules/statistics/statistics.install
+%%DRUPAL_BASE%%/modules/statistics/statistics.js
+%%DRUPAL_BASE%%/modules/statistics/statistics.module
+%%DRUPAL_BASE%%/modules/statistics/statistics.pages.inc
+%%DRUPAL_BASE%%/modules/statistics/statistics.php
+%%DRUPAL_BASE%%/modules/statistics/statistics.test
+%%DRUPAL_BASE%%/modules/statistics/statistics.tokens.inc
+%%DRUPAL_BASE%%/modules/syslog/syslog.info
+%%DRUPAL_BASE%%/modules/syslog/syslog.install
+%%DRUPAL_BASE%%/modules/syslog/syslog.module
+%%DRUPAL_BASE%%/modules/syslog/syslog.test
+%%DRUPAL_BASE%%/modules/system/form.api.php
+%%DRUPAL_BASE%%/modules/system/html.tpl.php
+%%DRUPAL_BASE%%/modules/system/image.gd.inc
+%%DRUPAL_BASE%%/modules/system/language.api.php
+%%DRUPAL_BASE%%/modules/system/maintenance-page.tpl.php
+%%DRUPAL_BASE%%/modules/system/page.tpl.php
+%%DRUPAL_BASE%%/modules/system/region.tpl.php
+%%DRUPAL_BASE%%/modules/system/system.admin-rtl.css
+%%DRUPAL_BASE%%/modules/system/system.admin.css
+%%DRUPAL_BASE%%/modules/system/system.admin.inc
+%%DRUPAL_BASE%%/modules/system/system.api.php
+%%DRUPAL_BASE%%/modules/system/system.archiver.inc
+%%DRUPAL_BASE%%/modules/system/system.base-rtl.css
+%%DRUPAL_BASE%%/modules/system/system.base.css
+%%DRUPAL_BASE%%/modules/system/system.cron.js
+%%DRUPAL_BASE%%/modules/system/system.info
+%%DRUPAL_BASE%%/modules/system/system.install
+%%DRUPAL_BASE%%/modules/system/system.js
+%%DRUPAL_BASE%%/modules/system/system.mail.inc
+%%DRUPAL_BASE%%/modules/system/system.maintenance.css
+%%DRUPAL_BASE%%/modules/system/system.menus-rtl.css
+%%DRUPAL_BASE%%/modules/system/system.menus.css
+%%DRUPAL_BASE%%/modules/system/system.messages-rtl.css
+%%DRUPAL_BASE%%/modules/system/system.messages.css
+%%DRUPAL_BASE%%/modules/system/system.module
+%%DRUPAL_BASE%%/modules/system/system.queue.inc
+%%DRUPAL_BASE%%/modules/system/system.tar.inc
+%%DRUPAL_BASE%%/modules/system/system.test
+%%DRUPAL_BASE%%/modules/system/system.theme-rtl.css
+%%DRUPAL_BASE%%/modules/system/system.theme.css
+%%DRUPAL_BASE%%/modules/system/system.tokens.inc
+%%DRUPAL_BASE%%/modules/system/system.updater.inc
+%%DRUPAL_BASE%%/modules/system/tests/cron_queue_test.info
+%%DRUPAL_BASE%%/modules/system/tests/cron_queue_test.module
+%%DRUPAL_BASE%%/modules/system/theme.api.php
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy-term.tpl.php
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.admin.inc
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.api.php
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.css
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.info
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.install
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.js
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.module
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.pages.inc
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.test
+%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.tokens.inc
+%%DRUPAL_BASE%%/modules/toolbar/toolbar-rtl.css
+%%DRUPAL_BASE%%/modules/toolbar/toolbar.css
+%%DRUPAL_BASE%%/modules/toolbar/toolbar.info
+%%DRUPAL_BASE%%/modules/toolbar/toolbar.js
+%%DRUPAL_BASE%%/modules/toolbar/toolbar.module
+%%DRUPAL_BASE%%/modules/toolbar/toolbar.png
+%%DRUPAL_BASE%%/modules/toolbar/toolbar.tpl.php
+%%DRUPAL_BASE%%/modules/tracker/tracker.css
+%%DRUPAL_BASE%%/modules/tracker/tracker.info
+%%DRUPAL_BASE%%/modules/tracker/tracker.install
+%%DRUPAL_BASE%%/modules/tracker/tracker.module
+%%DRUPAL_BASE%%/modules/tracker/tracker.pages.inc
+%%DRUPAL_BASE%%/modules/tracker/tracker.test
+%%DRUPAL_BASE%%/modules/translation/tests/translation_test.info
+%%DRUPAL_BASE%%/modules/translation/tests/translation_test.module
+%%DRUPAL_BASE%%/modules/translation/translation.info
+%%DRUPAL_BASE%%/modules/translation/translation.module
+%%DRUPAL_BASE%%/modules/translation/translation.pages.inc
+%%DRUPAL_BASE%%/modules/translation/translation.test
+%%DRUPAL_BASE%%/modules/trigger/tests/trigger_test.info
+%%DRUPAL_BASE%%/modules/trigger/tests/trigger_test.module
+%%DRUPAL_BASE%%/modules/trigger/trigger.admin.inc
+%%DRUPAL_BASE%%/modules/trigger/trigger.api.php
+%%DRUPAL_BASE%%/modules/trigger/trigger.info
+%%DRUPAL_BASE%%/modules/trigger/trigger.install
+%%DRUPAL_BASE%%/modules/trigger/trigger.module
+%%DRUPAL_BASE%%/modules/trigger/trigger.test
+%%DRUPAL_BASE%%/modules/update/tests/aaa_update_test.1_0.xml
+%%DRUPAL_BASE%%/modules/update/tests/aaa_update_test.info
+%%DRUPAL_BASE%%/modules/update/tests/aaa_update_test.module
+%%DRUPAL_BASE%%/modules/update/tests/aaa_update_test.no-releases.xml
+%%DRUPAL_BASE%%/modules/update/tests/aaa_update_test.tar.gz
+%%DRUPAL_BASE%%/modules/update/tests/bbb_update_test.1_0.xml
+%%DRUPAL_BASE%%/modules/update/tests/bbb_update_test.info
+%%DRUPAL_BASE%%/modules/update/tests/bbb_update_test.module
+%%DRUPAL_BASE%%/modules/update/tests/ccc_update_test.1_0.xml
+%%DRUPAL_BASE%%/modules/update/tests/ccc_update_test.info
+%%DRUPAL_BASE%%/modules/update/tests/ccc_update_test.module
+%%DRUPAL_BASE%%/modules/update/tests/drupal.0.xml
+%%DRUPAL_BASE%%/modules/update/tests/drupal.1.xml
+%%DRUPAL_BASE%%/modules/update/tests/drupal.2-sec.xml
+%%DRUPAL_BASE%%/modules/update/tests/drupal.dev.xml
+%%DRUPAL_BASE%%/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info
+%%DRUPAL_BASE%%/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info
+%%DRUPAL_BASE%%/modules/update/tests/update_test.info
+%%DRUPAL_BASE%%/modules/update/tests/update_test.module
+%%DRUPAL_BASE%%/modules/update/tests/update_test_basetheme.1_1-sec.xml
+%%DRUPAL_BASE%%/modules/update/tests/update_test_subtheme.1_0.xml
+%%DRUPAL_BASE%%/modules/update/update-rtl.css
+%%DRUPAL_BASE%%/modules/update/update.api.php
+%%DRUPAL_BASE%%/modules/update/update.authorize.inc
+%%DRUPAL_BASE%%/modules/update/update.compare.inc
+%%DRUPAL_BASE%%/modules/update/update.css
+%%DRUPAL_BASE%%/modules/update/update.fetch.inc
+%%DRUPAL_BASE%%/modules/update/update.info
+%%DRUPAL_BASE%%/modules/update/update.install
+%%DRUPAL_BASE%%/modules/update/update.manager.inc
+%%DRUPAL_BASE%%/modules/update/update.module
+%%DRUPAL_BASE%%/modules/update/update.report.inc
+%%DRUPAL_BASE%%/modules/update/update.settings.inc
+%%DRUPAL_BASE%%/modules/update/update.test
+%%DRUPAL_BASE%%/modules/user/tests/user_form_test.info
+%%DRUPAL_BASE%%/modules/user/tests/user_form_test.module
+%%DRUPAL_BASE%%/modules/user/user-picture.tpl.php
+%%DRUPAL_BASE%%/modules/user/user-profile-category.tpl.php
+%%DRUPAL_BASE%%/modules/user/user-profile-item.tpl.php
+%%DRUPAL_BASE%%/modules/user/user-profile.tpl.php
+%%DRUPAL_BASE%%/modules/user/user-rtl.css
+%%DRUPAL_BASE%%/modules/user/user.admin.inc
+%%DRUPAL_BASE%%/modules/user/user.api.php
+%%DRUPAL_BASE%%/modules/user/user.css
+%%DRUPAL_BASE%%/modules/user/user.info
+%%DRUPAL_BASE%%/modules/user/user.install
+%%DRUPAL_BASE%%/modules/user/user.js
+%%DRUPAL_BASE%%/modules/user/user.module
+%%DRUPAL_BASE%%/modules/user/user.pages.inc
+%%DRUPAL_BASE%%/modules/user/user.permissions.js
+%%DRUPAL_BASE%%/modules/user/user.test
+%%DRUPAL_BASE%%/modules/user/user.tokens.inc
+%%DRUPAL_BASE%%/profiles/minimal/minimal.info
+%%DRUPAL_BASE%%/profiles/minimal/minimal.install
+%%DRUPAL_BASE%%/profiles/minimal/minimal.profile
+%%DRUPAL_BASE%%/profiles/minimal/translations/README.txt
+%%DRUPAL_BASE%%/profiles/standard/standard.info
+%%DRUPAL_BASE%%/profiles/standard/standard.install
+%%DRUPAL_BASE%%/profiles/standard/standard.profile
+%%DRUPAL_BASE%%/profiles/standard/translations/README.txt
+%%DRUPAL_BASE%%/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
+%%DRUPAL_BASE%%/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module
+%%DRUPAL_BASE%%/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.test
+%%DRUPAL_BASE%%/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
+%%DRUPAL_BASE%%/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module
+%%DRUPAL_BASE%%/profiles/testing/testing.info
+%%DRUPAL_BASE%%/profiles/testing/testing.install
+%%DRUPAL_BASE%%/profiles/testing/testing.profile
+%%DRUPAL_BASE%%/robots.txt
+%%DRUPAL_BASE%%/scripts/code-clean.sh
+%%DRUPAL_BASE%%/scripts/cron-curl.sh
+%%DRUPAL_BASE%%/scripts/cron-lynx.sh
+%%DRUPAL_BASE%%/scripts/drupal.sh
+%%DRUPAL_BASE%%/scripts/dump-database-d6.sh
+%%DRUPAL_BASE%%/scripts/dump-database-d7.sh
+%%DRUPAL_BASE%%/scripts/generate-d6-content.sh
+%%DRUPAL_BASE%%/scripts/generate-d7-content.sh
+%%DRUPAL_BASE%%/scripts/password-hash.sh
+%%DRUPAL_BASE%%/scripts/run-tests.sh
+%%DRUPAL_BASE%%/scripts/test.script
+%%DRUPAL_BASE%%/sites/all/libraries/README.txt
+%%DRUPAL_BASE%%/sites/all/modules/README.txt
+%%DRUPAL_BASE%%/sites/all/themes/README.txt
+ at sample %%DRUPAL_BASE%%/sites/default/default.settings.php.sample
+%%DRUPAL_BASE%%/sites/example.sites.php
+%%DRUPAL_BASE%%/themes/README.txt
+%%DRUPAL_BASE%%/themes/bartik/bartik.info
+%%DRUPAL_BASE%%/themes/bartik/color/base.png
+%%DRUPAL_BASE%%/themes/bartik/color/color.inc
+%%DRUPAL_BASE%%/themes/bartik/color/preview.css
+%%DRUPAL_BASE%%/themes/bartik/color/preview.html
+%%DRUPAL_BASE%%/themes/bartik/color/preview.js
+%%DRUPAL_BASE%%/themes/bartik/color/preview.png
+%%DRUPAL_BASE%%/themes/bartik/css/colors.css
+%%DRUPAL_BASE%%/themes/bartik/css/ie-rtl.css
+%%DRUPAL_BASE%%/themes/bartik/css/ie.css
+%%DRUPAL_BASE%%/themes/bartik/css/ie6.css
+%%DRUPAL_BASE%%/themes/bartik/css/layout-rtl.css
+%%DRUPAL_BASE%%/themes/bartik/css/layout.css
+%%DRUPAL_BASE%%/themes/bartik/css/maintenance-page.css
+%%DRUPAL_BASE%%/themes/bartik/css/print.css
+%%DRUPAL_BASE%%/themes/bartik/css/style-rtl.css
+%%DRUPAL_BASE%%/themes/bartik/css/style.css
+%%DRUPAL_BASE%%/themes/bartik/images/add.png
+%%DRUPAL_BASE%%/themes/bartik/images/buttons.png
+%%DRUPAL_BASE%%/themes/bartik/images/comment-arrow-rtl.gif
+%%DRUPAL_BASE%%/themes/bartik/images/comment-arrow.gif
+%%DRUPAL_BASE%%/themes/bartik/images/search-button.png
+%%DRUPAL_BASE%%/themes/bartik/images/tabs-border.png
+%%DRUPAL_BASE%%/themes/bartik/logo.png
+%%DRUPAL_BASE%%/themes/bartik/screenshot.png
+%%DRUPAL_BASE%%/themes/bartik/template.php
+%%DRUPAL_BASE%%/themes/bartik/templates/comment-wrapper.tpl.php
+%%DRUPAL_BASE%%/themes/bartik/templates/comment.tpl.php
+%%DRUPAL_BASE%%/themes/bartik/templates/maintenance-page.tpl.php
+%%DRUPAL_BASE%%/themes/bartik/templates/node.tpl.php
+%%DRUPAL_BASE%%/themes/bartik/templates/page.tpl.php
+%%DRUPAL_BASE%%/themes/engines/phptemplate/phptemplate.engine
+%%DRUPAL_BASE%%/themes/garland/color/base.png
+%%DRUPAL_BASE%%/themes/garland/color/color.inc
+%%DRUPAL_BASE%%/themes/garland/color/preview.css
+%%DRUPAL_BASE%%/themes/garland/color/preview.png
+%%DRUPAL_BASE%%/themes/garland/comment.tpl.php
+%%DRUPAL_BASE%%/themes/garland/fix-ie-rtl.css
+%%DRUPAL_BASE%%/themes/garland/fix-ie.css
+%%DRUPAL_BASE%%/themes/garland/garland.info
+%%DRUPAL_BASE%%/themes/garland/images/bg-bar-white.png
+%%DRUPAL_BASE%%/themes/garland/images/bg-bar.png
+%%DRUPAL_BASE%%/themes/garland/images/bg-content-left.png
+%%DRUPAL_BASE%%/themes/garland/images/bg-content-right.png
+%%DRUPAL_BASE%%/themes/garland/images/bg-content.png
+%%DRUPAL_BASE%%/themes/garland/images/bg-navigation-item-hover.png
+%%DRUPAL_BASE%%/themes/garland/images/bg-navigation-item.png
+%%DRUPAL_BASE%%/themes/garland/images/bg-navigation.png
+%%DRUPAL_BASE%%/themes/garland/images/bg-tab.png
+%%DRUPAL_BASE%%/themes/garland/images/body.png
+%%DRUPAL_BASE%%/themes/garland/images/gradient-inner.png
+%%DRUPAL_BASE%%/themes/garland/images/menu-collapsed-rtl.gif
+%%DRUPAL_BASE%%/themes/garland/images/menu-collapsed.gif
+%%DRUPAL_BASE%%/themes/garland/images/menu-expanded.gif
+%%DRUPAL_BASE%%/themes/garland/images/menu-leaf.gif
+%%DRUPAL_BASE%%/themes/garland/images/task-list.png
+%%DRUPAL_BASE%%/themes/garland/logo.png
+%%DRUPAL_BASE%%/themes/garland/maintenance-page.tpl.php
+%%DRUPAL_BASE%%/themes/garland/node.tpl.php
+%%DRUPAL_BASE%%/themes/garland/page.tpl.php
+%%DRUPAL_BASE%%/themes/garland/print.css
+%%DRUPAL_BASE%%/themes/garland/screenshot.png
+%%DRUPAL_BASE%%/themes/garland/style-rtl.css
+%%DRUPAL_BASE%%/themes/garland/style.css
+%%DRUPAL_BASE%%/themes/garland/template.php
+%%DRUPAL_BASE%%/themes/garland/theme-settings.php
+%%DRUPAL_BASE%%/themes/seven/ie.css
+%%DRUPAL_BASE%%/themes/seven/ie6.css
+%%DRUPAL_BASE%%/themes/seven/ie7.css
+%%DRUPAL_BASE%%/themes/seven/images/add.png
+%%DRUPAL_BASE%%/themes/seven/images/arrow-asc.png
+%%DRUPAL_BASE%%/themes/seven/images/arrow-desc.png
+%%DRUPAL_BASE%%/themes/seven/images/arrow-next.png
+%%DRUPAL_BASE%%/themes/seven/images/arrow-prev.png
+%%DRUPAL_BASE%%/themes/seven/images/buttons.png
+%%DRUPAL_BASE%%/themes/seven/images/fc-rtl.png
+%%DRUPAL_BASE%%/themes/seven/images/fc.png
+%%DRUPAL_BASE%%/themes/seven/images/list-item-rtl.png
+%%DRUPAL_BASE%%/themes/seven/images/list-item.png
+%%DRUPAL_BASE%%/themes/seven/images/task-check.png
+%%DRUPAL_BASE%%/themes/seven/images/task-item-rtl.png
+%%DRUPAL_BASE%%/themes/seven/images/task-item.png
+%%DRUPAL_BASE%%/themes/seven/images/ui-icons-222222-256x240.png
+%%DRUPAL_BASE%%/themes/seven/images/ui-icons-454545-256x240.png
+%%DRUPAL_BASE%%/themes/seven/images/ui-icons-800000-256x240.png
+%%DRUPAL_BASE%%/themes/seven/images/ui-icons-888888-256x240.png
+%%DRUPAL_BASE%%/themes/seven/images/ui-icons-ffffff-256x240.png
+%%DRUPAL_BASE%%/themes/seven/jquery.ui.theme.css
+%%DRUPAL_BASE%%/themes/seven/logo.png
+%%DRUPAL_BASE%%/themes/seven/maintenance-page.tpl.php
+%%DRUPAL_BASE%%/themes/seven/page.tpl.php
+%%DRUPAL_BASE%%/themes/seven/reset.css
+%%DRUPAL_BASE%%/themes/seven/screenshot.png
+%%DRUPAL_BASE%%/themes/seven/seven.info
+%%DRUPAL_BASE%%/themes/seven/style-rtl.css
+%%DRUPAL_BASE%%/themes/seven/style.css
+%%DRUPAL_BASE%%/themes/seven/template.php
+%%DRUPAL_BASE%%/themes/seven/vertical-tabs-rtl.css
+%%DRUPAL_BASE%%/themes/seven/vertical-tabs.css
+%%DRUPAL_BASE%%/themes/stark/README.txt
+%%DRUPAL_BASE%%/themes/stark/layout.css
+%%DRUPAL_BASE%%/themes/stark/logo.png
+%%DRUPAL_BASE%%/themes/stark/screenshot.png
+%%DRUPAL_BASE%%/themes/stark/stark.info
+%%DRUPAL_BASE%%/update.php
+%%DRUPAL_BASE%%/web.config
+%%DRUPAL_BASE%%/xmlrpc.php
+ at dir %%DRUPAL_BASE%%/sites/all/libraries
+ at dir %%DRUPAL_BASE%%/sites/default/files
+ at unexec rm -f %%DRUPAL_BASE%%/files/.htaccess 2> /dev/null || true
+ at owner root
+ at group wheel
Property changes on: trunk/www/drupal7/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list