Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
00df84c69c | ||
|
|
6c0f932603 | ||
|
|
12045fe181 | ||
|
|
60ca2f9e72 | ||
|
|
aa45d84855 |
@@ -0,0 +1,155 @@
|
|||||||
|
diff --git a/modules/user/user.module b/modules/user/user.module
|
||||||
|
index 47ac642..c204f6d 100644
|
||||||
|
--- a/modules/user/user.module
|
||||||
|
+++ b/modules/user/user.module
|
||||||
|
@@ -2286,14 +2286,26 @@ function user_external_login_register($name, $module) {
|
||||||
|
*
|
||||||
|
* @param object $account
|
||||||
|
* An object containing the user account.
|
||||||
|
+ * @param array $options
|
||||||
|
+ * (optional) A keyed array of settings. Supported options are:
|
||||||
|
+ * - langcode: A language code to be used when generating locale-sensitive
|
||||||
|
+ * urls. If langcode is NULL the users preferred language is used.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* A unique URL that provides a one-time log in for the user, from which
|
||||||
|
* they can change their password.
|
||||||
|
*/
|
||||||
|
-function user_pass_reset_url($account) {
|
||||||
|
+function user_pass_reset_url($account, $options = array()) {
|
||||||
|
$timestamp = REQUEST_TIME;
|
||||||
|
- return url("user/reset/$account->uid/$timestamp/" . user_pass_rehash($account->pass, $timestamp, $account->login), array('absolute' => TRUE));
|
||||||
|
+ $url_options = array('absolute' => TRUE);
|
||||||
|
+ if (isset($options['langcode'])) {
|
||||||
|
+ $languages = language_list();
|
||||||
|
+ $url_options['language'] = $languages[$options['langcode']];
|
||||||
|
+ }
|
||||||
|
+ else {
|
||||||
|
+ $url_options['language'] = user_preferred_language($account);
|
||||||
|
+ }
|
||||||
|
+ return url("user/reset/$account->uid/$timestamp/" . user_pass_rehash($account->pass, $timestamp, $account->login), $url_options);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
@@ -2305,6 +2317,10 @@ function user_pass_reset_url($account) {
|
||||||
|
* - uid: The user uid number.
|
||||||
|
* - pass: The hashed user password string.
|
||||||
|
* - login: The user login name.
|
||||||
|
+ * @param array $options
|
||||||
|
+ * (optional) A keyed array of settings. Supported options are:
|
||||||
|
+ * - langcode: A language code to be used when generating locale-sensitive
|
||||||
|
+ * urls. If langcode is NULL the users preferred language is used.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* A unique URL that may be used to confirm the cancellation of the user
|
||||||
|
@@ -2313,9 +2329,17 @@ function user_pass_reset_url($account) {
|
||||||
|
* @see user_mail_tokens()
|
||||||
|
* @see user_cancel_confirm()
|
||||||
|
*/
|
||||||
|
-function user_cancel_url($account) {
|
||||||
|
+function user_cancel_url($account, $options = array()) {
|
||||||
|
$timestamp = REQUEST_TIME;
|
||||||
|
- return url("user/$account->uid/cancel/confirm/$timestamp/" . user_pass_rehash($account->pass, $timestamp, $account->login), array('absolute' => TRUE));
|
||||||
|
+ $url_options = array('absolute' => TRUE);
|
||||||
|
+ if (isset($options['langcode'])) {
|
||||||
|
+ $languages = language_list();
|
||||||
|
+ $url_options['language'] = $languages[$options['langcode']];
|
||||||
|
+ }
|
||||||
|
+ else {
|
||||||
|
+ $url_options['language'] = user_preferred_language($account);
|
||||||
|
+ }
|
||||||
|
+ return url("user/$account->uid/cancel/confirm/$timestamp/" . user_pass_rehash($account->pass, $timestamp, $account->login), $url_options);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
@@ -2752,7 +2776,7 @@ Your account on [site:name] has been canceled.
|
||||||
|
if ($replace) {
|
||||||
|
// We do not sanitize the token replacement, since the output of this
|
||||||
|
// replacement is intended for an e-mail message, not a web browser.
|
||||||
|
- return token_replace($text, $variables, array('language' => $language, 'callback' => 'user_mail_tokens', 'sanitize' => FALSE, 'clear' => TRUE));
|
||||||
|
+ return token_replace($text, $variables, array('langcode' => $langcode, 'callback' => 'user_mail_tokens', 'sanitize' => FALSE, 'clear' => TRUE));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $text;
|
||||||
|
@@ -2779,8 +2803,8 @@ Your account on [site:name] has been canceled.
|
||||||
|
*/
|
||||||
|
function user_mail_tokens(&$replacements, $data, $options) {
|
||||||
|
if (isset($data['user'])) {
|
||||||
|
- $replacements['[user:one-time-login-url]'] = user_pass_reset_url($data['user']);
|
||||||
|
- $replacements['[user:cancel-url]'] = user_cancel_url($data['user']);
|
||||||
|
+ $replacements['[user:one-time-login-url]'] = user_pass_reset_url($data['user'], $options);
|
||||||
|
+ $replacements['[user:cancel-url]'] = user_cancel_url($data['user'], $options);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
diff --git a/modules/user/user.test b/modules/user/user.test
|
||||||
|
index b53db07..0417642 100644
|
||||||
|
--- a/modules/user/user.test
|
||||||
|
+++ b/modules/user/user.test
|
||||||
|
@@ -2012,6 +2012,26 @@ class UserTokenReplaceTestCase extends DrupalWebTestCase {
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
+ public function setUp() {
|
||||||
|
+ parent::setUp('locale');
|
||||||
|
+
|
||||||
|
+ $account = $this->drupalCreateUser(array('access administration pages', 'administer languages'));
|
||||||
|
+ $this->drupalLogin($account);
|
||||||
|
+
|
||||||
|
+ // Add language.
|
||||||
|
+ $edit = array('langcode' => 'de');
|
||||||
|
+ $this->drupalPost('admin/config/regional/language/add', $edit, t('Add language'));
|
||||||
|
+
|
||||||
|
+ // Enable URL language detection and selection.
|
||||||
|
+ $edit = array('language[enabled][locale-url]' => 1);
|
||||||
|
+ $this->drupalPost('admin/config/regional/language/configure', $edit, t('Save settings'));
|
||||||
|
+
|
||||||
|
+ // Reset static caching.
|
||||||
|
+ drupal_static_reset('language_list');
|
||||||
|
+ drupal_static_reset('locale_url_outbound_alter');
|
||||||
|
+ drupal_static_reset('locale_language_url_rewrite_url');
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
/**
|
||||||
|
* Creates a user, then tests the tokens generated from it.
|
||||||
|
*/
|
||||||
|
@@ -2062,6 +2082,39 @@ class UserTokenReplaceTestCase extends DrupalWebTestCase {
|
||||||
|
$output = token_replace($input, array('user' => $account), array('language' => $language, 'sanitize' => FALSE));
|
||||||
|
$this->assertEqual($output, $expected, t('Unsanitized user token %token replaced.', array('%token' => $input)));
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ $languages = language_list();
|
||||||
|
+
|
||||||
|
+ // Generate login and cancel link.
|
||||||
|
+ $tests = array();
|
||||||
|
+ $tests['[user:one-time-login-url]'] = user_pass_reset_url($account);
|
||||||
|
+ $tests['[user:cancel-url]'] = user_cancel_url($account);
|
||||||
|
+
|
||||||
|
+ // Generate tokens with interface language.
|
||||||
|
+ $link = url('user', array('absolute' => TRUE));
|
||||||
|
+ foreach ($tests as $input => $expected) {
|
||||||
|
+ $output = token_replace($input, array('user' => $account), array('langcode' => $language->language, 'callback' => 'user_mail_tokens', 'sanitize' => FALSE, 'clear' => TRUE));
|
||||||
|
+ $this->assertTrue(strpos($output, $link) === 0, 'Generated URL is in interface language.');
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ // Generate tokens with the user's preferred language.
|
||||||
|
+ $edit['language'] = 'de';
|
||||||
|
+ $account = user_save($account, $edit);
|
||||||
|
+ $link = url('user', array('language' => $languages[$account->language], 'absolute' => TRUE));
|
||||||
|
+ foreach ($tests as $input => $expected) {
|
||||||
|
+ $output = token_replace($input, array('user' => $account), array('callback' => 'user_mail_tokens', 'sanitize' => FALSE, 'clear' => TRUE));
|
||||||
|
+ $this->assertTrue(strpos($output, $link) === 0, "Generated URL is in the user's preferred language.");
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ // Generate tokens with one specific language.
|
||||||
|
+ $link = url('user', array('language' => $languages['de'], 'absolute' => TRUE));
|
||||||
|
+ foreach ($tests as $input => $expected) {
|
||||||
|
+ foreach (array($user1, $user2) as $account) {
|
||||||
|
+ $output = token_replace($input, array('user' => $account), array('langcode' => 'de', 'callback' => 'user_mail_tokens', 'sanitize' => FALSE, 'clear' => TRUE));
|
||||||
|
+ $this->assertTrue(strpos($output, $link) === 0, "Generated URL in in the requested language.");
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -1,3 +1,10 @@
|
|||||||
|
Drupal 7.19, 2013-01-16
|
||||||
|
-----------------------
|
||||||
|
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2013-001.
|
||||||
|
|
||||||
|
Drupal 7.18, 2012-12-19
|
||||||
|
-----------------------
|
||||||
|
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2012-004.
|
||||||
|
|
||||||
Drupal 7.17, 2012-11-07
|
Drupal 7.17, 2012-11-07
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
/**
|
/**
|
||||||
* The current system version.
|
* The current system version.
|
||||||
*/
|
*/
|
||||||
define('VERSION', '7.17');
|
define('VERSION', '7.19');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Core API compatibility.
|
* Core API compatibility.
|
||||||
|
|||||||
@@ -1113,6 +1113,9 @@ function file_munge_filename($filename, $extensions, $alerts = TRUE) {
|
|||||||
|
|
||||||
// Allow potentially insecure uploads for very savvy users and admin
|
// Allow potentially insecure uploads for very savvy users and admin
|
||||||
if (!variable_get('allow_insecure_uploads', 0)) {
|
if (!variable_get('allow_insecure_uploads', 0)) {
|
||||||
|
// Remove any null bytes. See http://php.net/manual/en/security.filesystem.nullbytes.php
|
||||||
|
$filename = str_replace(chr(0), '', $filename);
|
||||||
|
|
||||||
$whitelist = array_unique(explode(' ', trim($extensions)));
|
$whitelist = array_unique(explode(' ', trim($extensions)));
|
||||||
|
|
||||||
// Split the filename up by periods. The first part becomes the basename
|
// Split the filename up by periods. The first part becomes the basename
|
||||||
|
|||||||
+2
-2
@@ -58,9 +58,9 @@ Drupal.behaviors.collapse = {
|
|||||||
$('fieldset.collapsible', context).once('collapse', function () {
|
$('fieldset.collapsible', context).once('collapse', function () {
|
||||||
var $fieldset = $(this);
|
var $fieldset = $(this);
|
||||||
// Expand fieldset if there are errors inside, or if it contains an
|
// Expand fieldset if there are errors inside, or if it contains an
|
||||||
// element that is targeted by the URI fragment identifier.
|
// element that is targeted by the URI fragment identifier.
|
||||||
var anchor = location.hash && location.hash != '#' ? ', ' + location.hash : '';
|
var anchor = location.hash && location.hash != '#' ? ', ' + location.hash : '';
|
||||||
if ($('.error' + anchor, $fieldset).length) {
|
if ($fieldset.find('.error' + anchor).length) {
|
||||||
$fieldset.removeClass('collapsed');
|
$fieldset.removeClass('collapsed');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,27 @@ jQuery.noConflict();
|
|||||||
|
|
||||||
(function ($) {
|
(function ($) {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Override jQuery.fn.init to guard against XSS attacks.
|
||||||
|
*
|
||||||
|
* See http://bugs.jquery.com/ticket/9521
|
||||||
|
*/
|
||||||
|
var jquery_init = $.fn.init;
|
||||||
|
$.fn.init = function (selector, context, rootjQuery) {
|
||||||
|
// If the string contains a "#" before a "<", treat it as invalid HTML.
|
||||||
|
if (selector && typeof selector === 'string') {
|
||||||
|
var hash_position = selector.indexOf('#');
|
||||||
|
if (hash_position >= 0) {
|
||||||
|
var bracket_position = selector.indexOf('<');
|
||||||
|
if (bracket_position > hash_position) {
|
||||||
|
throw 'Syntax error, unrecognized expression: ' + selector;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return jquery_init.call(this, selector, context, rootjQuery);
|
||||||
|
};
|
||||||
|
$.fn.init.prototype = jquery_init.prototype;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attach all registered behaviors to a page element.
|
* Attach all registered behaviors to a page element.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -50,8 +50,8 @@ Drupal.behaviors.verticalTabs = {
|
|||||||
if (!tab_focus) {
|
if (!tab_focus) {
|
||||||
// If the current URL has a fragment and one of the tabs contains an
|
// If the current URL has a fragment and one of the tabs contains an
|
||||||
// element that matches the URL fragment, activate that tab.
|
// element that matches the URL fragment, activate that tab.
|
||||||
if (window.location.hash && $(window.location.hash, this).length) {
|
if (window.location.hash && $(this).find(window.location.hash).length) {
|
||||||
tab_focus = $(window.location.hash, this).closest('.vertical-tabs-pane');
|
tab_focus = $(this).find(window.location.hash).closest('.vertical-tabs-pane');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
tab_focus = $('> .vertical-tabs-pane:first', this);
|
tab_focus = $('> .vertical-tabs-pane:first', this);
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ files[] = aggregator.test
|
|||||||
configure = admin/config/services/aggregator/settings
|
configure = admin/config/services/aggregator/settings
|
||||||
stylesheets[all][] = aggregator.css
|
stylesheets[all][] = aggregator.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = block.test
|
files[] = block.test
|
||||||
configure = admin/structure/block
|
configure = admin/structure/block
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -13,8 +13,8 @@ regions[footer] = Footer
|
|||||||
regions[highlighted] = Highlighted
|
regions[highlighted] = Highlighted
|
||||||
regions[help] = Help
|
regions[help] = Help
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = blog.test
|
files[] = blog.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ files[] = book.test
|
|||||||
configure = admin/content/book/settings
|
configure = admin/content/book/settings
|
||||||
stylesheets[all][] = book.css
|
stylesheets[all][] = book.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -38,6 +38,15 @@ function book_render() {
|
|||||||
* format determined by the $type parameter.
|
* format determined by the $type parameter.
|
||||||
*/
|
*/
|
||||||
function book_export($type, $nid) {
|
function book_export($type, $nid) {
|
||||||
|
// Check that the node exists and that the current user has access to it.
|
||||||
|
$node = node_load($nid);
|
||||||
|
if (!$node) {
|
||||||
|
return MENU_NOT_FOUND;
|
||||||
|
}
|
||||||
|
if (!node_access('view', $node)) {
|
||||||
|
return MENU_ACCESS_DENIED;
|
||||||
|
}
|
||||||
|
|
||||||
$type = drupal_strtolower($type);
|
$type = drupal_strtolower($type);
|
||||||
|
|
||||||
$export_function = 'book_export_' . $type;
|
$export_function = 'book_export_' . $type;
|
||||||
|
|||||||
@@ -258,6 +258,13 @@ class BookTestCase extends DrupalWebTestCase {
|
|||||||
// Try getting the URL directly, and verify it fails.
|
// Try getting the URL directly, and verify it fails.
|
||||||
$this->drupalGet('book/export/html/' . $this->book->nid);
|
$this->drupalGet('book/export/html/' . $this->book->nid);
|
||||||
$this->assertResponse('403', t('Anonymous user properly forbidden.'));
|
$this->assertResponse('403', t('Anonymous user properly forbidden.'));
|
||||||
|
|
||||||
|
// Now grant anonymous users permission to view the printer-friendly
|
||||||
|
// version and verify that node access restrictions still prevent them from
|
||||||
|
// seeing it.
|
||||||
|
user_role_grant_permissions(DRUPAL_ANONYMOUS_RID, array('access printer-friendly version'));
|
||||||
|
$this->drupalGet('book/export/html/' . $this->book->nid);
|
||||||
|
$this->assertResponse('403', 'Anonymous user properly forbidden from seeing the printer-friendly version when denied by node access.');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = color.test
|
files[] = color.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ files[] = comment.test
|
|||||||
configure = admin/content/comment
|
configure = admin/content/comment
|
||||||
stylesheets[all][] = comment.css
|
stylesheets[all][] = comment.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = contact.test
|
files[] = contact.test
|
||||||
configure = admin/structure/contact
|
configure = admin/structure/contact
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = contextual.test
|
files[] = contextual.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ files[] = dashboard.test
|
|||||||
dependencies[] = block
|
dependencies[] = block
|
||||||
configure = admin/dashboard/customize
|
configure = admin/dashboard/customize
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = dblog.test
|
files[] = dblog.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ dependencies[] = field_sql_storage
|
|||||||
required = TRUE
|
required = TRUE
|
||||||
stylesheets[all][] = theme/field.css
|
stylesheets[all][] = theme/field.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ dependencies[] = field
|
|||||||
files[] = field_sql_storage.test
|
files[] = field_sql_storage.test
|
||||||
required = TRUE
|
required = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ dependencies[] = field
|
|||||||
dependencies[] = options
|
dependencies[] = options
|
||||||
files[] = tests/list.test
|
files[] = tests/list.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = number.test
|
files[] = number.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = options.test
|
files[] = options.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ dependencies[] = field
|
|||||||
files[] = text.test
|
files[] = text.test
|
||||||
required = TRUE
|
required = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ files[] = field_test.entity.inc
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = field_ui.test
|
files[] = field_ui.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = tests/file.test
|
files[] = tests/file.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ files[] = filter.test
|
|||||||
required = TRUE
|
required = TRUE
|
||||||
configure = admin/config/content/formats
|
configure = admin/config/content/formats
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ files[] = forum.test
|
|||||||
configure = admin/structure/forum
|
configure = admin/structure/forum
|
||||||
stylesheets[all][] = forum.css
|
stylesheets[all][] = forum.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = help.test
|
files[] = help.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ dependencies[] = file
|
|||||||
files[] = image.test
|
files[] = image.test
|
||||||
configure = admin/config/media/image-styles
|
configure = admin/config/media/image-styles
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -292,7 +292,8 @@ function image_file_download($uri) {
|
|||||||
if ($info = image_get_info($uri)) {
|
if ($info = image_get_info($uri)) {
|
||||||
// Check the permissions of the original to grant access to this image.
|
// Check the permissions of the original to grant access to this image.
|
||||||
$headers = module_invoke_all('file_download', $original_uri);
|
$headers = module_invoke_all('file_download', $original_uri);
|
||||||
if (!in_array(-1, $headers)) {
|
// Confirm there's at least one module granting access and none denying access.
|
||||||
|
if (!empty($headers) && !in_array(-1, $headers)) {
|
||||||
return array(
|
return array(
|
||||||
// Send headers describing the image's size, and MIME-type...
|
// Send headers describing the image's size, and MIME-type...
|
||||||
'Content-Type' => $info['mime_type'],
|
'Content-Type' => $info['mime_type'],
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = image_module_test.module
|
files[] = image_module_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = locale.test
|
files[] = locale.test
|
||||||
configure = admin/config/regional/language
|
configure = admin/config/regional/language
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = menu.test
|
files[] = menu.test
|
||||||
configure = admin/structure/menu
|
configure = admin/structure/menu
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ required = TRUE
|
|||||||
configure = admin/structure/types
|
configure = admin/structure/types
|
||||||
stylesheets[all][] = node.css
|
stylesheets[all][] = node.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ package = Core
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = openid.test
|
files[] = openid.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = openid
|
dependencies[] = openid
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ package = Core
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
core = 7.x
|
core = 7.x
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = path.test
|
files[] = path.test
|
||||||
configure = admin/config/search/path
|
configure = admin/config/search/path
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = php.test
|
files[] = php.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = poll.test
|
files[] = poll.test
|
||||||
stylesheets[all][] = poll.css
|
stylesheets[all][] = poll.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ configure = admin/config/people/profile
|
|||||||
; See user_system_info_alter().
|
; See user_system_info_alter().
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = rdf.test
|
files[] = rdf.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ files[] = search.test
|
|||||||
configure = admin/config/search/settings
|
configure = admin/config/search/settings
|
||||||
stylesheets[all][] = search.css
|
stylesheets[all][] = search.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = shortcut.test
|
files[] = shortcut.test
|
||||||
configure = admin/config/user-interface/shortcut
|
configure = admin/config/user-interface/shortcut
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -55,8 +55,8 @@ files[] = tests/upgrade/update.trigger.test
|
|||||||
files[] = tests/upgrade/update.field.test
|
files[] = tests/upgrade/update.field.test
|
||||||
files[] = tests/upgrade/update.user.test
|
files[] = tests/upgrade/update.user.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ stylesheets[all][] = common_test.css
|
|||||||
stylesheets[print][] = common_test.print.css
|
stylesheets[print][] = common_test.print.css
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = entity_cache_test_dependency
|
dependencies[] = entity_cache_test_dependency
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = file_test.module
|
files[] = file_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = _missing_dependency
|
dependencies[] = _missing_dependency
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = system_incompatible_core_version_test
|
dependencies[] = system_incompatible_core_version_test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 5.x
|
core = 5.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ hidden = TRUE
|
|||||||
; system_incompatible_module_version_test declares version 1.0
|
; system_incompatible_module_version_test declares version 1.0
|
||||||
dependencies[] = system_incompatible_module_version_test (>2.0)
|
dependencies[] = system_incompatible_module_version_test (>2.0)
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = 1.0
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = system_test.module
|
files[] = system_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = taxonomy
|
dependencies[] = taxonomy
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ hidden = TRUE
|
|||||||
settings[basetheme_only] = base theme value
|
settings[basetheme_only] = base theme value
|
||||||
settings[subtheme_override] = base theme value
|
settings[subtheme_override] = base theme value
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ hidden = TRUE
|
|||||||
|
|
||||||
settings[subtheme_override] = subtheme value
|
settings[subtheme_override] = subtheme value
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ stylesheets[all][] = system.base.css
|
|||||||
|
|
||||||
settings[theme_test_setting] = default value
|
settings[theme_test_setting] = default value
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user