7.16 less patch previous patches are preserved

Signed-off-by: bachy <git@g-u-i.net>
This commit is contained in:
bachy 2012-10-26 21:57:49 +02:00
parent e5028b4522
commit 4240ab47e8
125 changed files with 409 additions and 369 deletions

View File

@ -1,4 +1,9 @@
Drupal 7.16, 2012-10-17
-----------------------
- Fixed security issues (Arbitrary PHP code execution and information
disclosure). See SA-CORE-2012-003.
Drupal 7.15, 2012-08-01
-----------------------
- Introduced a 'user_password_reset_timeout' variable to allow the 24-hour

View File

@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '7.15');
define('VERSION', '7.16');
/**
* Core API compatibility.

View File

@ -295,12 +295,11 @@ function install_begin_request(&$install_state) {
else {
$task = NULL;
// Since previous versions of Drupal stored database connection information
// in the 'db_url' variable, we should never let an installation proceed if
// this variable is defined and the settings file was not verified above
// (otherwise we risk installing over an existing site whose settings file
// has not yet been updated).
if (!empty($GLOBALS['db_url'])) {
// Do not install over a configured settings.php. Check the 'db_url'
// variable in addition to 'databases', since previous versions of Drupal
// used that (and we do not want to allow installations on an existing site
// whose settings file has not yet been updated).
if (!empty($GLOBALS['databases']) || !empty($GLOBALS['db_url'])) {
throw new Exception(install_already_done_error());
}
}

View File

@ -7,8 +7,8 @@ files[] = aggregator.test
configure = admin/config/services/aggregator/settings
stylesheets[all][] = aggregator.css
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = block.test
configure = admin/structure/block
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -13,8 +13,8 @@ regions[footer] = Footer
regions[highlighted] = Highlighted
regions[help] = Help
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = blog.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ files[] = book.test
configure = admin/content/book/settings
stylesheets[all][] = book.css
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = color.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -9,8 +9,8 @@ files[] = comment.test
configure = admin/content/comment
stylesheets[all][] = comment.css
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = contact.test
configure = admin/structure/contact
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = contextual.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ files[] = dashboard.test
dependencies[] = block
configure = admin/dashboard/customize
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = dblog.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -10,8 +10,8 @@ dependencies[] = field_sql_storage
required = TRUE
stylesheets[all][] = theme/field.css
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ dependencies[] = field
files[] = field_sql_storage.test
required = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ dependencies[] = field
dependencies[] = options
files[] = tests/list.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ package = Testing
version = VERSION
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = number.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = options.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ dependencies[] = field
files[] = text.test
required = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ files[] = field_test.entity.inc
version = VERSION
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = field_ui.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = tests/file.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ files[] = filter.test
required = TRUE
configure = admin/config/content/formats
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -9,8 +9,8 @@ files[] = forum.test
configure = admin/structure/forum
stylesheets[all][] = forum.css
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = help.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ dependencies[] = file
files[] = image.test
configure = admin/config/media/image-styles
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = image_module_test.module
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = locale.test
configure = admin/config/regional/language
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ package = Testing
version = VERSION
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = menu.test
configure = admin/structure/menu
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -9,8 +9,8 @@ required = TRUE
configure = admin/structure/types
stylesheets[all][] = node.css
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -138,8 +138,28 @@ function openid_redirect_form($form, &$form_state, $url, $message) {
*/
function _openid_xrds_parse($raw_xml) {
$services = array();
try {
$xml = @new SimpleXMLElement($raw_xml);
// For PHP version >= 5.2.11, we can use this function to protect against
// malicious doctype declarations and other unexpected entity loading.
// However, we will not rely on it, and reject any XML with a DOCTYPE.
$disable_entity_loader = function_exists('libxml_disable_entity_loader');
if ($disable_entity_loader) {
$load_entities = libxml_disable_entity_loader(TRUE);
}
// Load the XML into a DOM document.
$dom = new DOMDocument();
@$dom->loadXML($raw_xml);
// Since DOCTYPE declarations from an untrusted source could be malicious, we
// stop parsing here and treat the XML as invalid since XRDS documents do not
// require, and are not expected to have, a DOCTYPE.
if (isset($dom->doctype)) {
return array();
}
// Parse the DOM document for the information we need.
if ($xml = simplexml_import_dom($dom)) {
foreach ($xml->children(OPENID_NS_XRD)->XRD as $xrd) {
foreach ($xrd->children(OPENID_NS_XRD)->Service as $service_element) {
$service = array(
@ -165,9 +185,12 @@ function _openid_xrds_parse($raw_xml) {
}
}
}
catch (Exception $e) {
// Invalid XML.
// Return the LIBXML options to the previous state before returning.
if ($disable_entity_loader) {
libxml_disable_entity_loader($load_entities);
}
return $services;
}

View File

@ -5,8 +5,8 @@ package = Core
core = 7.x
files[] = openid.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -180,6 +180,15 @@ class OpenIDFunctionalTestCase extends OpenIDWebTestCase {
// Verify user was redirected away from user/login to an accessible page.
$this->assertResponse(200);
$this->drupalLogout();
// Use a User-supplied Identity that is the URL of an XRDS document.
// Tell the test module to add a doctype. This should fail.
$identity = url('openid-test/yadis/xrds', array('absolute' => TRUE, 'query' => array('doctype' => 1)));
// Test logging in via the login block on the front page.
$edit = array('openid_identifier' => $identity);
$this->drupalPost('', $edit, t('Log in'));
$this->assertRaw(t('Sorry, that is not a valid OpenID. Ensure you have spelled your ID correctly.'), 'XML with DOCTYPE was rejected.');
}
/**

View File

@ -6,8 +6,8 @@ core = 7.x
dependencies[] = openid
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -109,7 +109,11 @@ function openid_test_yadis_xrds() {
}
}
drupal_add_http_header('Content-Type', 'application/xrds+xml');
print '<?xml version="1.0" encoding="UTF-8"?>
print '<?xml version="1.0" encoding="UTF-8"?>';
if (!empty($_GET['doctype'])) {
print "\n<!DOCTYPE dct [ <!ELEMENT blue (#PCDATA)> ]>\n";
}
print '
<xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)" xmlns:openid="http://openid.net/xmlns/1.0">
<XRD>
<Status cid="' . check_plain(variable_get('openid_test_canonical_id_status', 'verified')) . '"/>

View File

@ -4,8 +4,8 @@ package = Core
version = VERSION
core = 7.x
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = path.test
configure = admin/config/search/path
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = php.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = poll.test
stylesheets[all][] = poll.css
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -11,8 +11,8 @@ configure = admin/config/people/profile
; See user_system_info_alter().
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = rdf.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -8,8 +8,8 @@ files[] = search.test
configure = admin/config/search/settings
stylesheets[all][] = search.css
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = shortcut.test
configure = admin/config/user-interface/shortcut
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -54,8 +54,8 @@ files[] = tests/upgrade/upgrade.upload.test
files[] = tests/upgrade/update.user.test
files[] = tests/upgrade/upgrade.user.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ package = Testing
version = VERSION
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ stylesheets[all][] = common_test.css
stylesheets[print][] = common_test.print.css
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ package = Testing
version = VERSION
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
dependencies[] = entity_cache_test_dependency
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ package = Testing
version = VERSION
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = file_test.module
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
hidden = TRUE
dependencies[] = _missing_dependency
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
hidden = TRUE
dependencies[] = system_incompatible_core_version_test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 5.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -7,8 +7,8 @@ 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 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = 1.0
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = system_test.module
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
hidden = TRUE
dependencies[] = taxonomy
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ hidden = TRUE
settings[basetheme_only] = base theme value
settings[subtheme_override] = base theme value
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ hidden = TRUE
settings[subtheme_override] = subtheme value
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -17,8 +17,8 @@ stylesheets[all][] = system.base.css
settings[theme_test_setting] = default value
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ package = Testing
version = VERSION
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -6,8 +6,8 @@ core = 7.x
files[] = statistics.test
configure = admin/config/system/statistics
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = syslog.test
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

View File

@ -12,8 +12,8 @@ files[] = system.test
required = TRUE
configure = admin/config/system
; Information added by drupal.org packaging script on 2012-08-01
version = "7.15"
; Information added by drupal.org packaging script on 2012-10-17
version = "7.16"
project = "drupal"
datestamp = "1343839327"
datestamp = "1350508567"

Some files were not shown because too many files have changed in this diff Show More