diff --git a/.gitignore b/.gitignore
old mode 100755
new mode 100644
index c5712ff72..4ae83eb8c
--- a/.gitignore
+++ b/.gitignore
@@ -1,49 +1,11 @@
-# Ignore paths that contain user-generated content.
-/sites/*/files
-/sites/*/private
-/files/*
-/cache
-
-# ** Only works in OSs that support newer versions of fnmatch (Bash 4+)
-/sites/default/**/files
-/sites/default/**/private
-
-# Packages #
-############
-*.7z
-*.dmg
-*.gz
-*.bz2
-*.iso
-*.jar
-*.rar
-*.tar
-*.zip
-*.tgz
-
-# Logs and databases #
-######################
-*.log
-*.sql
-
-# OS generated files #
-######################
-.DS_Store*
-ehthumbs.db
-Icon?
-Thumbs.db
-._*
+# Ignore configuration files that may contain sensitive information.
+sites/*/settings*.php
-# Vim generated files #
-######################
-*.un~
-
-# SASS #
-##########
-.sass-cache
+# Ignore paths that contain user-generated content.
+sites/*/files
+sites/*/private
-# PHPEclipse config files #
-##########################
-.buildpath
-.settings/
+#Ignore eclipse project files
.project
+.buildpath
+.settings
diff --git a/.htaccess b/.htaccess
old mode 100755
new mode 100644
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
old mode 100755
new mode 100644
index 08acf95a7..750aabb24
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,8 @@
+
+Drupal 7.20, 2013-02-20
+-----------------------
+- Fixed security issues (denial of service). See SA-CORE-2013-002.
+
Drupal 7.19, 2013-01-16
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2013-001.
diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt
old mode 100755
new mode 100644
diff --git a/INSTALL.mysql.txt b/INSTALL.mysql.txt
old mode 100755
new mode 100644
diff --git a/INSTALL.pgsql.txt b/INSTALL.pgsql.txt
old mode 100755
new mode 100644
diff --git a/INSTALL.sqlite.txt b/INSTALL.sqlite.txt
old mode 100755
new mode 100644
diff --git a/INSTALL.txt b/INSTALL.txt
old mode 100755
new mode 100644
diff --git a/LICENSE.txt b/LICENSE.txt
old mode 100755
new mode 100644
index 94fb84639..d159169d1
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,12 +1,12 @@
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
- Preamble
+ Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
@@ -56,7 +56,7 @@ patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
- GNU GENERAL PUBLIC LICENSE
+ GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
@@ -255,7 +255,7 @@ make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
- NO WARRANTY
+ NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
@@ -277,9 +277,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
- END OF TERMS AND CONDITIONS
+ END OF TERMS AND CONDITIONS
- How to Apply These Terms to Your New Programs
+ How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
diff --git a/MAINTAINERS.txt b/MAINTAINERS.txt
old mode 100755
new mode 100644
diff --git a/README.txt b/README.txt
old mode 100755
new mode 100644
diff --git a/UPGRADE.txt b/UPGRADE.txt
old mode 100755
new mode 100644
diff --git a/authorize.php b/authorize.php
old mode 100755
new mode 100644
diff --git a/cron.php b/cron.php
old mode 100755
new mode 100644
diff --git a/includes/actions.inc b/includes/actions.inc
old mode 100755
new mode 100644
diff --git a/includes/ajax.inc b/includes/ajax.inc
old mode 100755
new mode 100644
diff --git a/includes/archiver.inc b/includes/archiver.inc
old mode 100755
new mode 100644
diff --git a/includes/authorize.inc b/includes/authorize.inc
old mode 100755
new mode 100644
diff --git a/includes/batch.inc b/includes/batch.inc
old mode 100755
new mode 100644
diff --git a/includes/batch.queue.inc b/includes/batch.queue.inc
old mode 100755
new mode 100644
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
old mode 100755
new mode 100644
index 0cc9411e3..2cfdfe953
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -8,7 +8,7 @@
/**
* The current system version.
*/
-define('VERSION', '7.19');
+define('VERSION', '7.20');
/**
* Core API compatibility.
@@ -713,31 +713,6 @@ function drupal_settings_initialize() {
}
$is_https = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on';
- // Load environmental config, if present.
- if (isset($_SERVER['PRESSFLOW_SETTINGS'])) {
- $pressflow_settings = json_decode($_SERVER['PRESSFLOW_SETTINGS'], TRUE);
- foreach ($pressflow_settings as $key => $value) {
- // One level of depth should be enough for $conf and $database.
- if ($key == 'conf') {
- foreach($value as $conf_key => $conf_value) {
- $conf[$conf_key] = $conf_value;
- }
- }
- elseif ($key == 'databases') {
- // Protect default configuration but allow the specification of
- // additional databases. Also, allows fun things with 'prefix' if they
- // want to try multisite.
- if (!isset($databases) || !is_array($databases)) {
- $databases = array();
- }
- $databases = array_replace_recursive($databases, $value);
- }
- else {
- $$key = $value;
- }
- }
- }
-
if (isset($base_url)) {
// Parse fixed base URL from settings.php.
$parts = parse_url($base_url);
@@ -2420,22 +2395,6 @@ function _drupal_bootstrap_database() {
function _drupal_bootstrap_variables() {
global $conf;
- // Pressflow Smart Start
- if (!empty($GLOBALS['databases']) && variable_get('pressflow_smart_start', FALSE)) {
- try {
- $result = db_query('SELECT s.name FROM {system} s WHERE s.name = :name', array(':name' => 'system'));
- } catch (PDOException $e) {
- if ($e->getCode() == '2003') {
- header('Status: 550 Database Offline');
- exit();
- }
- elseif ($e->getCode() == '42S02') {
- include_once DRUPAL_ROOT . '/includes/install.inc';
- install_goto('install.php');
- }
- }
- }
-
// Initialize the lock system.
require_once DRUPAL_ROOT . '/' . variable_get('lock_inc', 'includes/lock.inc');
lock_initialize();
diff --git a/includes/cache-install.inc b/includes/cache-install.inc
old mode 100755
new mode 100644
diff --git a/includes/cache.inc b/includes/cache.inc
old mode 100755
new mode 100644
diff --git a/includes/common.inc b/includes/common.inc
old mode 100755
new mode 100644
index 602471691..8276576e0
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -3539,7 +3539,7 @@ function drupal_build_css_cache($css) {
$uri = $map[$key];
}
- if (empty($uri) || !drupal_aggregated_file_exists($uri)) {
+ if (empty($uri) || !file_exists($uri)) {
// Build aggregate CSS file.
foreach ($css as $stylesheet) {
// Only 'file' stylesheets can be aggregated.
@@ -4868,19 +4868,6 @@ function drupal_add_tabledrag($table_id, $action, $relationship, $group, $subgro
drupal_add_js($settings, 'setting');
}
-function drupal_aggregated_file_exists($uri) {
- if (function_exists('apc_exists')) {
- $exists = apc_exists('file_exists_' . $uri);
- if (!$exists && file_exists($uri)) {
- $exists = TRUE;
- apc_store('file_exists_' . $uri, TRUE, 86400);
- }
- return $exists;
- }
- // If no APC available, fall back to default.
- return file_exists($uri);
-}
-
/**
* Aggregates JavaScript files into a cache file in the files directory.
*
@@ -4920,7 +4907,7 @@ function drupal_build_js_cache($files) {
$uri = $map[$key];
}
- if (empty($uri) || !drupal_aggregated_file_exists($uri)) {
+ if (empty($uri) || !file_exists($uri)) {
// Build aggregate JS file.
foreach ($files as $path => $info) {
if ($info['preprocess']) {
diff --git a/includes/database/database.inc b/includes/database/database.inc
old mode 100755
new mode 100644
diff --git a/includes/database/log.inc b/includes/database/log.inc
old mode 100755
new mode 100644
diff --git a/includes/database/mysql/database.inc b/includes/database/mysql/database.inc
old mode 100755
new mode 100644
diff --git a/includes/database/mysql/install.inc b/includes/database/mysql/install.inc
old mode 100755
new mode 100644
diff --git a/includes/database/mysql/query.inc b/includes/database/mysql/query.inc
old mode 100755
new mode 100644
diff --git a/includes/database/mysql/schema.inc b/includes/database/mysql/schema.inc
old mode 100755
new mode 100644
diff --git a/includes/database/pgsql/database.inc b/includes/database/pgsql/database.inc
old mode 100755
new mode 100644
diff --git a/includes/database/pgsql/install.inc b/includes/database/pgsql/install.inc
old mode 100755
new mode 100644
diff --git a/includes/database/pgsql/query.inc b/includes/database/pgsql/query.inc
old mode 100755
new mode 100644
diff --git a/includes/database/pgsql/schema.inc b/includes/database/pgsql/schema.inc
old mode 100755
new mode 100644
diff --git a/includes/database/pgsql/select.inc b/includes/database/pgsql/select.inc
old mode 100755
new mode 100644
diff --git a/includes/database/prefetch.inc b/includes/database/prefetch.inc
old mode 100755
new mode 100644
diff --git a/includes/database/query.inc b/includes/database/query.inc
old mode 100755
new mode 100644
diff --git a/includes/database/schema.inc b/includes/database/schema.inc
old mode 100755
new mode 100644
diff --git a/includes/database/select.inc b/includes/database/select.inc
old mode 100755
new mode 100644
diff --git a/includes/database/sqlite/database.inc b/includes/database/sqlite/database.inc
old mode 100755
new mode 100644
diff --git a/includes/database/sqlite/install.inc b/includes/database/sqlite/install.inc
old mode 100755
new mode 100644
diff --git a/includes/database/sqlite/query.inc b/includes/database/sqlite/query.inc
old mode 100755
new mode 100644
diff --git a/includes/database/sqlite/schema.inc b/includes/database/sqlite/schema.inc
old mode 100755
new mode 100644
diff --git a/includes/database/sqlite/select.inc b/includes/database/sqlite/select.inc
old mode 100755
new mode 100644
diff --git a/includes/date.inc b/includes/date.inc
old mode 100755
new mode 100644
diff --git a/includes/entity.inc b/includes/entity.inc
old mode 100755
new mode 100644
diff --git a/includes/errors.inc b/includes/errors.inc
old mode 100755
new mode 100644
diff --git a/includes/file.inc b/includes/file.inc
old mode 100755
new mode 100644
index 3de290198..278be3ddc
--- a/includes/file.inc
+++ b/includes/file.inc
@@ -476,11 +476,6 @@ function file_ensure_htaccess() {
* The default is TRUE which indicates a private and protected directory.
*/
function file_create_htaccess($directory, $private = TRUE) {
- if (isset($_SERVER['PANTHEON_ENVIRONMENT'])) {
- // Skip on Pantheon since we use nginx and this can hang.
- return;
- }
-
if (file_uri_scheme($directory)) {
$directory = file_stream_wrapper_uri_normalize($directory);
}
diff --git a/includes/file.mimetypes.inc b/includes/file.mimetypes.inc
old mode 100755
new mode 100644
diff --git a/includes/filetransfer/filetransfer.inc b/includes/filetransfer/filetransfer.inc
old mode 100755
new mode 100644
diff --git a/includes/filetransfer/ftp.inc b/includes/filetransfer/ftp.inc
old mode 100755
new mode 100644
diff --git a/includes/filetransfer/local.inc b/includes/filetransfer/local.inc
old mode 100755
new mode 100644
diff --git a/includes/filetransfer/ssh.inc b/includes/filetransfer/ssh.inc
old mode 100755
new mode 100644
diff --git a/includes/form.inc b/includes/form.inc
old mode 100755
new mode 100644
diff --git a/includes/graph.inc b/includes/graph.inc
old mode 100755
new mode 100644
diff --git a/includes/image.inc b/includes/image.inc
old mode 100755
new mode 100644
index 86ef6934e..ee5a086de
--- a/includes/image.inc
+++ b/includes/image.inc
@@ -122,21 +122,6 @@ function image_toolkit_invoke($method, stdClass $image, array $params = array())
* - "file_size": File size in bytes.
*/
function image_get_info($filepath, $toolkit = FALSE) {
- // Cache image_info if possible. This provides a significant speedup on style
- // rendering and generation, as well as with IMCE and other image-heavy
- // contributed modules.
- $cid = "image_get_info:$toolkit:$filepath";
- if (strpos($filepath, 'public://') === 0 && function_exists('pantheon_cache_get') && $cache = pantheon_cache_get($cid)) {
- $parsed = parse_url($filepath);
- $statpath = $parsed['host'];
- if (isset($parsed['path'])) {
- $statpath .= $parsed['path'];
- }
- $stat = pantheon_stat($statpath);
- if ($stat['size'] == $cache['file_size']) {
- return $cache;
- }
- }
$details = FALSE;
if (!is_file($filepath) && !is_uploaded_file($filepath)) {
return $details;
@@ -154,9 +139,7 @@ function image_get_info($filepath, $toolkit = FALSE) {
$details['file_size'] = filesize($filepath);
}
}
- if (function_exists('pantheon_cache_get')) {
- pantheon_cache_set($cid, $details);
- }
+
return $details;
}
diff --git a/includes/install.core.inc b/includes/install.core.inc
old mode 100755
new mode 100644
diff --git a/includes/install.inc b/includes/install.inc
old mode 100755
new mode 100644
diff --git a/includes/iso.inc b/includes/iso.inc
old mode 100755
new mode 100644
diff --git a/includes/json-encode.inc b/includes/json-encode.inc
old mode 100755
new mode 100644
diff --git a/includes/language.inc b/includes/language.inc
old mode 100755
new mode 100644
diff --git a/includes/locale.inc b/includes/locale.inc
old mode 100755
new mode 100644
diff --git a/includes/lock.inc b/includes/lock.inc
old mode 100755
new mode 100644
diff --git a/includes/mail.inc b/includes/mail.inc
old mode 100755
new mode 100644
diff --git a/includes/menu.inc b/includes/menu.inc
old mode 100755
new mode 100644
diff --git a/includes/module.inc b/includes/module.inc
old mode 100755
new mode 100644
diff --git a/includes/pager.inc b/includes/pager.inc
old mode 100755
new mode 100644
diff --git a/includes/password.inc b/includes/password.inc
old mode 100755
new mode 100644
diff --git a/includes/path.inc b/includes/path.inc
old mode 100755
new mode 100644
diff --git a/includes/registry.inc b/includes/registry.inc
old mode 100755
new mode 100644
diff --git a/includes/session.inc b/includes/session.inc
old mode 100755
new mode 100644
diff --git a/includes/stream_wrappers.inc b/includes/stream_wrappers.inc
old mode 100755
new mode 100644
index dd638a80e..fa401c6b7
--- a/includes/stream_wrappers.inc
+++ b/includes/stream_wrappers.inc
@@ -681,39 +681,16 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface
* @see http://php.net/manual/en/streamwrapper.url-stat.php
*/
public function url_stat($uri, $flags) {
- // Cache existence checks for ctools_css_retrieve.
- $store_to_cache = FALSE;
- if (strpos($uri, 'public://ctools/css/') === 0 && function_exists('pantheon_cache_get')) {
- $stat = pantheon_cache_get('file_stat_' . $uri);
- if ($stat !== FALSE) {
- return $stat;
- }
- $store_to_cache = TRUE;
- }
-
$this->uri = $uri;
-
- if (strpos($uri, 'public://') === 0 && function_exists('pantheon_stat')) {
- $path = $this->getTarget($uri);
- $stat = pantheon_stat($path);
+ $path = $this->getLocalPath();
+ // Suppress warnings if requested or if the file or directory does not
+ // exist. This is consistent with PHP's plain filesystem stream wrapper.
+ if ($flags & STREAM_URL_STAT_QUIET || !file_exists($path)) {
+ return @stat($path);
}
else {
- $path = $this->getLocalPath();
- // Suppress warnings if requested or if the file or directory does not
- // exist. This is consistent with PHP's plain filesystem stream wrapper.
- if ($flags & STREAM_URL_STAT_QUIET || !file_exists($path)) {
- $stat = @stat($path);
- }
- else {
- $stat = stat($path);
- }
+ return stat($path);
}
-
- if ($store_to_cache && $stat !== FALSE) {
- pantheon_cache_set('file_stat_' . $uri, $stat, 86400);
- }
-
- return $stat;
}
/**
diff --git a/includes/tablesort.inc b/includes/tablesort.inc
old mode 100755
new mode 100644
diff --git a/includes/theme.inc b/includes/theme.inc
old mode 100755
new mode 100644
diff --git a/includes/theme.maintenance.inc b/includes/theme.maintenance.inc
old mode 100755
new mode 100644
diff --git a/includes/token.inc b/includes/token.inc
old mode 100755
new mode 100644
diff --git a/includes/unicode.entities.inc b/includes/unicode.entities.inc
old mode 100755
new mode 100644
diff --git a/includes/unicode.inc b/includes/unicode.inc
old mode 100755
new mode 100644
diff --git a/includes/update.inc b/includes/update.inc
old mode 100755
new mode 100644
diff --git a/includes/updater.inc b/includes/updater.inc
old mode 100755
new mode 100644
diff --git a/includes/utility.inc b/includes/utility.inc
old mode 100755
new mode 100644
diff --git a/includes/xmlrpc.inc b/includes/xmlrpc.inc
old mode 100755
new mode 100644
diff --git a/includes/xmlrpcs.inc b/includes/xmlrpcs.inc
old mode 100755
new mode 100644
diff --git a/index.php b/index.php
old mode 100755
new mode 100644
diff --git a/install.php b/install.php
old mode 100755
new mode 100644
diff --git a/misc/ajax.js b/misc/ajax.js
old mode 100755
new mode 100644
diff --git a/misc/arrow-asc.png b/misc/arrow-asc.png
old mode 100755
new mode 100644
diff --git a/misc/arrow-desc.png b/misc/arrow-desc.png
old mode 100755
new mode 100644
diff --git a/misc/authorize.js b/misc/authorize.js
old mode 100755
new mode 100644
diff --git a/misc/autocomplete.js b/misc/autocomplete.js
old mode 100755
new mode 100644
diff --git a/misc/batch.js b/misc/batch.js
old mode 100755
new mode 100644
diff --git a/misc/collapse.js b/misc/collapse.js
old mode 100755
new mode 100644
diff --git a/misc/configure.png b/misc/configure.png
old mode 100755
new mode 100644
diff --git a/misc/draggable.png b/misc/draggable.png
old mode 100755
new mode 100644
diff --git a/misc/drupal.js b/misc/drupal.js
old mode 100755
new mode 100644
diff --git a/misc/druplicon.png b/misc/druplicon.png
old mode 100755
new mode 100644
diff --git a/misc/farbtastic/farbtastic.css b/misc/farbtastic/farbtastic.css
old mode 100755
new mode 100644
diff --git a/misc/farbtastic/farbtastic.js b/misc/farbtastic/farbtastic.js
old mode 100755
new mode 100644
diff --git a/misc/farbtastic/marker.png b/misc/farbtastic/marker.png
old mode 100755
new mode 100644
diff --git a/misc/farbtastic/mask.png b/misc/farbtastic/mask.png
old mode 100755
new mode 100644
diff --git a/misc/farbtastic/wheel.png b/misc/farbtastic/wheel.png
old mode 100755
new mode 100644
diff --git a/misc/favicon.ico b/misc/favicon.ico
old mode 100755
new mode 100644
diff --git a/misc/feed.png b/misc/feed.png
old mode 100755
new mode 100644
diff --git a/misc/form.js b/misc/form.js
old mode 100755
new mode 100644
diff --git a/misc/forum-icons.png b/misc/forum-icons.png
old mode 100755
new mode 100644
diff --git a/misc/grippie.png b/misc/grippie.png
old mode 100755
new mode 100644
diff --git a/misc/help.png b/misc/help.png
old mode 100755
new mode 100644
diff --git a/misc/jquery.ba-bbq.js b/misc/jquery.ba-bbq.js
old mode 100755
new mode 100644
diff --git a/misc/jquery.cookie.js b/misc/jquery.cookie.js
old mode 100755
new mode 100644
diff --git a/misc/jquery.form.js b/misc/jquery.form.js
old mode 100755
new mode 100644
diff --git a/misc/jquery.js b/misc/jquery.js
old mode 100755
new mode 100644
diff --git a/misc/jquery.once.js b/misc/jquery.once.js
old mode 100755
new mode 100644
diff --git a/misc/machine-name.js b/misc/machine-name.js
old mode 100755
new mode 100644
diff --git a/misc/menu-collapsed-rtl.png b/misc/menu-collapsed-rtl.png
old mode 100755
new mode 100644
diff --git a/misc/menu-collapsed.png b/misc/menu-collapsed.png
old mode 100755
new mode 100644
diff --git a/misc/menu-expanded.png b/misc/menu-expanded.png
old mode 100755
new mode 100644
diff --git a/misc/menu-leaf.png b/misc/menu-leaf.png
old mode 100755
new mode 100644
diff --git a/misc/message-16-error.png b/misc/message-16-error.png
old mode 100755
new mode 100644
diff --git a/misc/message-16-help.png b/misc/message-16-help.png
old mode 100755
new mode 100644
diff --git a/misc/message-16-info.png b/misc/message-16-info.png
old mode 100755
new mode 100644
diff --git a/misc/message-16-ok.png b/misc/message-16-ok.png
old mode 100755
new mode 100644
diff --git a/misc/message-16-warning.png b/misc/message-16-warning.png
old mode 100755
new mode 100644
diff --git a/misc/message-24-error.png b/misc/message-24-error.png
old mode 100755
new mode 100644
diff --git a/misc/message-24-help.png b/misc/message-24-help.png
old mode 100755
new mode 100644
diff --git a/misc/message-24-info.png b/misc/message-24-info.png
old mode 100755
new mode 100644
diff --git a/misc/message-24-ok.png b/misc/message-24-ok.png
old mode 100755
new mode 100644
diff --git a/misc/message-24-warning.png b/misc/message-24-warning.png
old mode 100755
new mode 100644
diff --git a/misc/permissions.png b/misc/permissions.png
old mode 100755
new mode 100644
diff --git a/misc/powered-black-135x42.png b/misc/powered-black-135x42.png
old mode 100755
new mode 100644
diff --git a/misc/powered-black-80x15.png b/misc/powered-black-80x15.png
old mode 100755
new mode 100644
diff --git a/misc/powered-black-88x31.png b/misc/powered-black-88x31.png
old mode 100755
new mode 100644
diff --git a/misc/powered-blue-135x42.png b/misc/powered-blue-135x42.png
old mode 100755
new mode 100644
diff --git a/misc/powered-blue-80x15.png b/misc/powered-blue-80x15.png
old mode 100755
new mode 100644
diff --git a/misc/powered-blue-88x31.png b/misc/powered-blue-88x31.png
old mode 100755
new mode 100644
diff --git a/misc/powered-gray-135x42.png b/misc/powered-gray-135x42.png
old mode 100755
new mode 100644
diff --git a/misc/powered-gray-80x15.png b/misc/powered-gray-80x15.png
old mode 100755
new mode 100644
diff --git a/misc/powered-gray-88x31.png b/misc/powered-gray-88x31.png
old mode 100755
new mode 100644
diff --git a/misc/print-rtl.css b/misc/print-rtl.css
old mode 100755
new mode 100644
diff --git a/misc/print.css b/misc/print.css
old mode 100755
new mode 100644
diff --git a/misc/progress.gif b/misc/progress.gif
old mode 100755
new mode 100644
diff --git a/misc/progress.js b/misc/progress.js
old mode 100755
new mode 100644
diff --git a/misc/states.js b/misc/states.js
old mode 100755
new mode 100644
diff --git a/misc/tabledrag.js b/misc/tabledrag.js
old mode 100755
new mode 100644
diff --git a/misc/tableheader.js b/misc/tableheader.js
old mode 100755
new mode 100644
diff --git a/misc/tableselect.js b/misc/tableselect.js
old mode 100755
new mode 100644
diff --git a/misc/textarea.js b/misc/textarea.js
old mode 100755
new mode 100644
diff --git a/misc/throbber.gif b/misc/throbber.gif
old mode 100755
new mode 100644
diff --git a/misc/timezone.js b/misc/timezone.js
old mode 100755
new mode 100644
diff --git a/misc/tree-bottom.png b/misc/tree-bottom.png
old mode 100755
new mode 100644
diff --git a/misc/tree.png b/misc/tree.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png b/misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-bg_flat_75_ffffff_40x100.png b/misc/ui/images/ui-bg_flat_75_ffffff_40x100.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-bg_glass_55_fbf9ee_1x400.png b/misc/ui/images/ui-bg_glass_55_fbf9ee_1x400.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-bg_glass_65_ffffff_1x400.png b/misc/ui/images/ui-bg_glass_65_ffffff_1x400.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-bg_glass_75_dadada_1x400.png b/misc/ui/images/ui-bg_glass_75_dadada_1x400.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-bg_glass_75_e6e6e6_1x400.png b/misc/ui/images/ui-bg_glass_75_e6e6e6_1x400.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-bg_glass_95_fef1ec_1x400.png b/misc/ui/images/ui-bg_glass_95_fef1ec_1x400.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/misc/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-icons_222222_256x240.png b/misc/ui/images/ui-icons_222222_256x240.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-icons_2e83ff_256x240.png b/misc/ui/images/ui-icons_2e83ff_256x240.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-icons_454545_256x240.png b/misc/ui/images/ui-icons_454545_256x240.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-icons_888888_256x240.png b/misc/ui/images/ui-icons_888888_256x240.png
old mode 100755
new mode 100644
diff --git a/misc/ui/images/ui-icons_cd0a0a_256x240.png b/misc/ui/images/ui-icons_cd0a0a_256x240.png
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.blind.min.js b/misc/ui/jquery.effects.blind.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.bounce.min.js b/misc/ui/jquery.effects.bounce.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.clip.min.js b/misc/ui/jquery.effects.clip.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.core.min.js b/misc/ui/jquery.effects.core.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.drop.min.js b/misc/ui/jquery.effects.drop.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.explode.min.js b/misc/ui/jquery.effects.explode.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.fade.min.js b/misc/ui/jquery.effects.fade.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.fold.min.js b/misc/ui/jquery.effects.fold.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.highlight.min.js b/misc/ui/jquery.effects.highlight.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.pulsate.min.js b/misc/ui/jquery.effects.pulsate.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.scale.min.js b/misc/ui/jquery.effects.scale.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.shake.min.js b/misc/ui/jquery.effects.shake.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.slide.min.js b/misc/ui/jquery.effects.slide.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.effects.transfer.min.js b/misc/ui/jquery.effects.transfer.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.accordion.css b/misc/ui/jquery.ui.accordion.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.accordion.min.js b/misc/ui/jquery.ui.accordion.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.autocomplete.css b/misc/ui/jquery.ui.autocomplete.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.autocomplete.min.js b/misc/ui/jquery.ui.autocomplete.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.button.css b/misc/ui/jquery.ui.button.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.button.min.js b/misc/ui/jquery.ui.button.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.core.css b/misc/ui/jquery.ui.core.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.core.min.js b/misc/ui/jquery.ui.core.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.datepicker.css b/misc/ui/jquery.ui.datepicker.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.datepicker.min.js b/misc/ui/jquery.ui.datepicker.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.dialog.css b/misc/ui/jquery.ui.dialog.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.dialog.min.js b/misc/ui/jquery.ui.dialog.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.draggable.min.js b/misc/ui/jquery.ui.draggable.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.droppable.min.js b/misc/ui/jquery.ui.droppable.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.mouse.min.js b/misc/ui/jquery.ui.mouse.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.position.min.js b/misc/ui/jquery.ui.position.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.progressbar.css b/misc/ui/jquery.ui.progressbar.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.progressbar.min.js b/misc/ui/jquery.ui.progressbar.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.resizable.css b/misc/ui/jquery.ui.resizable.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.resizable.min.js b/misc/ui/jquery.ui.resizable.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.selectable.css b/misc/ui/jquery.ui.selectable.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.selectable.min.js b/misc/ui/jquery.ui.selectable.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.slider.css b/misc/ui/jquery.ui.slider.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.slider.min.js b/misc/ui/jquery.ui.slider.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.sortable.min.js b/misc/ui/jquery.ui.sortable.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.tabs.css b/misc/ui/jquery.ui.tabs.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.tabs.min.js b/misc/ui/jquery.ui.tabs.min.js
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.theme.css b/misc/ui/jquery.ui.theme.css
old mode 100755
new mode 100644
diff --git a/misc/ui/jquery.ui.widget.min.js b/misc/ui/jquery.ui.widget.min.js
old mode 100755
new mode 100644
diff --git a/misc/vertical-tabs-rtl.css b/misc/vertical-tabs-rtl.css
old mode 100755
new mode 100644
diff --git a/misc/vertical-tabs.css b/misc/vertical-tabs.css
old mode 100755
new mode 100644
diff --git a/misc/vertical-tabs.js b/misc/vertical-tabs.js
old mode 100755
new mode 100644
diff --git a/misc/watchdog-error.png b/misc/watchdog-error.png
old mode 100755
new mode 100644
diff --git a/misc/watchdog-ok.png b/misc/watchdog-ok.png
old mode 100755
new mode 100644
diff --git a/misc/watchdog-warning.png b/misc/watchdog-warning.png
old mode 100755
new mode 100644
diff --git a/modules/README.txt b/modules/README.txt
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator-feed-source.tpl.php b/modules/aggregator/aggregator-feed-source.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator-item.tpl.php b/modules/aggregator/aggregator-item.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator-rtl.css b/modules/aggregator/aggregator-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator-summary-item.tpl.php b/modules/aggregator/aggregator-summary-item.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator-summary-items.tpl.php b/modules/aggregator/aggregator-summary-items.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator-wrapper.tpl.php b/modules/aggregator/aggregator-wrapper.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.admin.inc b/modules/aggregator/aggregator.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.api.php b/modules/aggregator/aggregator.api.php
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.css b/modules/aggregator/aggregator.css
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.fetcher.inc b/modules/aggregator/aggregator.fetcher.inc
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.info b/modules/aggregator/aggregator.info
old mode 100755
new mode 100644
index 988111e0f..557d055fe
--- a/modules/aggregator/aggregator.info
+++ b/modules/aggregator/aggregator.info
@@ -6,3 +6,9 @@ core = 7.x
files[] = aggregator.test
configure = admin/config/services/aggregator/settings
stylesheets[all][] = aggregator.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/aggregator/aggregator.install b/modules/aggregator/aggregator.install
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.pages.inc b/modules/aggregator/aggregator.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.parser.inc b/modules/aggregator/aggregator.parser.inc
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.processor.inc b/modules/aggregator/aggregator.processor.inc
old mode 100755
new mode 100644
diff --git a/modules/aggregator/aggregator.test b/modules/aggregator/aggregator.test
old mode 100755
new mode 100644
diff --git a/modules/aggregator/tests/aggregator_test.info b/modules/aggregator/tests/aggregator_test.info
old mode 100755
new mode 100644
index b8dd19d98..00836d111
--- a/modules/aggregator/tests/aggregator_test.info
+++ b/modules/aggregator/tests/aggregator_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/aggregator/tests/aggregator_test.module b/modules/aggregator/tests/aggregator_test.module
old mode 100755
new mode 100644
diff --git a/modules/aggregator/tests/aggregator_test_atom.xml b/modules/aggregator/tests/aggregator_test_atom.xml
old mode 100755
new mode 100644
diff --git a/modules/aggregator/tests/aggregator_test_rss091.xml b/modules/aggregator/tests/aggregator_test_rss091.xml
old mode 100755
new mode 100644
diff --git a/modules/block/block-admin-display-form.tpl.php b/modules/block/block-admin-display-form.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/block/block.admin.inc b/modules/block/block.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/block/block.api.php b/modules/block/block.api.php
old mode 100755
new mode 100644
diff --git a/modules/block/block.css b/modules/block/block.css
old mode 100755
new mode 100644
diff --git a/modules/block/block.info b/modules/block/block.info
old mode 100755
new mode 100644
index f8c0f0c9f..2ffb62840
--- a/modules/block/block.info
+++ b/modules/block/block.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = block.test
configure = admin/structure/block
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/block/block.install b/modules/block/block.install
old mode 100755
new mode 100644
diff --git a/modules/block/block.js b/modules/block/block.js
old mode 100755
new mode 100644
diff --git a/modules/block/block.module b/modules/block/block.module
old mode 100755
new mode 100644
diff --git a/modules/block/block.test b/modules/block/block.test
old mode 100755
new mode 100644
diff --git a/modules/block/block.tpl.php b/modules/block/block.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/block/tests/block_test.info b/modules/block/tests/block_test.info
old mode 100755
new mode 100644
index 879f25169..e70f39187
--- a/modules/block/tests/block_test.info
+++ b/modules/block/tests/block_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/block/tests/block_test.module b/modules/block/tests/block_test.module
old mode 100755
new mode 100644
diff --git a/modules/block/tests/themes/block_test_theme/block_test_theme.info b/modules/block/tests/themes/block_test_theme/block_test_theme.info
old mode 100755
new mode 100644
index 06b6e995f..65e240e30
--- a/modules/block/tests/themes/block_test_theme/block_test_theme.info
+++ b/modules/block/tests/themes/block_test_theme/block_test_theme.info
@@ -12,3 +12,9 @@ regions[header] = Header
regions[footer] = Footer
regions[highlighted] = Highlighted
regions[help] = Help
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/block/tests/themes/block_test_theme/page.tpl.php b/modules/block/tests/themes/block_test_theme/page.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/blog/blog.info b/modules/blog/blog.info
old mode 100755
new mode 100644
index 801abfb47..9dc8f3ba2
--- a/modules/blog/blog.info
+++ b/modules/blog/blog.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
files[] = blog.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/blog/blog.install b/modules/blog/blog.install
old mode 100755
new mode 100644
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
old mode 100755
new mode 100644
diff --git a/modules/blog/blog.pages.inc b/modules/blog/blog.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/blog/blog.test b/modules/blog/blog.test
old mode 100755
new mode 100644
diff --git a/modules/book/book-all-books-block.tpl.php b/modules/book/book-all-books-block.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/book/book-export-html.tpl.php b/modules/book/book-export-html.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/book/book-navigation.tpl.php b/modules/book/book-navigation.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/book/book-node-export-html.tpl.php b/modules/book/book-node-export-html.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/book/book-rtl.css b/modules/book/book-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/book/book.admin.inc b/modules/book/book.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/book/book.css b/modules/book/book.css
old mode 100755
new mode 100644
diff --git a/modules/book/book.info b/modules/book/book.info
old mode 100755
new mode 100644
index 2c7311f4d..eb920e104
--- a/modules/book/book.info
+++ b/modules/book/book.info
@@ -6,3 +6,9 @@ core = 7.x
files[] = book.test
configure = admin/content/book/settings
stylesheets[all][] = book.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/book/book.install b/modules/book/book.install
old mode 100755
new mode 100644
diff --git a/modules/book/book.js b/modules/book/book.js
old mode 100755
new mode 100644
diff --git a/modules/book/book.module b/modules/book/book.module
old mode 100755
new mode 100644
diff --git a/modules/book/book.pages.inc b/modules/book/book.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/book/book.test b/modules/book/book.test
old mode 100755
new mode 100644
diff --git a/modules/color/color-rtl.css b/modules/color/color-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/color/color.css b/modules/color/color.css
old mode 100755
new mode 100644
diff --git a/modules/color/color.info b/modules/color/color.info
old mode 100755
new mode 100644
index b1b862d43..3da8cc69d
--- a/modules/color/color.info
+++ b/modules/color/color.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
files[] = color.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/color/color.install b/modules/color/color.install
old mode 100755
new mode 100644
diff --git a/modules/color/color.js b/modules/color/color.js
old mode 100755
new mode 100644
diff --git a/modules/color/color.module b/modules/color/color.module
old mode 100755
new mode 100644
diff --git a/modules/color/color.test b/modules/color/color.test
old mode 100755
new mode 100644
diff --git a/modules/color/images/hook-rtl.png b/modules/color/images/hook-rtl.png
old mode 100755
new mode 100644
diff --git a/modules/color/images/hook.png b/modules/color/images/hook.png
old mode 100755
new mode 100644
diff --git a/modules/color/images/lock.png b/modules/color/images/lock.png
old mode 100755
new mode 100644
diff --git a/modules/color/preview.html b/modules/color/preview.html
old mode 100755
new mode 100644
diff --git a/modules/color/preview.js b/modules/color/preview.js
old mode 100755
new mode 100644
diff --git a/modules/comment/comment-node-form.js b/modules/comment/comment-node-form.js
old mode 100755
new mode 100644
diff --git a/modules/comment/comment-rtl.css b/modules/comment/comment-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/comment/comment-wrapper.tpl.php b/modules/comment/comment-wrapper.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/comment/comment.admin.inc b/modules/comment/comment.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/comment/comment.api.php b/modules/comment/comment.api.php
old mode 100755
new mode 100644
diff --git a/modules/comment/comment.css b/modules/comment/comment.css
old mode 100755
new mode 100644
diff --git a/modules/comment/comment.info b/modules/comment/comment.info
old mode 100755
new mode 100644
index 7cbe2461a..bef4c558a
--- a/modules/comment/comment.info
+++ b/modules/comment/comment.info
@@ -8,3 +8,9 @@ files[] = comment.module
files[] = comment.test
configure = admin/content/comment
stylesheets[all][] = comment.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/comment/comment.install b/modules/comment/comment.install
old mode 100755
new mode 100644
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
old mode 100755
new mode 100644
diff --git a/modules/comment/comment.pages.inc b/modules/comment/comment.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/comment/comment.test b/modules/comment/comment.test
old mode 100755
new mode 100644
diff --git a/modules/comment/comment.tokens.inc b/modules/comment/comment.tokens.inc
old mode 100755
new mode 100644
diff --git a/modules/comment/comment.tpl.php b/modules/comment/comment.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/contact/contact.admin.inc b/modules/contact/contact.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/contact/contact.info b/modules/contact/contact.info
old mode 100755
new mode 100644
index 943004515..3c317c004
--- a/modules/contact/contact.info
+++ b/modules/contact/contact.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = contact.test
configure = admin/structure/contact
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/contact/contact.install b/modules/contact/contact.install
old mode 100755
new mode 100644
diff --git a/modules/contact/contact.module b/modules/contact/contact.module
old mode 100755
new mode 100644
diff --git a/modules/contact/contact.pages.inc b/modules/contact/contact.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/contact/contact.test b/modules/contact/contact.test
old mode 100755
new mode 100644
diff --git a/modules/contextual/contextual-rtl.css b/modules/contextual/contextual-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/contextual/contextual.api.php b/modules/contextual/contextual.api.php
old mode 100755
new mode 100644
diff --git a/modules/contextual/contextual.css b/modules/contextual/contextual.css
old mode 100755
new mode 100644
diff --git a/modules/contextual/contextual.info b/modules/contextual/contextual.info
old mode 100755
new mode 100644
index 5ebc09809..f2aa02160
--- a/modules/contextual/contextual.info
+++ b/modules/contextual/contextual.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
files[] = contextual.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/contextual/contextual.js b/modules/contextual/contextual.js
old mode 100755
new mode 100644
diff --git a/modules/contextual/contextual.module b/modules/contextual/contextual.module
old mode 100755
new mode 100644
diff --git a/modules/contextual/contextual.test b/modules/contextual/contextual.test
old mode 100755
new mode 100644
diff --git a/modules/contextual/images/gear-select.png b/modules/contextual/images/gear-select.png
old mode 100755
new mode 100644
diff --git a/modules/dashboard/dashboard-rtl.css b/modules/dashboard/dashboard-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/dashboard/dashboard.api.php b/modules/dashboard/dashboard.api.php
old mode 100755
new mode 100644
diff --git a/modules/dashboard/dashboard.css b/modules/dashboard/dashboard.css
old mode 100755
new mode 100644
diff --git a/modules/dashboard/dashboard.info b/modules/dashboard/dashboard.info
old mode 100755
new mode 100644
index 41f4c9d47..ada3e53c7
--- a/modules/dashboard/dashboard.info
+++ b/modules/dashboard/dashboard.info
@@ -6,3 +6,9 @@ version = VERSION
files[] = dashboard.test
dependencies[] = block
configure = admin/dashboard/customize
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/dashboard/dashboard.install b/modules/dashboard/dashboard.install
old mode 100755
new mode 100644
diff --git a/modules/dashboard/dashboard.js b/modules/dashboard/dashboard.js
old mode 100755
new mode 100644
diff --git a/modules/dashboard/dashboard.module b/modules/dashboard/dashboard.module
old mode 100755
new mode 100644
diff --git a/modules/dashboard/dashboard.test b/modules/dashboard/dashboard.test
old mode 100755
new mode 100644
diff --git a/modules/dblog/dblog-rtl.css b/modules/dblog/dblog-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/dblog/dblog.admin.inc b/modules/dblog/dblog.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/dblog/dblog.css b/modules/dblog/dblog.css
old mode 100755
new mode 100644
diff --git a/modules/dblog/dblog.info b/modules/dblog/dblog.info
old mode 100755
new mode 100644
index 608bdd726..5e3504839
--- a/modules/dblog/dblog.info
+++ b/modules/dblog/dblog.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
files[] = dblog.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/dblog/dblog.install b/modules/dblog/dblog.install
old mode 100755
new mode 100644
diff --git a/modules/dblog/dblog.module b/modules/dblog/dblog.module
old mode 100755
new mode 100644
diff --git a/modules/dblog/dblog.test b/modules/dblog/dblog.test
old mode 100755
new mode 100644
diff --git a/modules/field/field.api.php b/modules/field/field.api.php
old mode 100755
new mode 100644
diff --git a/modules/field/field.attach.inc b/modules/field/field.attach.inc
old mode 100755
new mode 100644
diff --git a/modules/field/field.crud.inc b/modules/field/field.crud.inc
old mode 100755
new mode 100644
diff --git a/modules/field/field.default.inc b/modules/field/field.default.inc
old mode 100755
new mode 100644
diff --git a/modules/field/field.form.inc b/modules/field/field.form.inc
old mode 100755
new mode 100644
diff --git a/modules/field/field.info b/modules/field/field.info
old mode 100755
new mode 100644
index f8a331a00..223587ca5
--- a/modules/field/field.info
+++ b/modules/field/field.info
@@ -9,3 +9,9 @@ files[] = tests/field.test
dependencies[] = field_sql_storage
required = TRUE
stylesheets[all][] = theme/field.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/field/field.info.inc b/modules/field/field.info.inc
old mode 100755
new mode 100644
diff --git a/modules/field/field.install b/modules/field/field.install
old mode 100755
new mode 100644
diff --git a/modules/field/field.module b/modules/field/field.module
old mode 100755
new mode 100644
diff --git a/modules/field/field.multilingual.inc b/modules/field/field.multilingual.inc
old mode 100755
new mode 100644
diff --git a/modules/field/modules/field_sql_storage/field_sql_storage.info b/modules/field/modules/field_sql_storage/field_sql_storage.info
old mode 100755
new mode 100644
index 93138501b..ab4cf34b2
--- a/modules/field/modules/field_sql_storage/field_sql_storage.info
+++ b/modules/field/modules/field_sql_storage/field_sql_storage.info
@@ -6,3 +6,9 @@ core = 7.x
dependencies[] = field
files[] = field_sql_storage.test
required = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/field/modules/field_sql_storage/field_sql_storage.install b/modules/field/modules/field_sql_storage/field_sql_storage.install
old mode 100755
new mode 100644
diff --git a/modules/field/modules/field_sql_storage/field_sql_storage.module b/modules/field/modules/field_sql_storage/field_sql_storage.module
old mode 100755
new mode 100644
diff --git a/modules/field/modules/field_sql_storage/field_sql_storage.test b/modules/field/modules/field_sql_storage/field_sql_storage.test
old mode 100755
new mode 100644
diff --git a/modules/field/modules/list/list.info b/modules/field/modules/list/list.info
old mode 100755
new mode 100644
index 6bcec5d1e..a84296cca
--- a/modules/field/modules/list/list.info
+++ b/modules/field/modules/list/list.info
@@ -6,3 +6,9 @@ core = 7.x
dependencies[] = field
dependencies[] = options
files[] = tests/list.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/field/modules/list/list.install b/modules/field/modules/list/list.install
old mode 100755
new mode 100644
diff --git a/modules/field/modules/list/list.module b/modules/field/modules/list/list.module
old mode 100755
new mode 100644
diff --git a/modules/field/modules/list/tests/list.test b/modules/field/modules/list/tests/list.test
old mode 100755
new mode 100644
diff --git a/modules/field/modules/list/tests/list_test.info b/modules/field/modules/list/tests/list_test.info
old mode 100755
new mode 100644
index 83ae747a9..2e961dead
--- a/modules/field/modules/list/tests/list_test.info
+++ b/modules/field/modules/list/tests/list_test.info
@@ -4,3 +4,9 @@ core = 7.x
package = Testing
version = VERSION
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/field/modules/list/tests/list_test.module b/modules/field/modules/list/tests/list_test.module
old mode 100755
new mode 100644
diff --git a/modules/field/modules/number/number.info b/modules/field/modules/number/number.info
old mode 100755
new mode 100644
index 203d85d43..74ba621ff
--- a/modules/field/modules/number/number.info
+++ b/modules/field/modules/number/number.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
dependencies[] = field
files[] = number.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/field/modules/number/number.install b/modules/field/modules/number/number.install
old mode 100755
new mode 100644
diff --git a/modules/field/modules/number/number.module b/modules/field/modules/number/number.module
old mode 100755
new mode 100644
diff --git a/modules/field/modules/number/number.test b/modules/field/modules/number/number.test
old mode 100755
new mode 100644
diff --git a/modules/field/modules/options/options.api.php b/modules/field/modules/options/options.api.php
old mode 100755
new mode 100644
diff --git a/modules/field/modules/options/options.info b/modules/field/modules/options/options.info
old mode 100755
new mode 100644
index 985a74ce7..3e989d3aa
--- a/modules/field/modules/options/options.info
+++ b/modules/field/modules/options/options.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
dependencies[] = field
files[] = options.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/field/modules/options/options.module b/modules/field/modules/options/options.module
old mode 100755
new mode 100644
diff --git a/modules/field/modules/options/options.test b/modules/field/modules/options/options.test
old mode 100755
new mode 100644
diff --git a/modules/field/modules/text/text.info b/modules/field/modules/text/text.info
old mode 100755
new mode 100644
index 976e29904..e09eaa79d
--- a/modules/field/modules/text/text.info
+++ b/modules/field/modules/text/text.info
@@ -6,3 +6,9 @@ core = 7.x
dependencies[] = field
files[] = text.test
required = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/field/modules/text/text.install b/modules/field/modules/text/text.install
old mode 100755
new mode 100644
diff --git a/modules/field/modules/text/text.js b/modules/field/modules/text/text.js
old mode 100755
new mode 100644
diff --git a/modules/field/modules/text/text.module b/modules/field/modules/text/text.module
old mode 100755
new mode 100644
diff --git a/modules/field/modules/text/text.test b/modules/field/modules/text/text.test
old mode 100755
new mode 100644
diff --git a/modules/field/tests/field.test b/modules/field/tests/field.test
old mode 100755
new mode 100644
diff --git a/modules/field/tests/field_test.entity.inc b/modules/field/tests/field_test.entity.inc
old mode 100755
new mode 100644
diff --git a/modules/field/tests/field_test.field.inc b/modules/field/tests/field_test.field.inc
old mode 100755
new mode 100644
diff --git a/modules/field/tests/field_test.info b/modules/field/tests/field_test.info
old mode 100755
new mode 100644
index 6d117068c..c457fe97e
--- a/modules/field/tests/field_test.info
+++ b/modules/field/tests/field_test.info
@@ -5,3 +5,9 @@ package = Testing
files[] = field_test.entity.inc
version = VERSION
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/field/tests/field_test.install b/modules/field/tests/field_test.install
old mode 100755
new mode 100644
diff --git a/modules/field/tests/field_test.module b/modules/field/tests/field_test.module
old mode 100755
new mode 100644
diff --git a/modules/field/tests/field_test.storage.inc b/modules/field/tests/field_test.storage.inc
old mode 100755
new mode 100644
diff --git a/modules/field/theme/field-rtl.css b/modules/field/theme/field-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/field/theme/field.css b/modules/field/theme/field.css
old mode 100755
new mode 100644
diff --git a/modules/field/theme/field.tpl.php b/modules/field/theme/field.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/field_ui/field_ui-rtl.css b/modules/field_ui/field_ui-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/field_ui/field_ui.admin.inc b/modules/field_ui/field_ui.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/field_ui/field_ui.api.php b/modules/field_ui/field_ui.api.php
old mode 100755
new mode 100644
diff --git a/modules/field_ui/field_ui.css b/modules/field_ui/field_ui.css
old mode 100755
new mode 100644
diff --git a/modules/field_ui/field_ui.info b/modules/field_ui/field_ui.info
old mode 100755
new mode 100644
index 41d0999bc..0957d1ec7
--- a/modules/field_ui/field_ui.info
+++ b/modules/field_ui/field_ui.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
dependencies[] = field
files[] = field_ui.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/field_ui/field_ui.js b/modules/field_ui/field_ui.js
old mode 100755
new mode 100644
diff --git a/modules/field_ui/field_ui.module b/modules/field_ui/field_ui.module
old mode 100755
new mode 100644
diff --git a/modules/field_ui/field_ui.test b/modules/field_ui/field_ui.test
old mode 100755
new mode 100644
diff --git a/modules/file/file.api.php b/modules/file/file.api.php
old mode 100755
new mode 100644
diff --git a/modules/file/file.css b/modules/file/file.css
old mode 100755
new mode 100644
diff --git a/modules/file/file.field.inc b/modules/file/file.field.inc
old mode 100755
new mode 100644
diff --git a/modules/file/file.info b/modules/file/file.info
old mode 100755
new mode 100644
index eda79f96d..5a70a1e0a
--- a/modules/file/file.info
+++ b/modules/file/file.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
dependencies[] = field
files[] = tests/file.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/file/file.install b/modules/file/file.install
old mode 100755
new mode 100644
diff --git a/modules/file/file.js b/modules/file/file.js
old mode 100755
new mode 100644
diff --git a/modules/file/file.module b/modules/file/file.module
old mode 100755
new mode 100644
diff --git a/modules/file/icons/application-octet-stream.png b/modules/file/icons/application-octet-stream.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/application-pdf.png b/modules/file/icons/application-pdf.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/application-x-executable.png b/modules/file/icons/application-x-executable.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/audio-x-generic.png b/modules/file/icons/audio-x-generic.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/image-x-generic.png b/modules/file/icons/image-x-generic.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/package-x-generic.png b/modules/file/icons/package-x-generic.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/text-html.png b/modules/file/icons/text-html.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/text-plain.png b/modules/file/icons/text-plain.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/text-x-generic.png b/modules/file/icons/text-x-generic.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/text-x-script.png b/modules/file/icons/text-x-script.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/video-x-generic.png b/modules/file/icons/video-x-generic.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/x-office-document.png b/modules/file/icons/x-office-document.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/x-office-presentation.png b/modules/file/icons/x-office-presentation.png
old mode 100755
new mode 100644
diff --git a/modules/file/icons/x-office-spreadsheet.png b/modules/file/icons/x-office-spreadsheet.png
old mode 100755
new mode 100644
diff --git a/modules/file/tests/file.test b/modules/file/tests/file.test
old mode 100755
new mode 100644
diff --git a/modules/file/tests/file_module_test.info b/modules/file/tests/file_module_test.info
old mode 100755
new mode 100644
index 8db907b74..4f74a9c4d
--- a/modules/file/tests/file_module_test.info
+++ b/modules/file/tests/file_module_test.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/file/tests/file_module_test.module b/modules/file/tests/file_module_test.module
old mode 100755
new mode 100644
diff --git a/modules/filter/filter.admin.inc b/modules/filter/filter.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/filter/filter.admin.js b/modules/filter/filter.admin.js
old mode 100755
new mode 100644
diff --git a/modules/filter/filter.api.php b/modules/filter/filter.api.php
old mode 100755
new mode 100644
diff --git a/modules/filter/filter.css b/modules/filter/filter.css
old mode 100755
new mode 100644
diff --git a/modules/filter/filter.info b/modules/filter/filter.info
old mode 100755
new mode 100644
index 0aebbf8f8..2c0b0fe2d
--- a/modules/filter/filter.info
+++ b/modules/filter/filter.info
@@ -6,3 +6,9 @@ core = 7.x
files[] = filter.test
required = TRUE
configure = admin/config/content/formats
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/filter/filter.install b/modules/filter/filter.install
old mode 100755
new mode 100644
diff --git a/modules/filter/filter.js b/modules/filter/filter.js
old mode 100755
new mode 100644
diff --git a/modules/filter/filter.module b/modules/filter/filter.module
old mode 100755
new mode 100644
diff --git a/modules/filter/filter.pages.inc b/modules/filter/filter.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/filter/filter.test b/modules/filter/filter.test
old mode 100755
new mode 100644
diff --git a/modules/filter/tests/filter.url-input.txt b/modules/filter/tests/filter.url-input.txt
old mode 100755
new mode 100644
diff --git a/modules/filter/tests/filter.url-output.txt b/modules/filter/tests/filter.url-output.txt
old mode 100755
new mode 100644
diff --git a/modules/forum/forum-icon.tpl.php b/modules/forum/forum-icon.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/forum/forum-list.tpl.php b/modules/forum/forum-list.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/forum/forum-rtl.css b/modules/forum/forum-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/forum/forum-submitted.tpl.php b/modules/forum/forum-submitted.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/forum/forum-topic-list.tpl.php b/modules/forum/forum-topic-list.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/forum/forum.admin.inc b/modules/forum/forum.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/forum/forum.css b/modules/forum/forum.css
old mode 100755
new mode 100644
diff --git a/modules/forum/forum.info b/modules/forum/forum.info
old mode 100755
new mode 100644
index b18a0e5dc..22c17758a
--- a/modules/forum/forum.info
+++ b/modules/forum/forum.info
@@ -8,3 +8,9 @@ core = 7.x
files[] = forum.test
configure = admin/structure/forum
stylesheets[all][] = forum.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/forum/forum.install b/modules/forum/forum.install
old mode 100755
new mode 100644
diff --git a/modules/forum/forum.module b/modules/forum/forum.module
old mode 100755
new mode 100644
diff --git a/modules/forum/forum.pages.inc b/modules/forum/forum.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/forum/forum.test b/modules/forum/forum.test
old mode 100755
new mode 100644
diff --git a/modules/forum/forums.tpl.php b/modules/forum/forums.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/help/help-rtl.css b/modules/help/help-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/help/help.admin.inc b/modules/help/help.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/help/help.api.php b/modules/help/help.api.php
old mode 100755
new mode 100644
diff --git a/modules/help/help.css b/modules/help/help.css
old mode 100755
new mode 100644
diff --git a/modules/help/help.info b/modules/help/help.info
old mode 100755
new mode 100644
index d4c1b36bb..58562c097
--- a/modules/help/help.info
+++ b/modules/help/help.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
files[] = help.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/help/help.module b/modules/help/help.module
old mode 100755
new mode 100644
diff --git a/modules/help/help.test b/modules/help/help.test
old mode 100755
new mode 100644
diff --git a/modules/image/image-rtl.css b/modules/image/image-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/image/image.admin.css b/modules/image/image.admin.css
old mode 100755
new mode 100644
diff --git a/modules/image/image.admin.inc b/modules/image/image.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/image/image.api.php b/modules/image/image.api.php
old mode 100755
new mode 100644
diff --git a/modules/image/image.css b/modules/image/image.css
old mode 100755
new mode 100644
diff --git a/modules/image/image.effects.inc b/modules/image/image.effects.inc
old mode 100755
new mode 100644
diff --git a/modules/image/image.field.inc b/modules/image/image.field.inc
old mode 100755
new mode 100644
diff --git a/modules/image/image.info b/modules/image/image.info
old mode 100755
new mode 100644
index d7eece13b..2919d36fe
--- a/modules/image/image.info
+++ b/modules/image/image.info
@@ -6,3 +6,9 @@ core = 7.x
dependencies[] = file
files[] = image.test
configure = admin/config/media/image-styles
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/image/image.install b/modules/image/image.install
old mode 100755
new mode 100644
diff --git a/modules/image/image.module b/modules/image/image.module
old mode 100755
new mode 100644
index b55088247..d7178ad7d
--- a/modules/image/image.module
+++ b/modules/image/image.module
@@ -30,6 +30,11 @@ define('IMAGE_STORAGE_EDITABLE', IMAGE_STORAGE_NORMAL | IMAGE_STORAGE_OVERRIDE);
*/
define('IMAGE_STORAGE_MODULE', IMAGE_STORAGE_OVERRIDE | IMAGE_STORAGE_DEFAULT);
+/**
+ * The name of the query parameter for image derivative tokens.
+ */
+define('IMAGE_DERIVATIVE_TOKEN', 'itok');
+
// Load all Field module hooks for Image.
require_once DRUPAL_ROOT . '/modules/image/image.field.inc';
@@ -538,11 +543,6 @@ function image_field_update_instance($instance, $prior_instance) {
* The Drupal file path to the original image.
*/
function image_path_flush($path) {
- // Pantheon optimization: one bulk operation is better.
- if (function_exists('pantheon_api_image_path_flush')) {
- pantheon_api_image_path_flush($path);
- return;
- }
$styles = image_styles();
foreach ($styles as $style) {
$image_path = image_style_path($style['name'], $path);
@@ -771,16 +771,24 @@ function image_style_options($include_empty = TRUE) {
* The image style
*/
function image_style_deliver($style, $scheme) {
- // Check that the style is defined and the scheme is valid.
- if (!$style || !file_stream_wrapper_valid_scheme($scheme)) {
- drupal_exit();
- }
-
$args = func_get_args();
array_shift($args);
array_shift($args);
$target = implode('/', $args);
+ // Check that the style is defined, the scheme is valid, and the image
+ // derivative token is valid. (Sites which require image derivatives to be
+ // generated without a token can set the 'image_allow_insecure_derivatives'
+ // variable to TRUE to bypass the latter check, but this will increase the
+ // site's vulnerability to denial-of-service attacks.)
+ $valid = !empty($style) && file_stream_wrapper_valid_scheme($scheme);
+ if (!variable_get('image_allow_insecure_derivatives', FALSE)) {
+ $valid = $valid && isset($_GET[IMAGE_DERIVATIVE_TOKEN]) && $_GET[IMAGE_DERIVATIVE_TOKEN] === image_style_path_token($style['name'], $scheme . '://' . $target);
+ }
+ if (!$valid) {
+ return MENU_ACCESS_DENIED;
+ }
+
$image_uri = $scheme . '://' . $target;
$derivative_uri = image_style_path($style['name'], $image_uri);
@@ -965,6 +973,10 @@ function image_style_flush($style) {
*/
function image_style_url($style_name, $path) {
$uri = image_style_path($style_name, $path);
+ // The token query is added even if the 'image_allow_insecure_derivatives'
+ // variable is TRUE, so that the emitted links remain valid if it is changed
+ // back to the default FALSE.
+ $token_query = array(IMAGE_DERIVATIVE_TOKEN => image_style_path_token($style_name, $path));
// If not using clean URLs, the image derivative callback is only available
// with the query string. If the file does not exist, use url() to ensure
@@ -972,10 +984,33 @@ function image_style_url($style_name, $path) {
// actual file path, this avoids bootstrapping PHP once the files are built.
if (!variable_get('clean_url') && file_uri_scheme($uri) == 'public' && !file_exists($uri)) {
$directory_path = file_stream_wrapper_get_instance_by_uri($uri)->getDirectoryPath();
- return url($directory_path . '/' . file_uri_target($uri), array('absolute' => TRUE));
+ return url($directory_path . '/' . file_uri_target($uri), array('absolute' => TRUE, 'query' => $token_query));
}
- return file_create_url($uri);
+ $file_url = file_create_url($uri);
+ // Append the query string with the token.
+ return $file_url . (strpos($file_url, '?') !== FALSE ? '&' : '?') . drupal_http_build_query($token_query);
+}
+
+/**
+ * Generates a token to protect an image style derivative.
+ *
+ * This prevents unauthorized generation of an image style derivative,
+ * which can be costly both in CPU time and disk space.
+ *
+ * @param $style_name
+ * The name of the image style.
+ * @param $uri
+ * The URI of the image for this style, for example as returned by
+ * image_style_path().
+ *
+ * @return
+ * An eight-character token which can be used to protect image style
+ * derivatives against denial-of-service attacks.
+ */
+function image_style_path_token($style_name, $uri) {
+ // Return the first eight characters.
+ return substr(drupal_hmac_base64($style_name . ':' . $uri, drupal_get_private_key() . drupal_get_hash_salt()), 0, 8);
}
/**
diff --git a/modules/image/image.test b/modules/image/image.test
old mode 100755
new mode 100644
index 1ca846506..d4db2130b
--- a/modules/image/image.test
+++ b/modules/image/image.test
@@ -192,13 +192,19 @@ class ImageStylesPathAndUrlTestCase extends DrupalWebTestCase {
$this->assertNotIdentical(FALSE, $original_uri, t('Created the generated image file.'));
// Get the URL of a file that has not been generated and try to create it.
- $generated_uri = $scheme . '://styles/' . $this->style_name . '/' . $scheme . '/'. drupal_basename($original_uri);
+ $generated_uri = image_style_path($this->style_name, $original_uri);
$this->assertFalse(file_exists($generated_uri), t('Generated file does not exist.'));
$generate_url = image_style_url($this->style_name, $original_uri);
if (!$clean_url) {
$this->assertTrue(strpos($generate_url, '?q=') !== FALSE, 'When using non-clean URLS, the system path contains the query string.');
}
+ // Add some extra chars to the token.
+ $this->drupalGet(str_replace(IMAGE_DERIVATIVE_TOKEN . '=', IMAGE_DERIVATIVE_TOKEN . '=Zo', $generate_url));
+ $this->assertResponse(403, 'Image was inaccessible at the URL wih an invalid token.');
+ // Change the parameter name so the token is missing.
+ $this->drupalGet(str_replace(IMAGE_DERIVATIVE_TOKEN . '=', 'wrongparam=', $generate_url));
+ $this->assertResponse(403, 'Image was inaccessible at the URL wih a missing token.');
// Fetch the URL that generates the file.
$this->drupalGet($generate_url);
@@ -238,6 +244,11 @@ class ImageStylesPathAndUrlTestCase extends DrupalWebTestCase {
$this->assertNoRaw( chr(137) . chr(80) . chr(78) . chr(71) . chr(13) . chr(10) . chr(26) . chr(10), 'No PNG signature found in the response body.');
}
}
+ elseif ($clean_url) {
+ // Add some extra chars to the token.
+ $this->drupalGet(str_replace(IMAGE_DERIVATIVE_TOKEN . '=', IMAGE_DERIVATIVE_TOKEN . '=Zo', $generate_url));
+ $this->assertResponse(200, 'Existing image was accessible at the URL wih an invalid token.');
+ }
}
}
@@ -661,7 +672,7 @@ class ImageAdminStylesUnitTest extends ImageFieldTestCase {
// Test that image is displayed using newly created style.
$this->drupalGet('node/' . $nid);
- $this->assertRaw(image_style_url($style_name, $node->{$field_name}[LANGUAGE_NONE][0]['uri']), t('Image displayed using style @style.', array('@style' => $style_name)));
+ $this->assertRaw(check_plain(image_style_url($style_name, $node->{$field_name}[LANGUAGE_NONE][0]['uri'])), t('Image displayed using style @style.', array('@style' => $style_name)));
// Rename the style and make sure the image field is updated.
$new_style_name = strtolower($this->randomName(10));
@@ -671,7 +682,7 @@ class ImageAdminStylesUnitTest extends ImageFieldTestCase {
$this->drupalPost('admin/config/media/image-styles/edit/' . $style_name, $edit, t('Update style'));
$this->assertText(t('Changes to the style have been saved.'), t('Style %name was renamed to %new_name.', array('%name' => $style_name, '%new_name' => $new_style_name)));
$this->drupalGet('node/' . $nid);
- $this->assertRaw(image_style_url($new_style_name, $node->{$field_name}[LANGUAGE_NONE][0]['uri']), t('Image displayed using style replacement style.'));
+ $this->assertRaw(check_plain(image_style_url($new_style_name, $node->{$field_name}[LANGUAGE_NONE][0]['uri'])), t('Image displayed using style replacement style.'));
// Delete the style and choose a replacement style.
$edit = array(
@@ -682,7 +693,7 @@ class ImageAdminStylesUnitTest extends ImageFieldTestCase {
$this->assertRaw($message, $message);
$this->drupalGet('node/' . $nid);
- $this->assertRaw(image_style_url('thumbnail', $node->{$field_name}[LANGUAGE_NONE][0]['uri']), t('Image displayed using style replacement style.'));
+ $this->assertRaw(check_plain(image_style_url('thumbnail', $node->{$field_name}[LANGUAGE_NONE][0]['uri'])), t('Image displayed using style replacement style.'));
}
}
@@ -775,7 +786,9 @@ class ImageFieldDisplayTestCase extends ImageFieldTestCase {
// Ensure the derivative image is generated so we do not have to deal with
// image style callback paths.
$this->drupalGet(image_style_url('thumbnail', $image_uri));
- $image_info['path'] = image_style_path('thumbnail', $image_uri);
+ // Need to create the URL again since it will change if clean URLs
+ // are disabled.
+ $image_info['path'] = image_style_url('thumbnail', $image_uri);
$image_info['width'] = 100;
$image_info['height'] = 50;
$default_output = theme('image', $image_info);
@@ -1061,7 +1074,7 @@ class ImageDimensionsTestCase extends DrupalWebTestCase {
image_effect_save($effect);
$img_tag = theme_image_style($variables);
- $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
+ $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
$this->assertFalse(file_exists($generated_uri), t('Generated file does not exist.'));
$this->drupalGet($url);
$this->assertResponse(200, t('Image was generated at the URL.'));
@@ -1082,7 +1095,7 @@ class ImageDimensionsTestCase extends DrupalWebTestCase {
image_effect_save($effect);
$img_tag = theme_image_style($variables);
- $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
+ $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
$this->assertFalse(file_exists($generated_uri), t('Generated file does not exist.'));
$this->drupalGet($url);
$this->assertResponse(200, t('Image was generated at the URL.'));
@@ -1104,7 +1117,7 @@ class ImageDimensionsTestCase extends DrupalWebTestCase {
image_effect_save($effect);
$img_tag = theme_image_style($variables);
- $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
+ $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
$this->assertFalse(file_exists($generated_uri), t('Generated file does not exist.'));
$this->drupalGet($url);
$this->assertResponse(200, t('Image was generated at the URL.'));
@@ -1126,7 +1139,7 @@ class ImageDimensionsTestCase extends DrupalWebTestCase {
image_effect_save($effect);
$img_tag = theme_image_style($variables);
- $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
+ $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
$this->assertFalse(file_exists($generated_uri), t('Generated file does not exist.'));
$this->drupalGet($url);
$this->assertResponse(200, t('Image was generated at the URL.'));
@@ -1144,7 +1157,7 @@ class ImageDimensionsTestCase extends DrupalWebTestCase {
image_effect_save($effect);
$img_tag = theme_image_style($variables);
- $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
+ $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
$this->assertFalse(file_exists($generated_uri), t('Generated file does not exist.'));
$this->drupalGet($url);
$this->assertResponse(200, t('Image was generated at the URL.'));
@@ -1165,7 +1178,7 @@ class ImageDimensionsTestCase extends DrupalWebTestCase {
image_effect_save($effect);
$img_tag = theme_image_style($variables);
- $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
+ $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
$this->assertFalse(file_exists($generated_uri), t('Generated file does not exist.'));
$this->drupalGet($url);
$this->assertResponse(200, t('Image was generated at the URL.'));
@@ -1185,7 +1198,7 @@ class ImageDimensionsTestCase extends DrupalWebTestCase {
image_effect_save($effect);
$img_tag = theme_image_style($variables);
- $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
+ $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
$this->assertFalse(file_exists($generated_uri), t('Generated file does not exist.'));
$this->drupalGet($url);
$this->assertResponse(200, t('Image was generated at the URL.'));
@@ -1206,7 +1219,7 @@ class ImageDimensionsTestCase extends DrupalWebTestCase {
$effect = image_effect_save($effect);
$img_tag = theme_image_style($variables);
- $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
+ $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
$this->assertFalse(file_exists($generated_uri), t('Generated file does not exist.'));
$this->drupalGet($url);
$this->assertResponse(200, t('Image was generated at the URL.'));
@@ -1224,7 +1237,7 @@ class ImageDimensionsTestCase extends DrupalWebTestCase {
image_effect_save($effect);
$img_tag = theme_image_style($variables);
- $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
+ $this->assertEqual($img_tag, '
', t('Expected img tag was found.'));
}
}
@@ -1642,7 +1655,7 @@ class ImageThemeFunctionWebTestCase extends DrupalWebTestCase {
),
);
$rendered_element = render($element);
- $expected_result = '
';
+ $expected_result = '
';
$this->assertEqual($expected_result, $rendered_element, 'theme_image_formatter() correctly renders without title, alt, or path options.');
// Link the image to a fragment on the page, and not a full URL.
@@ -1653,7 +1666,7 @@ class ImageThemeFunctionWebTestCase extends DrupalWebTestCase {
'fragment' => $fragment,
);
$rendered_element = render($element);
- $expected_result = '
';
+ $expected_result = '
';
$this->assertEqual($expected_result, $rendered_element, 'theme_image_formatter() correctly renders a link fragment.');
}
diff --git a/modules/image/sample.png b/modules/image/sample.png
old mode 100755
new mode 100644
diff --git a/modules/image/tests/image_module_test.info b/modules/image/tests/image_module_test.info
old mode 100755
new mode 100644
index db7eacd99..7f4649320
--- a/modules/image/tests/image_module_test.info
+++ b/modules/image/tests/image_module_test.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = image_module_test.module
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/image/tests/image_module_test.module b/modules/image/tests/image_module_test.module
old mode 100755
new mode 100644
diff --git a/modules/locale/locale-rtl.css b/modules/locale/locale-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/locale/locale.admin.inc b/modules/locale/locale.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/locale/locale.api.php b/modules/locale/locale.api.php
old mode 100755
new mode 100644
diff --git a/modules/locale/locale.css b/modules/locale/locale.css
old mode 100755
new mode 100644
diff --git a/modules/locale/locale.datepicker.js b/modules/locale/locale.datepicker.js
old mode 100755
new mode 100644
diff --git a/modules/locale/locale.info b/modules/locale/locale.info
old mode 100755
new mode 100644
index 1d6bdcf54..147ce84f9
--- a/modules/locale/locale.info
+++ b/modules/locale/locale.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = locale.test
configure = admin/config/regional/language
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/locale/locale.install b/modules/locale/locale.install
old mode 100755
new mode 100644
diff --git a/modules/locale/locale.module b/modules/locale/locale.module
old mode 100755
new mode 100644
diff --git a/modules/locale/locale.test b/modules/locale/locale.test
old mode 100755
new mode 100644
diff --git a/modules/locale/tests/locale_test.info b/modules/locale/tests/locale_test.info
old mode 100755
new mode 100644
index 3744a9e48..06c0eee8d
--- a/modules/locale/tests/locale_test.info
+++ b/modules/locale/tests/locale_test.info
@@ -4,3 +4,9 @@ core = 7.x
package = Testing
version = VERSION
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/locale/tests/locale_test.js b/modules/locale/tests/locale_test.js
old mode 100755
new mode 100644
diff --git a/modules/locale/tests/locale_test.module b/modules/locale/tests/locale_test.module
old mode 100755
new mode 100644
diff --git a/modules/locale/tests/translations/test.xx.po b/modules/locale/tests/translations/test.xx.po
old mode 100755
new mode 100644
diff --git a/modules/menu/menu.admin.inc b/modules/menu/menu.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/menu/menu.admin.js b/modules/menu/menu.admin.js
old mode 100755
new mode 100644
diff --git a/modules/menu/menu.api.php b/modules/menu/menu.api.php
old mode 100755
new mode 100644
diff --git a/modules/menu/menu.css b/modules/menu/menu.css
old mode 100755
new mode 100644
diff --git a/modules/menu/menu.info b/modules/menu/menu.info
old mode 100755
new mode 100644
index 2219f6911..16b08aef6
--- a/modules/menu/menu.info
+++ b/modules/menu/menu.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = menu.test
configure = admin/structure/menu
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/menu/menu.install b/modules/menu/menu.install
old mode 100755
new mode 100644
diff --git a/modules/menu/menu.js b/modules/menu/menu.js
old mode 100755
new mode 100644
diff --git a/modules/menu/menu.module b/modules/menu/menu.module
old mode 100755
new mode 100644
diff --git a/modules/menu/menu.test b/modules/menu/menu.test
old mode 100755
new mode 100644
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc
old mode 100755
new mode 100644
diff --git a/modules/node/content_types.js b/modules/node/content_types.js
old mode 100755
new mode 100644
diff --git a/modules/node/node.admin.inc b/modules/node/node.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/node/node.api.php b/modules/node/node.api.php
old mode 100755
new mode 100644
diff --git a/modules/node/node.css b/modules/node/node.css
old mode 100755
new mode 100644
diff --git a/modules/node/node.info b/modules/node/node.info
old mode 100755
new mode 100644
index 85866e7af..26805f6d2
--- a/modules/node/node.info
+++ b/modules/node/node.info
@@ -8,3 +8,9 @@ files[] = node.test
required = TRUE
configure = admin/structure/types
stylesheets[all][] = node.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/node/node.install b/modules/node/node.install
old mode 100755
new mode 100644
diff --git a/modules/node/node.js b/modules/node/node.js
old mode 100755
new mode 100644
diff --git a/modules/node/node.module b/modules/node/node.module
old mode 100755
new mode 100644
diff --git a/modules/node/node.pages.inc b/modules/node/node.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/node/node.test b/modules/node/node.test
old mode 100755
new mode 100644
diff --git a/modules/node/node.tokens.inc b/modules/node/node.tokens.inc
old mode 100755
new mode 100644
diff --git a/modules/node/node.tpl.php b/modules/node/node.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/node/tests/node_access_test.info b/modules/node/tests/node_access_test.info
old mode 100755
new mode 100644
index dc5e53040..d620c7d01
--- a/modules/node/tests/node_access_test.info
+++ b/modules/node/tests/node_access_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/node/tests/node_access_test.install b/modules/node/tests/node_access_test.install
old mode 100755
new mode 100644
diff --git a/modules/node/tests/node_access_test.module b/modules/node/tests/node_access_test.module
old mode 100755
new mode 100644
diff --git a/modules/node/tests/node_test.info b/modules/node/tests/node_test.info
old mode 100755
new mode 100644
index fa6c093d1..fe157e0a2
--- a/modules/node/tests/node_test.info
+++ b/modules/node/tests/node_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/node/tests/node_test.module b/modules/node/tests/node_test.module
old mode 100755
new mode 100644
diff --git a/modules/node/tests/node_test_exception.info b/modules/node/tests/node_test_exception.info
old mode 100755
new mode 100644
index 1a339e0ea..c4f42704d
--- a/modules/node/tests/node_test_exception.info
+++ b/modules/node/tests/node_test_exception.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/node/tests/node_test_exception.module b/modules/node/tests/node_test_exception.module
old mode 100755
new mode 100644
diff --git a/modules/openid/login-bg.png b/modules/openid/login-bg.png
old mode 100755
new mode 100644
diff --git a/modules/openid/openid-rtl.css b/modules/openid/openid-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/openid/openid.api.php b/modules/openid/openid.api.php
old mode 100755
new mode 100644
diff --git a/modules/openid/openid.css b/modules/openid/openid.css
old mode 100755
new mode 100644
diff --git a/modules/openid/openid.inc b/modules/openid/openid.inc
old mode 100755
new mode 100644
diff --git a/modules/openid/openid.info b/modules/openid/openid.info
old mode 100755
new mode 100644
index 6a1843c78..bd63243a2
--- a/modules/openid/openid.info
+++ b/modules/openid/openid.info
@@ -4,3 +4,9 @@ version = VERSION
package = Core
core = 7.x
files[] = openid.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/openid/openid.install b/modules/openid/openid.install
old mode 100755
new mode 100644
diff --git a/modules/openid/openid.js b/modules/openid/openid.js
old mode 100755
new mode 100644
diff --git a/modules/openid/openid.module b/modules/openid/openid.module
old mode 100755
new mode 100644
diff --git a/modules/openid/openid.pages.inc b/modules/openid/openid.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/openid/openid.test b/modules/openid/openid.test
old mode 100755
new mode 100644
diff --git a/modules/openid/tests/openid_test.info b/modules/openid/tests/openid_test.info
old mode 100755
new mode 100644
index 755a5ee6a..b562e5ce0
--- a/modules/openid/tests/openid_test.info
+++ b/modules/openid/tests/openid_test.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
dependencies[] = openid
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/openid/tests/openid_test.install b/modules/openid/tests/openid_test.install
old mode 100755
new mode 100644
diff --git a/modules/openid/tests/openid_test.module b/modules/openid/tests/openid_test.module
old mode 100755
new mode 100644
diff --git a/modules/overlay/images/background.png b/modules/overlay/images/background.png
old mode 100755
new mode 100644
diff --git a/modules/overlay/images/close-rtl.png b/modules/overlay/images/close-rtl.png
old mode 100755
new mode 100644
diff --git a/modules/overlay/images/close.png b/modules/overlay/images/close.png
old mode 100755
new mode 100644
diff --git a/modules/overlay/overlay-child-rtl.css b/modules/overlay/overlay-child-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/overlay/overlay-child.css b/modules/overlay/overlay-child.css
old mode 100755
new mode 100644
diff --git a/modules/overlay/overlay-child.js b/modules/overlay/overlay-child.js
old mode 100755
new mode 100644
diff --git a/modules/overlay/overlay-parent.css b/modules/overlay/overlay-parent.css
old mode 100755
new mode 100644
diff --git a/modules/overlay/overlay-parent.js b/modules/overlay/overlay-parent.js
old mode 100755
new mode 100644
diff --git a/modules/overlay/overlay.api.php b/modules/overlay/overlay.api.php
old mode 100755
new mode 100644
diff --git a/modules/overlay/overlay.info b/modules/overlay/overlay.info
old mode 100755
new mode 100644
index 5fb354d9b..73bfc1b28
--- a/modules/overlay/overlay.info
+++ b/modules/overlay/overlay.info
@@ -3,3 +3,9 @@ description = Displays the Drupal administration interface in an overlay.
package = Core
version = VERSION
core = 7.x
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/overlay/overlay.install b/modules/overlay/overlay.install
old mode 100755
new mode 100644
diff --git a/modules/overlay/overlay.module b/modules/overlay/overlay.module
old mode 100755
new mode 100644
diff --git a/modules/overlay/overlay.tpl.php b/modules/overlay/overlay.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/path/path.admin.inc b/modules/path/path.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/path/path.api.php b/modules/path/path.api.php
old mode 100755
new mode 100644
diff --git a/modules/path/path.info b/modules/path/path.info
old mode 100755
new mode 100644
index 8b6b67c18..52d277a93
--- a/modules/path/path.info
+++ b/modules/path/path.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = path.test
configure = admin/config/search/path
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/path/path.js b/modules/path/path.js
old mode 100755
new mode 100644
diff --git a/modules/path/path.module b/modules/path/path.module
old mode 100755
new mode 100644
diff --git a/modules/path/path.test b/modules/path/path.test
old mode 100755
new mode 100644
diff --git a/modules/php/php.info b/modules/php/php.info
old mode 100755
new mode 100644
index cf863627c..bcd8a9202
--- a/modules/php/php.info
+++ b/modules/php/php.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
files[] = php.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/php/php.install b/modules/php/php.install
old mode 100755
new mode 100644
diff --git a/modules/php/php.module b/modules/php/php.module
old mode 100755
new mode 100644
diff --git a/modules/php/php.test b/modules/php/php.test
old mode 100755
new mode 100644
diff --git a/modules/poll/poll-bar--block.tpl.php b/modules/poll/poll-bar--block.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/poll/poll-bar.tpl.php b/modules/poll/poll-bar.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/poll/poll-results--block.tpl.php b/modules/poll/poll-results--block.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/poll/poll-results.tpl.php b/modules/poll/poll-results.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/poll/poll-rtl.css b/modules/poll/poll-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/poll/poll-vote.tpl.php b/modules/poll/poll-vote.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/poll/poll.css b/modules/poll/poll.css
old mode 100755
new mode 100644
diff --git a/modules/poll/poll.info b/modules/poll/poll.info
old mode 100755
new mode 100644
index 9297727b2..0033ec01e
--- a/modules/poll/poll.info
+++ b/modules/poll/poll.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = poll.test
stylesheets[all][] = poll.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/poll/poll.install b/modules/poll/poll.install
old mode 100755
new mode 100644
diff --git a/modules/poll/poll.module b/modules/poll/poll.module
old mode 100755
new mode 100644
diff --git a/modules/poll/poll.pages.inc b/modules/poll/poll.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/poll/poll.test b/modules/poll/poll.test
old mode 100755
new mode 100644
diff --git a/modules/poll/poll.tokens.inc b/modules/poll/poll.tokens.inc
old mode 100755
new mode 100644
diff --git a/modules/profile/profile-block.tpl.php b/modules/profile/profile-block.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/profile/profile-listing.tpl.php b/modules/profile/profile-listing.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/profile/profile-wrapper.tpl.php b/modules/profile/profile-wrapper.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/profile/profile.admin.inc b/modules/profile/profile.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/profile/profile.css b/modules/profile/profile.css
old mode 100755
new mode 100644
diff --git a/modules/profile/profile.info b/modules/profile/profile.info
old mode 100755
new mode 100644
index e45f4c569..a60c2a207
--- a/modules/profile/profile.info
+++ b/modules/profile/profile.info
@@ -10,3 +10,9 @@ configure = admin/config/people/profile
; are upgrading a site that uses the Profile module to extend user profiles.
; See user_system_info_alter().
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/profile/profile.install b/modules/profile/profile.install
old mode 100755
new mode 100644
diff --git a/modules/profile/profile.js b/modules/profile/profile.js
old mode 100755
new mode 100644
diff --git a/modules/profile/profile.module b/modules/profile/profile.module
old mode 100755
new mode 100644
diff --git a/modules/profile/profile.pages.inc b/modules/profile/profile.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/profile/profile.test b/modules/profile/profile.test
old mode 100755
new mode 100644
diff --git a/modules/rdf/rdf.api.php b/modules/rdf/rdf.api.php
old mode 100755
new mode 100644
diff --git a/modules/rdf/rdf.info b/modules/rdf/rdf.info
old mode 100755
new mode 100644
index dd5c63b56..322527ea6
--- a/modules/rdf/rdf.info
+++ b/modules/rdf/rdf.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
files[] = rdf.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/rdf/rdf.install b/modules/rdf/rdf.install
old mode 100755
new mode 100644
diff --git a/modules/rdf/rdf.module b/modules/rdf/rdf.module
old mode 100755
new mode 100644
diff --git a/modules/rdf/rdf.test b/modules/rdf/rdf.test
old mode 100755
new mode 100644
diff --git a/modules/rdf/tests/rdf_test.info b/modules/rdf/tests/rdf_test.info
old mode 100755
new mode 100644
index b64e9a5ce..88ebd8252
--- a/modules/rdf/tests/rdf_test.info
+++ b/modules/rdf/tests/rdf_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/rdf/tests/rdf_test.install b/modules/rdf/tests/rdf_test.install
old mode 100755
new mode 100644
diff --git a/modules/rdf/tests/rdf_test.module b/modules/rdf/tests/rdf_test.module
old mode 100755
new mode 100644
diff --git a/modules/search/search-block-form.tpl.php b/modules/search/search-block-form.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/search/search-result.tpl.php b/modules/search/search-result.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/search/search-results.tpl.php b/modules/search/search-results.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/search/search-rtl.css b/modules/search/search-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/search/search.admin.inc b/modules/search/search.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/search/search.api.php b/modules/search/search.api.php
old mode 100755
new mode 100644
diff --git a/modules/search/search.css b/modules/search/search.css
old mode 100755
new mode 100644
diff --git a/modules/search/search.extender.inc b/modules/search/search.extender.inc
old mode 100755
new mode 100644
diff --git a/modules/search/search.info b/modules/search/search.info
old mode 100755
new mode 100644
index 77cab0521..32a4999af
--- a/modules/search/search.info
+++ b/modules/search/search.info
@@ -7,3 +7,9 @@ files[] = search.extender.inc
files[] = search.test
configure = admin/config/search/settings
stylesheets[all][] = search.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/search/search.install b/modules/search/search.install
old mode 100755
new mode 100644
diff --git a/modules/search/search.module b/modules/search/search.module
old mode 100755
new mode 100644
diff --git a/modules/search/search.pages.inc b/modules/search/search.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/search/search.test b/modules/search/search.test
old mode 100755
new mode 100644
diff --git a/modules/search/tests/UnicodeTest.txt b/modules/search/tests/UnicodeTest.txt
old mode 100755
new mode 100644
diff --git a/modules/search/tests/search_embedded_form.info b/modules/search/tests/search_embedded_form.info
old mode 100755
new mode 100644
index 02e4c1f91..10a15ff6c
--- a/modules/search/tests/search_embedded_form.info
+++ b/modules/search/tests/search_embedded_form.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/search/tests/search_embedded_form.module b/modules/search/tests/search_embedded_form.module
old mode 100755
new mode 100644
diff --git a/modules/search/tests/search_extra_type.info b/modules/search/tests/search_extra_type.info
old mode 100755
new mode 100644
index 5c3293c8f..19171485a
--- a/modules/search/tests/search_extra_type.info
+++ b/modules/search/tests/search_extra_type.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/search/tests/search_extra_type.module b/modules/search/tests/search_extra_type.module
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut-rtl.css b/modules/shortcut/shortcut-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut.admin.css b/modules/shortcut/shortcut.admin.css
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut.admin.inc b/modules/shortcut/shortcut.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut.admin.js b/modules/shortcut/shortcut.admin.js
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut.api.php b/modules/shortcut/shortcut.api.php
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut.css b/modules/shortcut/shortcut.css
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut.info b/modules/shortcut/shortcut.info
old mode 100755
new mode 100644
index 8132b3cef..00a88e03f
--- a/modules/shortcut/shortcut.info
+++ b/modules/shortcut/shortcut.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = shortcut.test
configure = admin/config/user-interface/shortcut
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/shortcut/shortcut.install b/modules/shortcut/shortcut.install
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut.module b/modules/shortcut/shortcut.module
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut.png b/modules/shortcut/shortcut.png
old mode 100755
new mode 100644
diff --git a/modules/shortcut/shortcut.test b/modules/shortcut/shortcut.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/README.txt b/modules/simpletest/files/README.txt
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/comment_hacks.css b/modules/simpletest/files/css_test_files/comment_hacks.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/comment_hacks.css.optimized.css b/modules/simpletest/files/css_test_files/comment_hacks.css.optimized.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/comment_hacks.css.unoptimized.css b/modules/simpletest/files/css_test_files/comment_hacks.css.unoptimized.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/css_input_with_import.css b/modules/simpletest/files/css_test_files/css_input_with_import.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/css_input_with_import.css.optimized.css b/modules/simpletest/files/css_test_files/css_input_with_import.css.optimized.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/css_input_with_import.css.unoptimized.css b/modules/simpletest/files/css_test_files/css_input_with_import.css.unoptimized.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/css_input_without_import.css b/modules/simpletest/files/css_test_files/css_input_without_import.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/css_input_without_import.css.optimized.css b/modules/simpletest/files/css_test_files/css_input_without_import.css.optimized.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/css_input_without_import.css.unoptimized.css b/modules/simpletest/files/css_test_files/css_input_without_import.css.unoptimized.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/import1.css b/modules/simpletest/files/css_test_files/import1.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/css_test_files/import2.css b/modules/simpletest/files/css_test_files/import2.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/html-1.txt b/modules/simpletest/files/html-1.txt
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/html-2.html b/modules/simpletest/files/html-2.html
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/image-1.png b/modules/simpletest/files/image-1.png
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/image-2.jpg b/modules/simpletest/files/image-2.jpg
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/image-test.gif b/modules/simpletest/files/image-test.gif
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/image-test.jpg b/modules/simpletest/files/image-test.jpg
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/image-test.png b/modules/simpletest/files/image-test.png
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/javascript-1.txt b/modules/simpletest/files/javascript-1.txt
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/javascript-2.script b/modules/simpletest/files/javascript-2.script
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/php-1.txt b/modules/simpletest/files/php-1.txt
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/php-2.php b/modules/simpletest/files/php-2.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/sql-1.txt b/modules/simpletest/files/sql-1.txt
old mode 100755
new mode 100644
diff --git a/modules/simpletest/files/sql-2.sql b/modules/simpletest/files/sql-2.sql
old mode 100755
new mode 100644
diff --git a/modules/simpletest/simpletest.api.php b/modules/simpletest/simpletest.api.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/simpletest.css b/modules/simpletest/simpletest.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/simpletest.info b/modules/simpletest/simpletest.info
old mode 100755
new mode 100644
index 5583c2f82..c3d3e9273
--- a/modules/simpletest/simpletest.info
+++ b/modules/simpletest/simpletest.info
@@ -54,3 +54,9 @@ files[] = tests/upgrade/update.aggregator.test
files[] = tests/upgrade/update.trigger.test
files[] = tests/upgrade/update.field.test
files[] = tests/upgrade/update.user.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/simpletest.install b/modules/simpletest/simpletest.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/simpletest.js b/modules/simpletest/simpletest.js
old mode 100755
new mode 100644
diff --git a/modules/simpletest/simpletest.module b/modules/simpletest/simpletest.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/simpletest.pages.inc b/modules/simpletest/simpletest.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/simpletest/simpletest.test b/modules/simpletest/simpletest.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/actions.test b/modules/simpletest/tests/actions.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/actions_loop_test.info b/modules/simpletest/tests/actions_loop_test.info
old mode 100755
new mode 100644
index 4350d3dbc..e684a3b59
--- a/modules/simpletest/tests/actions_loop_test.info
+++ b/modules/simpletest/tests/actions_loop_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/actions_loop_test.install b/modules/simpletest/tests/actions_loop_test.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/actions_loop_test.module b/modules/simpletest/tests/actions_loop_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/ajax.test b/modules/simpletest/tests/ajax.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/ajax_forms_test.info b/modules/simpletest/tests/ajax_forms_test.info
old mode 100755
new mode 100644
index c1d7dd4bd..d96d7dec0
--- a/modules/simpletest/tests/ajax_forms_test.info
+++ b/modules/simpletest/tests/ajax_forms_test.info
@@ -4,3 +4,9 @@ core = 7.x
package = Testing
version = VERSION
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/ajax_forms_test.module b/modules/simpletest/tests/ajax_forms_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/ajax_test.info b/modules/simpletest/tests/ajax_test.info
old mode 100755
new mode 100644
index 1f5648242..d48c68f39
--- a/modules/simpletest/tests/ajax_test.info
+++ b/modules/simpletest/tests/ajax_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/ajax_test.module b/modules/simpletest/tests/ajax_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/batch.test b/modules/simpletest/tests/batch.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/batch_test.callbacks.inc b/modules/simpletest/tests/batch_test.callbacks.inc
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/batch_test.info b/modules/simpletest/tests/batch_test.info
old mode 100755
new mode 100644
index f3540978f..c03fb4d5e
--- a/modules/simpletest/tests/batch_test.info
+++ b/modules/simpletest/tests/batch_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/batch_test.module b/modules/simpletest/tests/batch_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/bootstrap.test b/modules/simpletest/tests/bootstrap.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/cache.test b/modules/simpletest/tests/cache.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/common.test b/modules/simpletest/tests/common.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/common_test.css b/modules/simpletest/tests/common_test.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/common_test.info b/modules/simpletest/tests/common_test.info
old mode 100755
new mode 100644
index aced983d2..1702d7330
--- a/modules/simpletest/tests/common_test.info
+++ b/modules/simpletest/tests/common_test.info
@@ -6,3 +6,9 @@ core = 7.x
stylesheets[all][] = common_test.css
stylesheets[print][] = common_test.print.css
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/common_test.module b/modules/simpletest/tests/common_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/common_test.print.css b/modules/simpletest/tests/common_test.print.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/common_test_cron_helper.info b/modules/simpletest/tests/common_test_cron_helper.info
old mode 100755
new mode 100644
index ce1a6326f..966212210
--- a/modules/simpletest/tests/common_test_cron_helper.info
+++ b/modules/simpletest/tests/common_test_cron_helper.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/common_test_cron_helper.module b/modules/simpletest/tests/common_test_cron_helper.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/common_test_info.txt b/modules/simpletest/tests/common_test_info.txt
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/database_test.info b/modules/simpletest/tests/database_test.info
old mode 100755
new mode 100644
index 7141235e1..8129705b6
--- a/modules/simpletest/tests/database_test.info
+++ b/modules/simpletest/tests/database_test.info
@@ -4,3 +4,9 @@ core = 7.x
package = Testing
version = VERSION
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/database_test.install b/modules/simpletest/tests/database_test.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/database_test.module b/modules/simpletest/tests/database_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/database_test.test b/modules/simpletest/tests/database_test.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info b/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
old mode 100755
new mode 100644
index 085c33525..7918eae31
--- a/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
+++ b/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module b/modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info b/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
old mode 100755
new mode 100644
index 8e5875e95..73120f65a
--- a/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
+++ b/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module b/modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/entity_cache_test.info b/modules/simpletest/tests/entity_cache_test.info
old mode 100755
new mode 100644
index 405cefaa2..5cf393f63
--- a/modules/simpletest/tests/entity_cache_test.info
+++ b/modules/simpletest/tests/entity_cache_test.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
dependencies[] = entity_cache_test_dependency
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/entity_cache_test.module b/modules/simpletest/tests/entity_cache_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/entity_cache_test_dependency.info b/modules/simpletest/tests/entity_cache_test_dependency.info
old mode 100755
new mode 100644
index f0dc7b621..22ebd0aa5
--- a/modules/simpletest/tests/entity_cache_test_dependency.info
+++ b/modules/simpletest/tests/entity_cache_test_dependency.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/entity_cache_test_dependency.module b/modules/simpletest/tests/entity_cache_test_dependency.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/entity_crud_hook_test.info b/modules/simpletest/tests/entity_crud_hook_test.info
old mode 100755
new mode 100644
index b37114d9a..bede4cd16
--- a/modules/simpletest/tests/entity_crud_hook_test.info
+++ b/modules/simpletest/tests/entity_crud_hook_test.info
@@ -4,3 +4,9 @@ core = 7.x
package = Testing
version = VERSION
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/entity_crud_hook_test.module b/modules/simpletest/tests/entity_crud_hook_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/entity_crud_hook_test.test b/modules/simpletest/tests/entity_crud_hook_test.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/entity_query.test b/modules/simpletest/tests/entity_query.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/entity_query_access_test.info b/modules/simpletest/tests/entity_query_access_test.info
old mode 100755
new mode 100644
index 8c43dd1b2..10c6db2ba
--- a/modules/simpletest/tests/entity_query_access_test.info
+++ b/modules/simpletest/tests/entity_query_access_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/entity_query_access_test.module b/modules/simpletest/tests/entity_query_access_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/error.test b/modules/simpletest/tests/error.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/error_test.info b/modules/simpletest/tests/error_test.info
old mode 100755
new mode 100644
index 1764ae34f..62ed6574b
--- a/modules/simpletest/tests/error_test.info
+++ b/modules/simpletest/tests/error_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/error_test.module b/modules/simpletest/tests/error_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/file.test b/modules/simpletest/tests/file.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/file_test.info b/modules/simpletest/tests/file_test.info
old mode 100755
new mode 100644
index 4edfceae6..1f9be7f32
--- a/modules/simpletest/tests/file_test.info
+++ b/modules/simpletest/tests/file_test.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = file_test.module
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/file_test.module b/modules/simpletest/tests/file_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/filetransfer.test b/modules/simpletest/tests/filetransfer.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/filter_test.info b/modules/simpletest/tests/filter_test.info
old mode 100755
new mode 100644
index 4b887ca99..c6c5a3c5d
--- a/modules/simpletest/tests/filter_test.info
+++ b/modules/simpletest/tests/filter_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/filter_test.module b/modules/simpletest/tests/filter_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/form.test b/modules/simpletest/tests/form.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/form_test.file.inc b/modules/simpletest/tests/form_test.file.inc
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/form_test.info b/modules/simpletest/tests/form_test.info
old mode 100755
new mode 100644
index ac1d864d1..04abff4a0
--- a/modules/simpletest/tests/form_test.info
+++ b/modules/simpletest/tests/form_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/form_test.module b/modules/simpletest/tests/form_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/graph.test b/modules/simpletest/tests/graph.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/http.php b/modules/simpletest/tests/http.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/https.php b/modules/simpletest/tests/https.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/image.test b/modules/simpletest/tests/image.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/image_test.info b/modules/simpletest/tests/image_test.info
old mode 100755
new mode 100644
index a9ef05ab5..8dbb2814c
--- a/modules/simpletest/tests/image_test.info
+++ b/modules/simpletest/tests/image_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/image_test.module b/modules/simpletest/tests/image_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/lock.test b/modules/simpletest/tests/lock.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/mail.test b/modules/simpletest/tests/mail.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/menu.test b/modules/simpletest/tests/menu.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/menu_test.info b/modules/simpletest/tests/menu_test.info
old mode 100755
new mode 100644
index c1c39c103..6c9514dcd
--- a/modules/simpletest/tests/menu_test.info
+++ b/modules/simpletest/tests/menu_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/menu_test.module b/modules/simpletest/tests/menu_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/module.test b/modules/simpletest/tests/module.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/module_test.file.inc b/modules/simpletest/tests/module_test.file.inc
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/module_test.info b/modules/simpletest/tests/module_test.info
old mode 100755
new mode 100644
index 0a0f3c085..7f4ba7d62
--- a/modules/simpletest/tests/module_test.info
+++ b/modules/simpletest/tests/module_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/module_test.install b/modules/simpletest/tests/module_test.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/module_test.module b/modules/simpletest/tests/module_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/pager.test b/modules/simpletest/tests/pager.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/password.test b/modules/simpletest/tests/password.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/path.test b/modules/simpletest/tests/path.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/path_test.info b/modules/simpletest/tests/path_test.info
old mode 100755
new mode 100644
index ea993ae87..d2cab0a17
--- a/modules/simpletest/tests/path_test.info
+++ b/modules/simpletest/tests/path_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/path_test.module b/modules/simpletest/tests/path_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/registry.test b/modules/simpletest/tests/registry.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/requirements1_test.info b/modules/simpletest/tests/requirements1_test.info
old mode 100755
new mode 100644
index b659b21c7..13e388f63
--- a/modules/simpletest/tests/requirements1_test.info
+++ b/modules/simpletest/tests/requirements1_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/requirements1_test.install b/modules/simpletest/tests/requirements1_test.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/requirements1_test.module b/modules/simpletest/tests/requirements1_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/requirements2_test.info b/modules/simpletest/tests/requirements2_test.info
old mode 100755
new mode 100644
index a66e04be9..371f1f105
--- a/modules/simpletest/tests/requirements2_test.info
+++ b/modules/simpletest/tests/requirements2_test.info
@@ -6,3 +6,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/requirements2_test.module b/modules/simpletest/tests/requirements2_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/schema.test b/modules/simpletest/tests/schema.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/session.test b/modules/simpletest/tests/session.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/session_test.info b/modules/simpletest/tests/session_test.info
old mode 100755
new mode 100644
index 327215661..d1c610172
--- a/modules/simpletest/tests/session_test.info
+++ b/modules/simpletest/tests/session_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/session_test.module b/modules/simpletest/tests/session_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/system.base.css b/modules/simpletest/tests/system.base.css
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/system_dependencies_test.info b/modules/simpletest/tests/system_dependencies_test.info
old mode 100755
new mode 100644
index 5b4bd106b..a6efc8dd1
--- a/modules/simpletest/tests/system_dependencies_test.info
+++ b/modules/simpletest/tests/system_dependencies_test.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
hidden = TRUE
dependencies[] = _missing_dependency
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/system_dependencies_test.module b/modules/simpletest/tests/system_dependencies_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info b/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info
old mode 100755
new mode 100644
index 002c0d286..bda7979bc
--- a/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info
+++ b/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
hidden = TRUE
dependencies[] = system_incompatible_core_version_test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module b/modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/system_incompatible_core_version_test.info b/modules/simpletest/tests/system_incompatible_core_version_test.info
old mode 100755
new mode 100644
index ced53e9d5..a9de42e2f
--- a/modules/simpletest/tests/system_incompatible_core_version_test.info
+++ b/modules/simpletest/tests/system_incompatible_core_version_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 5.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/system_incompatible_core_version_test.module b/modules/simpletest/tests/system_incompatible_core_version_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info b/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info
old mode 100755
new mode 100644
index 48db9eae3..1f58f6385
--- a/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info
+++ b/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info
@@ -6,3 +6,9 @@ core = 7.x
hidden = TRUE
; system_incompatible_module_version_test declares version 1.0
dependencies[] = system_incompatible_module_version_test (>2.0)
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module b/modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/system_incompatible_module_version_test.info b/modules/simpletest/tests/system_incompatible_module_version_test.info
old mode 100755
new mode 100644
index 9dfc686cf..ea9a42b1e
--- a/modules/simpletest/tests/system_incompatible_module_version_test.info
+++ b/modules/simpletest/tests/system_incompatible_module_version_test.info
@@ -4,3 +4,9 @@ package = Testing
version = 1.0
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/system_incompatible_module_version_test.module b/modules/simpletest/tests/system_incompatible_module_version_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/system_test.info b/modules/simpletest/tests/system_test.info
old mode 100755
new mode 100644
index c4ad53695..068755b7a
--- a/modules/simpletest/tests/system_test.info
+++ b/modules/simpletest/tests/system_test.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = system_test.module
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/system_test.module b/modules/simpletest/tests/system_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/tablesort.test b/modules/simpletest/tests/tablesort.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/taxonomy_test.info b/modules/simpletest/tests/taxonomy_test.info
old mode 100755
new mode 100644
index e5bb4f162..42ed05f2b
--- a/modules/simpletest/tests/taxonomy_test.info
+++ b/modules/simpletest/tests/taxonomy_test.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
hidden = TRUE
dependencies[] = taxonomy
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/taxonomy_test.install b/modules/simpletest/tests/taxonomy_test.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/taxonomy_test.module b/modules/simpletest/tests/taxonomy_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/theme.test b/modules/simpletest/tests/theme.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/theme_test.inc b/modules/simpletest/tests/theme_test.inc
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/theme_test.info b/modules/simpletest/tests/theme_test.info
old mode 100755
new mode 100644
index 72cd23bc1..d05453a7f
--- a/modules/simpletest/tests/theme_test.info
+++ b/modules/simpletest/tests/theme_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/theme_test.module b/modules/simpletest/tests/theme_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/theme_test.template_test.tpl.php b/modules/simpletest/tests/theme_test.template_test.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info b/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info
old mode 100755
new mode 100644
index c39e8a259..cc583f0f2
--- a/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info
+++ b/modules/simpletest/tests/themes/test_basetheme/test_basetheme.info
@@ -5,3 +5,9 @@ hidden = TRUE
settings[basetheme_only] = base theme value
settings[subtheme_override] = base theme value
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info b/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info
old mode 100755
new mode 100644
index 7da71e003..e744045c7
--- a/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info
+++ b/modules/simpletest/tests/themes/test_subtheme/test_subtheme.info
@@ -5,3 +5,9 @@ base theme = test_basetheme
hidden = TRUE
settings[subtheme_override] = subtheme value
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/themes/test_theme/template.php b/modules/simpletest/tests/themes/test_theme/template.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/themes/test_theme/test_theme.info b/modules/simpletest/tests/themes/test_theme/test_theme.info
old mode 100755
new mode 100644
index 4bbbe7a21..ae0447710
--- a/modules/simpletest/tests/themes/test_theme/test_theme.info
+++ b/modules/simpletest/tests/themes/test_theme/test_theme.info
@@ -16,3 +16,9 @@ hidden = TRUE
stylesheets[all][] = system.base.css
settings[theme_test_setting] = default value
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/unicode.test b/modules/simpletest/tests/unicode.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/update.test b/modules/simpletest/tests/update.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/update_script_test.info b/modules/simpletest/tests/update_script_test.info
old mode 100755
new mode 100644
index be1e3d849..ed8c96766
--- a/modules/simpletest/tests/update_script_test.info
+++ b/modules/simpletest/tests/update_script_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/update_script_test.install b/modules/simpletest/tests/update_script_test.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/update_script_test.module b/modules/simpletest/tests/update_script_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/update_test_1.info b/modules/simpletest/tests/update_test_1.info
old mode 100755
new mode 100644
index d9764eee0..40dad0615
--- a/modules/simpletest/tests/update_test_1.info
+++ b/modules/simpletest/tests/update_test_1.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/update_test_1.install b/modules/simpletest/tests/update_test_1.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/update_test_1.module b/modules/simpletest/tests/update_test_1.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/update_test_2.info b/modules/simpletest/tests/update_test_2.info
old mode 100755
new mode 100644
index d9764eee0..40dad0615
--- a/modules/simpletest/tests/update_test_2.info
+++ b/modules/simpletest/tests/update_test_2.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/update_test_2.install b/modules/simpletest/tests/update_test_2.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/update_test_2.module b/modules/simpletest/tests/update_test_2.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/update_test_3.info b/modules/simpletest/tests/update_test_3.info
old mode 100755
new mode 100644
index d9764eee0..40dad0615
--- a/modules/simpletest/tests/update_test_3.info
+++ b/modules/simpletest/tests/update_test_3.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/update_test_3.install b/modules/simpletest/tests/update_test_3.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/update_test_3.module b/modules/simpletest/tests/update_test_3.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.bare.database.php b/modules/simpletest/tests/upgrade/drupal-6.bare.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.comments.database.php b/modules/simpletest/tests/upgrade/drupal-6.comments.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.filled.database.php b/modules/simpletest/tests/upgrade/drupal-6.filled.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.forum.database.php b/modules/simpletest/tests/upgrade/drupal-6.forum.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.locale.database.php b/modules/simpletest/tests/upgrade/drupal-6.locale.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.menu.database.php b/modules/simpletest/tests/upgrade/drupal-6.menu.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.node_type_broken.database.php b/modules/simpletest/tests/upgrade/drupal-6.node_type_broken.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.translatable.database.php b/modules/simpletest/tests/upgrade/drupal-6.translatable.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.trigger.database.php b/modules/simpletest/tests/upgrade/drupal-6.trigger.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.upload.database.php b/modules/simpletest/tests/upgrade/drupal-6.upload.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.user-no-password-token.database.php b/modules/simpletest/tests/upgrade/drupal-6.user-no-password-token.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-6.user-password-token.database.php b/modules/simpletest/tests/upgrade/drupal-6.user-password-token.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-7.aggregator.database.php b/modules/simpletest/tests/upgrade/drupal-7.aggregator.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-7.bare.minimal.database.php.gz b/modules/simpletest/tests/upgrade/drupal-7.bare.minimal.database.php.gz
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-7.bare.standard_all.database.php.gz b/modules/simpletest/tests/upgrade/drupal-7.bare.standard_all.database.php.gz
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-7.field.database.php b/modules/simpletest/tests/upgrade/drupal-7.field.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-7.filled.minimal.database.php.gz b/modules/simpletest/tests/upgrade/drupal-7.filled.minimal.database.php.gz
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-7.filled.standard_all.database.php.gz b/modules/simpletest/tests/upgrade/drupal-7.filled.standard_all.database.php.gz
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/drupal-7.trigger.database.php b/modules/simpletest/tests/upgrade/drupal-7.trigger.database.php
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/update.aggregator.test b/modules/simpletest/tests/upgrade/update.aggregator.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/update.field.test b/modules/simpletest/tests/upgrade/update.field.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/update.trigger.test b/modules/simpletest/tests/upgrade/update.trigger.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/update.user.test b/modules/simpletest/tests/upgrade/update.user.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.comment.test b/modules/simpletest/tests/upgrade/upgrade.comment.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.filter.test b/modules/simpletest/tests/upgrade/upgrade.filter.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.forum.test b/modules/simpletest/tests/upgrade/upgrade.forum.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.locale.test b/modules/simpletest/tests/upgrade/upgrade.locale.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.menu.test b/modules/simpletest/tests/upgrade/upgrade.menu.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.node.test b/modules/simpletest/tests/upgrade/upgrade.node.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.poll.test b/modules/simpletest/tests/upgrade/upgrade.poll.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.taxonomy.test b/modules/simpletest/tests/upgrade/upgrade.taxonomy.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.test b/modules/simpletest/tests/upgrade/upgrade.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.translatable.test b/modules/simpletest/tests/upgrade/upgrade.translatable.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.trigger.test b/modules/simpletest/tests/upgrade/upgrade.trigger.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.upload.test b/modules/simpletest/tests/upgrade/upgrade.upload.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/upgrade/upgrade.user.test b/modules/simpletest/tests/upgrade/upgrade.user.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/url_alter_test.info b/modules/simpletest/tests/url_alter_test.info
old mode 100755
new mode 100644
index a8e9474e1..c5691f47b
--- a/modules/simpletest/tests/url_alter_test.info
+++ b/modules/simpletest/tests/url_alter_test.info
@@ -4,3 +4,9 @@ core = 7.x
package = Testing
version = VERSION
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/url_alter_test.install b/modules/simpletest/tests/url_alter_test.install
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/url_alter_test.module b/modules/simpletest/tests/url_alter_test.module
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/xmlrpc.test b/modules/simpletest/tests/xmlrpc.test
old mode 100755
new mode 100644
diff --git a/modules/simpletest/tests/xmlrpc_test.info b/modules/simpletest/tests/xmlrpc_test.info
old mode 100755
new mode 100644
index bddfc95fd..ac5af5c58
--- a/modules/simpletest/tests/xmlrpc_test.info
+++ b/modules/simpletest/tests/xmlrpc_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/simpletest/tests/xmlrpc_test.module b/modules/simpletest/tests/xmlrpc_test.module
old mode 100755
new mode 100644
diff --git a/modules/statistics/statistics.admin.inc b/modules/statistics/statistics.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/statistics/statistics.info b/modules/statistics/statistics.info
old mode 100755
new mode 100644
index d3d1f545e..f73dab155
--- a/modules/statistics/statistics.info
+++ b/modules/statistics/statistics.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = statistics.test
configure = admin/config/system/statistics
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/statistics/statistics.install b/modules/statistics/statistics.install
old mode 100755
new mode 100644
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module
old mode 100755
new mode 100644
diff --git a/modules/statistics/statistics.pages.inc b/modules/statistics/statistics.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/statistics/statistics.test b/modules/statistics/statistics.test
old mode 100755
new mode 100644
diff --git a/modules/statistics/statistics.tokens.inc b/modules/statistics/statistics.tokens.inc
old mode 100755
new mode 100644
diff --git a/modules/syslog/syslog.info b/modules/syslog/syslog.info
old mode 100755
new mode 100644
index e0ef55c6e..e0ea3740e
--- a/modules/syslog/syslog.info
+++ b/modules/syslog/syslog.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
files[] = syslog.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/syslog/syslog.install b/modules/syslog/syslog.install
old mode 100755
new mode 100644
diff --git a/modules/syslog/syslog.module b/modules/syslog/syslog.module
old mode 100755
new mode 100644
diff --git a/modules/syslog/syslog.test b/modules/syslog/syslog.test
old mode 100755
new mode 100644
diff --git a/modules/system/html.tpl.php b/modules/system/html.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/system/image.gd.inc b/modules/system/image.gd.inc
old mode 100755
new mode 100644
diff --git a/modules/system/language.api.php b/modules/system/language.api.php
old mode 100755
new mode 100644
diff --git a/modules/system/maintenance-page.tpl.php b/modules/system/maintenance-page.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/system/page.tpl.php b/modules/system/page.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/system/region.tpl.php b/modules/system/region.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/system/system.admin-rtl.css b/modules/system/system.admin-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.admin.css b/modules/system/system.admin.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/system/system.api.php b/modules/system/system.api.php
old mode 100755
new mode 100644
diff --git a/modules/system/system.archiver.inc b/modules/system/system.archiver.inc
old mode 100755
new mode 100644
diff --git a/modules/system/system.base-rtl.css b/modules/system/system.base-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.base.css b/modules/system/system.base.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.cron.js b/modules/system/system.cron.js
old mode 100755
new mode 100644
diff --git a/modules/system/system.info b/modules/system/system.info
old mode 100755
new mode 100644
index 28abf663a..dca4780e6
--- a/modules/system/system.info
+++ b/modules/system/system.info
@@ -11,3 +11,9 @@ files[] = system.updater.inc
files[] = system.test
required = TRUE
configure = admin/config/system
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/system/system.install b/modules/system/system.install
old mode 100755
new mode 100644
diff --git a/modules/system/system.js b/modules/system/system.js
old mode 100755
new mode 100644
diff --git a/modules/system/system.mail.inc b/modules/system/system.mail.inc
old mode 100755
new mode 100644
diff --git a/modules/system/system.maintenance.css b/modules/system/system.maintenance.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.menus-rtl.css b/modules/system/system.menus-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.menus.css b/modules/system/system.menus.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.messages-rtl.css b/modules/system/system.messages-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.messages.css b/modules/system/system.messages.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.module b/modules/system/system.module
old mode 100755
new mode 100644
diff --git a/modules/system/system.queue.inc b/modules/system/system.queue.inc
old mode 100755
new mode 100644
diff --git a/modules/system/system.tar.inc b/modules/system/system.tar.inc
old mode 100755
new mode 100644
diff --git a/modules/system/system.test b/modules/system/system.test
old mode 100755
new mode 100644
diff --git a/modules/system/system.theme-rtl.css b/modules/system/system.theme-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.theme.css b/modules/system/system.theme.css
old mode 100755
new mode 100644
diff --git a/modules/system/system.tokens.inc b/modules/system/system.tokens.inc
old mode 100755
new mode 100644
diff --git a/modules/system/system.updater.inc b/modules/system/system.updater.inc
old mode 100755
new mode 100644
diff --git a/modules/system/theme.api.php b/modules/system/theme.api.php
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy-term.tpl.php b/modules/taxonomy/taxonomy-term.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy.api.php b/modules/taxonomy/taxonomy.api.php
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy.css b/modules/taxonomy/taxonomy.css
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy.info b/modules/taxonomy/taxonomy.info
old mode 100755
new mode 100644
index 44d4ebcd1..fa3363f04
--- a/modules/taxonomy/taxonomy.info
+++ b/modules/taxonomy/taxonomy.info
@@ -7,3 +7,9 @@ dependencies[] = options
files[] = taxonomy.module
files[] = taxonomy.test
configure = admin/structure/taxonomy
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/taxonomy/taxonomy.install b/modules/taxonomy/taxonomy.install
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy.js b/modules/taxonomy/taxonomy.js
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy.pages.inc b/modules/taxonomy/taxonomy.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy.test b/modules/taxonomy/taxonomy.test
old mode 100755
new mode 100644
diff --git a/modules/taxonomy/taxonomy.tokens.inc b/modules/taxonomy/taxonomy.tokens.inc
old mode 100755
new mode 100644
diff --git a/modules/toolbar/toolbar-rtl.css b/modules/toolbar/toolbar-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/toolbar/toolbar.css b/modules/toolbar/toolbar.css
old mode 100755
new mode 100644
diff --git a/modules/toolbar/toolbar.info b/modules/toolbar/toolbar.info
old mode 100755
new mode 100644
index 2c5abbb2e..c0aa88b6f
--- a/modules/toolbar/toolbar.info
+++ b/modules/toolbar/toolbar.info
@@ -3,3 +3,9 @@ description = Provides a toolbar that shows the top-level administration menu it
core = 7.x
package = Core
version = VERSION
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/toolbar/toolbar.js b/modules/toolbar/toolbar.js
old mode 100755
new mode 100644
diff --git a/modules/toolbar/toolbar.module b/modules/toolbar/toolbar.module
old mode 100755
new mode 100644
diff --git a/modules/toolbar/toolbar.png b/modules/toolbar/toolbar.png
old mode 100755
new mode 100644
diff --git a/modules/toolbar/toolbar.tpl.php b/modules/toolbar/toolbar.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/tracker/tracker.css b/modules/tracker/tracker.css
old mode 100755
new mode 100644
diff --git a/modules/tracker/tracker.info b/modules/tracker/tracker.info
old mode 100755
new mode 100644
index 1d7c65b5c..43422079a
--- a/modules/tracker/tracker.info
+++ b/modules/tracker/tracker.info
@@ -5,3 +5,9 @@ package = Core
version = VERSION
core = 7.x
files[] = tracker.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/tracker/tracker.install b/modules/tracker/tracker.install
old mode 100755
new mode 100644
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
old mode 100755
new mode 100644
diff --git a/modules/tracker/tracker.pages.inc b/modules/tracker/tracker.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/tracker/tracker.test b/modules/tracker/tracker.test
old mode 100755
new mode 100644
diff --git a/modules/translation/tests/translation_test.info b/modules/translation/tests/translation_test.info
old mode 100755
new mode 100644
index ee1d7ec26..d84803ecd
--- a/modules/translation/tests/translation_test.info
+++ b/modules/translation/tests/translation_test.info
@@ -4,3 +4,9 @@ core = 7.x
package = Testing
version = VERSION
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/translation/tests/translation_test.module b/modules/translation/tests/translation_test.module
old mode 100755
new mode 100644
diff --git a/modules/translation/translation.info b/modules/translation/translation.info
old mode 100755
new mode 100644
index 6c652a1cd..ca65d35b1
--- a/modules/translation/translation.info
+++ b/modules/translation/translation.info
@@ -5,3 +5,9 @@ package = Core
version = VERSION
core = 7.x
files[] = translation.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/translation/translation.module b/modules/translation/translation.module
old mode 100755
new mode 100644
diff --git a/modules/translation/translation.pages.inc b/modules/translation/translation.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/translation/translation.test b/modules/translation/translation.test
old mode 100755
new mode 100644
diff --git a/modules/trigger/tests/trigger_test.info b/modules/trigger/tests/trigger_test.info
old mode 100755
new mode 100644
index bd9433119..f81749a24
--- a/modules/trigger/tests/trigger_test.info
+++ b/modules/trigger/tests/trigger_test.info
@@ -3,3 +3,9 @@ description = "Support module for Trigger tests."
package = Testing
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/trigger/tests/trigger_test.module b/modules/trigger/tests/trigger_test.module
old mode 100755
new mode 100644
diff --git a/modules/trigger/trigger.admin.inc b/modules/trigger/trigger.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/trigger/trigger.api.php b/modules/trigger/trigger.api.php
old mode 100755
new mode 100644
diff --git a/modules/trigger/trigger.info b/modules/trigger/trigger.info
old mode 100755
new mode 100644
index 76102a26a..0586f45a0
--- a/modules/trigger/trigger.info
+++ b/modules/trigger/trigger.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
files[] = trigger.test
configure = admin/structure/trigger
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/trigger/trigger.install b/modules/trigger/trigger.install
old mode 100755
new mode 100644
diff --git a/modules/trigger/trigger.module b/modules/trigger/trigger.module
old mode 100755
new mode 100644
diff --git a/modules/trigger/trigger.test b/modules/trigger/trigger.test
old mode 100755
new mode 100644
diff --git a/modules/update/tests/aaa_update_test.1_0.xml b/modules/update/tests/aaa_update_test.1_0.xml
old mode 100755
new mode 100644
diff --git a/modules/update/tests/aaa_update_test.info b/modules/update/tests/aaa_update_test.info
old mode 100755
new mode 100644
index a283720d0..70292932e
--- a/modules/update/tests/aaa_update_test.info
+++ b/modules/update/tests/aaa_update_test.info
@@ -3,3 +3,9 @@ description = Support module for update module testing.
package = Testing
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/update/tests/aaa_update_test.module b/modules/update/tests/aaa_update_test.module
old mode 100755
new mode 100644
diff --git a/modules/update/tests/aaa_update_test.no-releases.xml b/modules/update/tests/aaa_update_test.no-releases.xml
old mode 100755
new mode 100644
diff --git a/modules/update/tests/aaa_update_test.tar.gz b/modules/update/tests/aaa_update_test.tar.gz
old mode 100755
new mode 100644
diff --git a/modules/update/tests/bbb_update_test.1_0.xml b/modules/update/tests/bbb_update_test.1_0.xml
old mode 100755
new mode 100644
diff --git a/modules/update/tests/bbb_update_test.info b/modules/update/tests/bbb_update_test.info
old mode 100755
new mode 100644
index 75084ae61..2e8454644
--- a/modules/update/tests/bbb_update_test.info
+++ b/modules/update/tests/bbb_update_test.info
@@ -3,3 +3,9 @@ description = Support module for update module testing.
package = Testing
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/update/tests/bbb_update_test.module b/modules/update/tests/bbb_update_test.module
old mode 100755
new mode 100644
diff --git a/modules/update/tests/ccc_update_test.1_0.xml b/modules/update/tests/ccc_update_test.1_0.xml
old mode 100755
new mode 100644
diff --git a/modules/update/tests/ccc_update_test.info b/modules/update/tests/ccc_update_test.info
old mode 100755
new mode 100644
index 0bd4cde13..b8fd231e6
--- a/modules/update/tests/ccc_update_test.info
+++ b/modules/update/tests/ccc_update_test.info
@@ -3,3 +3,9 @@ description = Support module for update module testing.
package = Testing
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/update/tests/ccc_update_test.module b/modules/update/tests/ccc_update_test.module
old mode 100755
new mode 100644
diff --git a/modules/update/tests/drupal.0.xml b/modules/update/tests/drupal.0.xml
old mode 100755
new mode 100644
diff --git a/modules/update/tests/drupal.1.xml b/modules/update/tests/drupal.1.xml
old mode 100755
new mode 100644
diff --git a/modules/update/tests/drupal.2-sec.xml b/modules/update/tests/drupal.2-sec.xml
old mode 100755
new mode 100644
diff --git a/modules/update/tests/drupal.dev.xml b/modules/update/tests/drupal.dev.xml
old mode 100755
new mode 100644
diff --git a/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info b/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info
old mode 100755
new mode 100644
index 9718784f6..3c5fa3233
--- a/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info
+++ b/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info
@@ -2,3 +2,9 @@ name = Update test base theme
description = Test theme which acts as a base theme for other test subthemes.
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info b/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info
old mode 100755
new mode 100644
index 6ca42f456..7f2393899
--- a/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info
+++ b/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info
@@ -3,3 +3,9 @@ description = Test theme which uses update_test_basetheme as the base theme.
core = 7.x
base theme = update_test_basetheme
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/update/tests/update_test.info b/modules/update/tests/update_test.info
old mode 100755
new mode 100644
index f68dc9da2..8cec9192e
--- a/modules/update/tests/update_test.info
+++ b/modules/update/tests/update_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/update/tests/update_test.module b/modules/update/tests/update_test.module
old mode 100755
new mode 100644
diff --git a/modules/update/tests/update_test_basetheme.1_1-sec.xml b/modules/update/tests/update_test_basetheme.1_1-sec.xml
old mode 100755
new mode 100644
diff --git a/modules/update/tests/update_test_subtheme.1_0.xml b/modules/update/tests/update_test_subtheme.1_0.xml
old mode 100755
new mode 100644
diff --git a/modules/update/update-rtl.css b/modules/update/update-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/update/update.api.php b/modules/update/update.api.php
old mode 100755
new mode 100644
diff --git a/modules/update/update.authorize.inc b/modules/update/update.authorize.inc
old mode 100755
new mode 100644
diff --git a/modules/update/update.compare.inc b/modules/update/update.compare.inc
old mode 100755
new mode 100644
index a4c090692..6e0c5feee
--- a/modules/update/update.compare.inc
+++ b/modules/update/update.compare.inc
@@ -170,7 +170,6 @@ function _update_process_info_list(&$projects, $list, $project_type, $status) {
// section at the top of the report.
if ($project_name == 'drupal') {
$project_display_type = 'core';
- $file->info['version'] = VERSION;
}
else {
$project_display_type = $project_type;
diff --git a/modules/update/update.css b/modules/update/update.css
old mode 100755
new mode 100644
diff --git a/modules/update/update.fetch.inc b/modules/update/update.fetch.inc
old mode 100755
new mode 100644
diff --git a/modules/update/update.info b/modules/update/update.info
old mode 100755
new mode 100644
index 250cae193..fef63c5dd
--- a/modules/update/update.info
+++ b/modules/update/update.info
@@ -5,3 +5,9 @@ package = Core
core = 7.x
files[] = update.test
configure = admin/reports/updates/settings
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/update/update.install b/modules/update/update.install
old mode 100755
new mode 100644
diff --git a/modules/update/update.manager.inc b/modules/update/update.manager.inc
old mode 100755
new mode 100644
diff --git a/modules/update/update.module b/modules/update/update.module
old mode 100755
new mode 100644
index 4513a79f5..85c0968d5
--- a/modules/update/update.module
+++ b/modules/update/update.module
@@ -517,22 +517,18 @@ function _update_get_cached_available_releases() {
* @see drupal_mail()
* @see _update_cron_notify()
* @see _update_message_text()
- *
- * This function is updated by Pantheon to direct users to their dashboard for
- * core updates. Hence the $core variable, etc.
*/
function update_mail($key, &$message, $params) {
$language = $message['language'];
$langcode = $language->language;
- $core = FALSE;
$message['subject'] .= t('New release(s) available for !site_name', array('!site_name' => variable_get('site_name', 'Drupal')), array('langcode' => $langcode));
foreach ($params as $msg_type => $msg_reason) {
- if ($msg_type == 'core') {
- $core = TRUE;
- }
$message['body'][] = _update_message_text($msg_type, $msg_reason, FALSE, $language);
}
$message['body'][] = t('See the available updates page for more information:', array(), array('langcode' => $langcode)) . "\n" . url('admin/reports/updates', array('absolute' => TRUE, 'language' => $language));
+ if (update_manager_access()) {
+ $message['body'][] = t('You can automatically install your missing updates using the Update manager:', array(), array('langcode' => $langcode)) . "\n" . url('admin/reports/updates/update', array('absolute' => TRUE, 'language' => $language));
+ }
$settings_url = url('admin/reports/updates/settings', array('absolute' => TRUE));
if (variable_get('update_notification_threshold', 'all') == 'all') {
$message['body'][] = t('Your site is currently configured to send these emails when any updates are available. To get notified only for security updates, !url.', array('!url' => $settings_url));
@@ -540,14 +536,6 @@ function update_mail($key, &$message, $params) {
else {
$message['body'][] = t('Your site is currently configured to send these emails only when security updates are available. To get notified for any available updates, !url.', array('!url' => $settings_url));
}
- if ($core) {
- // Add Pantheon link to beginning/end of mesage.
- // TODO: have the $dashboard link directly to the site.
- $dashboard = 'https://dashboard.getpantheon.com/account';
- $text = t('Drupal core updates should be performed directly from your Pantheon dashboard.', array('@link' => $dashboard));
- array_unshift($message['body'], $text);
- $message['body'][] = t('Core updates should be performed directly from your Pantheon dashboard:', array(), array('langcode' => $langcode)) ."\n$dashboard";
- }
}
/**
diff --git a/modules/update/update.report.inc b/modules/update/update.report.inc
old mode 100755
new mode 100644
diff --git a/modules/update/update.settings.inc b/modules/update/update.settings.inc
old mode 100755
new mode 100644
diff --git a/modules/update/update.test b/modules/update/update.test
old mode 100755
new mode 100644
diff --git a/modules/user/tests/user_form_test.info b/modules/user/tests/user_form_test.info
old mode 100755
new mode 100644
index 39d6c57e8..ff4cd7641
--- a/modules/user/tests/user_form_test.info
+++ b/modules/user/tests/user_form_test.info
@@ -4,3 +4,9 @@ package = Testing
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/user/tests/user_form_test.module b/modules/user/tests/user_form_test.module
old mode 100755
new mode 100644
diff --git a/modules/user/user-picture.tpl.php b/modules/user/user-picture.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/user/user-profile-category.tpl.php b/modules/user/user-profile-category.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/user/user-profile-item.tpl.php b/modules/user/user-profile-item.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/user/user-profile.tpl.php b/modules/user/user-profile.tpl.php
old mode 100755
new mode 100644
diff --git a/modules/user/user-rtl.css b/modules/user/user-rtl.css
old mode 100755
new mode 100644
diff --git a/modules/user/user.admin.inc b/modules/user/user.admin.inc
old mode 100755
new mode 100644
diff --git a/modules/user/user.api.php b/modules/user/user.api.php
old mode 100755
new mode 100644
diff --git a/modules/user/user.css b/modules/user/user.css
old mode 100755
new mode 100644
diff --git a/modules/user/user.info b/modules/user/user.info
old mode 100755
new mode 100644
index 1154f53db..eef6b4502
--- a/modules/user/user.info
+++ b/modules/user/user.info
@@ -8,3 +8,9 @@ files[] = user.test
required = TRUE
configure = admin/config/people
stylesheets[all][] = user.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/modules/user/user.install b/modules/user/user.install
old mode 100755
new mode 100644
diff --git a/modules/user/user.js b/modules/user/user.js
old mode 100755
new mode 100644
diff --git a/modules/user/user.module b/modules/user/user.module
old mode 100755
new mode 100644
diff --git a/modules/user/user.pages.inc b/modules/user/user.pages.inc
old mode 100755
new mode 100644
diff --git a/modules/user/user.permissions.js b/modules/user/user.permissions.js
old mode 100755
new mode 100644
diff --git a/modules/user/user.test b/modules/user/user.test
old mode 100755
new mode 100644
index 123beee6c..26e93ed3c
--- a/modules/user/user.test
+++ b/modules/user/user.test
@@ -968,7 +968,7 @@ class UserPictureTestCase extends DrupalWebTestCase {
$this->assertRaw($text, t('Image was resized.'));
$alt = t("@user's picture", array('@user' => format_username($this->user)));
$style = variable_get('user_picture_style', '');
- $this->assertRaw(image_style_url($style, $pic_path), t("Image is displayed in user's edit page"));
+ $this->assertRaw(check_plain(image_style_url($style, $pic_path)), t("Image is displayed in user's edit page"));
// Check if file is located in proper directory.
$this->assertTrue(is_file($pic_path), t("File is located in proper directory"));
diff --git a/modules/user/user.tokens.inc b/modules/user/user.tokens.inc
old mode 100755
new mode 100644
diff --git a/profiles/minimal/minimal.info b/profiles/minimal/minimal.info
old mode 100755
new mode 100644
index 4c7cf520b..04fcc9312
--- a/profiles/minimal/minimal.info
+++ b/profiles/minimal/minimal.info
@@ -2,6 +2,11 @@ name = Minimal
description = Start with only a few modules enabled.
version = VERSION
core = 7.x
-hidden = TRUE
dependencies[] = block
dependencies[] = dblog
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/profiles/minimal/minimal.install b/profiles/minimal/minimal.install
old mode 100755
new mode 100644
diff --git a/profiles/minimal/minimal.profile b/profiles/minimal/minimal.profile
old mode 100755
new mode 100644
diff --git a/profiles/minimal/translations/README.txt b/profiles/minimal/translations/README.txt
old mode 100755
new mode 100644
diff --git a/profiles/standard/standard.info b/profiles/standard/standard.info
old mode 100755
new mode 100644
index c30e05c80..9eb1e66cf
--- a/profiles/standard/standard.info
+++ b/profiles/standard/standard.info
@@ -2,7 +2,6 @@ name = Standard
description = Install with commonly used features pre-configured.
version = VERSION
core = 7.x
-hidden = TRUE
dependencies[] = block
dependencies[] = color
dependencies[] = comment
@@ -24,3 +23,9 @@ dependencies[] = overlay
dependencies[] = field_ui
dependencies[] = file
dependencies[] = rdf
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/profiles/standard/standard.install b/profiles/standard/standard.install
old mode 100755
new mode 100644
diff --git a/profiles/standard/standard.profile b/profiles/standard/standard.profile
old mode 100755
new mode 100644
diff --git a/profiles/standard/translations/README.txt b/profiles/standard/translations/README.txt
old mode 100755
new mode 100644
diff --git a/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info b/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
old mode 100755
new mode 100644
index 2bf7e10ba..27031076c
--- a/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
+++ b/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info
@@ -5,3 +5,9 @@ version = VERSION
core = 7.x
hidden = TRUE
files[] = drupal_system_listing_compatible_test.test
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module b/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module
old mode 100755
new mode 100644
diff --git a/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.test b/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.test
old mode 100755
new mode 100644
diff --git a/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info b/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
old mode 100755
new mode 100644
index c06798779..3fb12b5ec
--- a/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
+++ b/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info
@@ -7,3 +7,9 @@ version = VERSION
; modules/simpletest/tests directory.
core = 6.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module b/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module
old mode 100755
new mode 100644
diff --git a/profiles/testing/testing.info b/profiles/testing/testing.info
old mode 100755
new mode 100644
index 8217201a9..77ac5ef3e
--- a/profiles/testing/testing.info
+++ b/profiles/testing/testing.info
@@ -3,3 +3,9 @@ description = Minimal profile for running tests. Includes absolutely required mo
version = VERSION
core = 7.x
hidden = TRUE
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/profiles/testing/testing.install b/profiles/testing/testing.install
old mode 100755
new mode 100644
diff --git a/profiles/testing/testing.profile b/profiles/testing/testing.profile
old mode 100755
new mode 100644
diff --git a/robots.txt b/robots.txt
old mode 100755
new mode 100644
diff --git a/scripts/code-clean.sh b/scripts/code-clean.sh
old mode 100755
new mode 100644
diff --git a/scripts/cron-curl.sh b/scripts/cron-curl.sh
old mode 100755
new mode 100644
diff --git a/scripts/cron-lynx.sh b/scripts/cron-lynx.sh
old mode 100755
new mode 100644
diff --git a/scripts/dump-database-d6.sh b/scripts/dump-database-d6.sh
old mode 100755
new mode 100644
diff --git a/scripts/dump-database-d7.sh b/scripts/dump-database-d7.sh
old mode 100755
new mode 100644
diff --git a/scripts/generate-d6-content.sh b/scripts/generate-d6-content.sh
old mode 100755
new mode 100644
diff --git a/scripts/generate-d7-content.sh b/scripts/generate-d7-content.sh
old mode 100755
new mode 100644
diff --git a/scripts/test.script b/scripts/test.script
old mode 100755
new mode 100644
diff --git a/sites/all/modules/contrib/beautytips/other_libs/colorpicker/images/Thumbs.db b/sites/all/modules/contrib/beautytips/other_libs/colorpicker/images/Thumbs.db
new file mode 100755
index 000000000..d396c36dd
Binary files /dev/null and b/sites/all/modules/contrib/beautytips/other_libs/colorpicker/images/Thumbs.db differ
diff --git a/themes/README.txt b/themes/README.txt
old mode 100755
new mode 100644
diff --git a/themes/bartik/bartik.info b/themes/bartik/bartik.info
old mode 100755
new mode 100644
index ce7e13f60..bf0d33dff
--- a/themes/bartik/bartik.info
+++ b/themes/bartik/bartik.info
@@ -33,3 +33,9 @@ regions[footer] = Footer
settings[shortcut_module_link] = 0
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/themes/bartik/color/base.png b/themes/bartik/color/base.png
old mode 100755
new mode 100644
diff --git a/themes/bartik/color/color.inc b/themes/bartik/color/color.inc
old mode 100755
new mode 100644
diff --git a/themes/bartik/color/preview.css b/themes/bartik/color/preview.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/color/preview.html b/themes/bartik/color/preview.html
old mode 100755
new mode 100644
diff --git a/themes/bartik/color/preview.js b/themes/bartik/color/preview.js
old mode 100755
new mode 100644
diff --git a/themes/bartik/color/preview.png b/themes/bartik/color/preview.png
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/colors.css b/themes/bartik/css/colors.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/ie-rtl.css b/themes/bartik/css/ie-rtl.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/ie.css b/themes/bartik/css/ie.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/ie6.css b/themes/bartik/css/ie6.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/layout-rtl.css b/themes/bartik/css/layout-rtl.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/layout.css b/themes/bartik/css/layout.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/maintenance-page.css b/themes/bartik/css/maintenance-page.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/print.css b/themes/bartik/css/print.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/style-rtl.css b/themes/bartik/css/style-rtl.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/css/style.css b/themes/bartik/css/style.css
old mode 100755
new mode 100644
diff --git a/themes/bartik/images/add.png b/themes/bartik/images/add.png
old mode 100755
new mode 100644
diff --git a/themes/bartik/images/buttons.png b/themes/bartik/images/buttons.png
old mode 100755
new mode 100644
diff --git a/themes/bartik/images/comment-arrow-rtl.gif b/themes/bartik/images/comment-arrow-rtl.gif
old mode 100755
new mode 100644
diff --git a/themes/bartik/images/comment-arrow.gif b/themes/bartik/images/comment-arrow.gif
old mode 100755
new mode 100644
diff --git a/themes/bartik/images/search-button.png b/themes/bartik/images/search-button.png
old mode 100755
new mode 100644
diff --git a/themes/bartik/images/tabs-border.png b/themes/bartik/images/tabs-border.png
old mode 100755
new mode 100644
diff --git a/themes/bartik/logo.png b/themes/bartik/logo.png
old mode 100755
new mode 100644
diff --git a/themes/bartik/screenshot.png b/themes/bartik/screenshot.png
old mode 100755
new mode 100644
diff --git a/themes/bartik/template.php b/themes/bartik/template.php
old mode 100755
new mode 100644
diff --git a/themes/bartik/templates/comment-wrapper.tpl.php b/themes/bartik/templates/comment-wrapper.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/bartik/templates/comment.tpl.php b/themes/bartik/templates/comment.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/bartik/templates/maintenance-page.tpl.php b/themes/bartik/templates/maintenance-page.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/bartik/templates/node.tpl.php b/themes/bartik/templates/node.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/bartik/templates/page.tpl.php b/themes/bartik/templates/page.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/engines/phptemplate/phptemplate.engine b/themes/engines/phptemplate/phptemplate.engine
old mode 100755
new mode 100644
diff --git a/themes/garland/color/base.png b/themes/garland/color/base.png
old mode 100755
new mode 100644
diff --git a/themes/garland/color/color.inc b/themes/garland/color/color.inc
old mode 100755
new mode 100644
diff --git a/themes/garland/color/preview.css b/themes/garland/color/preview.css
old mode 100755
new mode 100644
diff --git a/themes/garland/color/preview.png b/themes/garland/color/preview.png
old mode 100755
new mode 100644
diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/garland/fix-ie-rtl.css b/themes/garland/fix-ie-rtl.css
old mode 100755
new mode 100644
diff --git a/themes/garland/fix-ie.css b/themes/garland/fix-ie.css
old mode 100755
new mode 100644
diff --git a/themes/garland/garland.info b/themes/garland/garland.info
old mode 100755
new mode 100644
index 307f03a2c..38dad5ae2
--- a/themes/garland/garland.info
+++ b/themes/garland/garland.info
@@ -6,3 +6,9 @@ core = 7.x
stylesheets[all][] = style.css
stylesheets[print][] = print.css
settings[garland_width] = fluid
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/themes/garland/images/bg-bar-white.png b/themes/garland/images/bg-bar-white.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/bg-bar.png b/themes/garland/images/bg-bar.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/bg-content-left.png b/themes/garland/images/bg-content-left.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/bg-content-right.png b/themes/garland/images/bg-content-right.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/bg-content.png b/themes/garland/images/bg-content.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/bg-navigation-item-hover.png b/themes/garland/images/bg-navigation-item-hover.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/bg-navigation-item.png b/themes/garland/images/bg-navigation-item.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/bg-navigation.png b/themes/garland/images/bg-navigation.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/bg-tab.png b/themes/garland/images/bg-tab.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/body.png b/themes/garland/images/body.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/gradient-inner.png b/themes/garland/images/gradient-inner.png
old mode 100755
new mode 100644
diff --git a/themes/garland/images/menu-collapsed-rtl.gif b/themes/garland/images/menu-collapsed-rtl.gif
old mode 100755
new mode 100644
diff --git a/themes/garland/images/menu-collapsed.gif b/themes/garland/images/menu-collapsed.gif
old mode 100755
new mode 100644
diff --git a/themes/garland/images/menu-expanded.gif b/themes/garland/images/menu-expanded.gif
old mode 100755
new mode 100644
diff --git a/themes/garland/images/menu-leaf.gif b/themes/garland/images/menu-leaf.gif
old mode 100755
new mode 100644
diff --git a/themes/garland/images/task-list.png b/themes/garland/images/task-list.png
old mode 100755
new mode 100644
diff --git a/themes/garland/logo.png b/themes/garland/logo.png
old mode 100755
new mode 100644
diff --git a/themes/garland/maintenance-page.tpl.php b/themes/garland/maintenance-page.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/garland/node.tpl.php b/themes/garland/node.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/garland/page.tpl.php b/themes/garland/page.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/garland/print.css b/themes/garland/print.css
old mode 100755
new mode 100644
diff --git a/themes/garland/screenshot.png b/themes/garland/screenshot.png
old mode 100755
new mode 100644
diff --git a/themes/garland/style-rtl.css b/themes/garland/style-rtl.css
old mode 100755
new mode 100644
diff --git a/themes/garland/style.css b/themes/garland/style.css
old mode 100755
new mode 100644
diff --git a/themes/garland/template.php b/themes/garland/template.php
old mode 100755
new mode 100644
diff --git a/themes/garland/theme-settings.php b/themes/garland/theme-settings.php
old mode 100755
new mode 100644
diff --git a/themes/seven/ie.css b/themes/seven/ie.css
old mode 100755
new mode 100644
diff --git a/themes/seven/ie6.css b/themes/seven/ie6.css
old mode 100755
new mode 100644
diff --git a/themes/seven/ie7.css b/themes/seven/ie7.css
old mode 100755
new mode 100644
diff --git a/themes/seven/images/add.png b/themes/seven/images/add.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/arrow-asc.png b/themes/seven/images/arrow-asc.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/arrow-desc.png b/themes/seven/images/arrow-desc.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/arrow-next.png b/themes/seven/images/arrow-next.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/arrow-prev.png b/themes/seven/images/arrow-prev.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/buttons.png b/themes/seven/images/buttons.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/fc-rtl.png b/themes/seven/images/fc-rtl.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/fc.png b/themes/seven/images/fc.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/list-item-rtl.png b/themes/seven/images/list-item-rtl.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/list-item.png b/themes/seven/images/list-item.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/task-check.png b/themes/seven/images/task-check.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/task-item-rtl.png b/themes/seven/images/task-item-rtl.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/task-item.png b/themes/seven/images/task-item.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/ui-icons-222222-256x240.png b/themes/seven/images/ui-icons-222222-256x240.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/ui-icons-454545-256x240.png b/themes/seven/images/ui-icons-454545-256x240.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/ui-icons-800000-256x240.png b/themes/seven/images/ui-icons-800000-256x240.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/ui-icons-888888-256x240.png b/themes/seven/images/ui-icons-888888-256x240.png
old mode 100755
new mode 100644
diff --git a/themes/seven/images/ui-icons-ffffff-256x240.png b/themes/seven/images/ui-icons-ffffff-256x240.png
old mode 100755
new mode 100644
diff --git a/themes/seven/jquery.ui.theme.css b/themes/seven/jquery.ui.theme.css
old mode 100755
new mode 100644
diff --git a/themes/seven/logo.png b/themes/seven/logo.png
old mode 100755
new mode 100644
diff --git a/themes/seven/maintenance-page.tpl.php b/themes/seven/maintenance-page.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/seven/page.tpl.php b/themes/seven/page.tpl.php
old mode 100755
new mode 100644
diff --git a/themes/seven/reset.css b/themes/seven/reset.css
old mode 100755
new mode 100644
diff --git a/themes/seven/screenshot.png b/themes/seven/screenshot.png
old mode 100755
new mode 100644
diff --git a/themes/seven/seven.info b/themes/seven/seven.info
old mode 100755
new mode 100644
index 4293c0741..99194dd88
--- a/themes/seven/seven.info
+++ b/themes/seven/seven.info
@@ -12,3 +12,9 @@ regions[page_top] = Page top
regions[page_bottom] = Page bottom
regions[sidebar_first] = First sidebar
regions_hidden[] = sidebar_first
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/themes/seven/style-rtl.css b/themes/seven/style-rtl.css
old mode 100755
new mode 100644
diff --git a/themes/seven/style.css b/themes/seven/style.css
old mode 100755
new mode 100644
diff --git a/themes/seven/template.php b/themes/seven/template.php
old mode 100755
new mode 100644
diff --git a/themes/seven/vertical-tabs-rtl.css b/themes/seven/vertical-tabs-rtl.css
old mode 100755
new mode 100644
diff --git a/themes/seven/vertical-tabs.css b/themes/seven/vertical-tabs.css
old mode 100755
new mode 100644
diff --git a/themes/stark/README.txt b/themes/stark/README.txt
old mode 100755
new mode 100644
diff --git a/themes/stark/layout.css b/themes/stark/layout.css
old mode 100755
new mode 100644
diff --git a/themes/stark/logo.png b/themes/stark/logo.png
old mode 100755
new mode 100644
diff --git a/themes/stark/screenshot.png b/themes/stark/screenshot.png
old mode 100755
new mode 100644
diff --git a/themes/stark/stark.info b/themes/stark/stark.info
old mode 100755
new mode 100644
index f9b88dffa..240215237
--- a/themes/stark/stark.info
+++ b/themes/stark/stark.info
@@ -4,3 +4,9 @@ package = Core
version = VERSION
core = 7.x
stylesheets[all][] = layout.css
+
+; Information added by drupal.org packaging script on 2013-02-20
+version = "7.20"
+project = "drupal"
+datestamp = "1361393684"
+
diff --git a/update.php b/update.php
old mode 100755
new mode 100644
diff --git a/web.config b/web.config
old mode 100755
new mode 100644
diff --git a/xmlrpc.php b/xmlrpc.php
old mode 100755
new mode 100644