Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4240ab47e8 | ||
|
|
e5028b4522 | ||
|
|
3a3a620cac | ||
|
|
4f6a8d389b |
@@ -129,3 +129,96 @@ DirectoryIndex index.php index.html index.htm
|
||||
</FilesMatch>
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
|
||||
|
||||
# FROM Html5 BoilerPlate 4.0
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Proper MIME type for all files
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# JavaScript
|
||||
# Normalize to standard type (it's sniffed in IE anyways)
|
||||
# tools.ietf.org/html/rfc4329#section-7.2
|
||||
AddType application/javascript js jsonp
|
||||
AddType application/json json
|
||||
|
||||
# Audio
|
||||
AddType audio/ogg oga ogg
|
||||
AddType audio/mp4 m4a f4a f4b
|
||||
|
||||
# Video
|
||||
AddType video/ogg ogv
|
||||
AddType video/mp4 mp4 m4v f4v f4p
|
||||
AddType video/webm webm
|
||||
AddType video/x-flv flv
|
||||
|
||||
# SVG
|
||||
# Required for svg webfonts on iPad
|
||||
# twitter.com/FontSquirrel/status/14855840545
|
||||
AddType image/svg+xml svg svgz
|
||||
AddEncoding gzip svgz
|
||||
|
||||
# Webfonts
|
||||
AddType application/vnd.ms-fontobject eot
|
||||
AddType application/x-font-ttf ttf ttc
|
||||
AddType font/opentype otf
|
||||
AddType application/x-font-woff woff
|
||||
|
||||
# Assorted types
|
||||
AddType image/x-icon ico
|
||||
AddType image/webp webp
|
||||
AddType text/cache-manifest appcache manifest
|
||||
AddType text/x-component htc
|
||||
AddType application/xml rss atom xml rdf
|
||||
AddType application/x-chrome-extension crx
|
||||
AddType application/x-opera-extension oex
|
||||
AddType application/x-xpinstall xpi
|
||||
AddType application/octet-stream safariextz
|
||||
AddType application/x-web-app-manifest+json webapp
|
||||
AddType text/x-vcard vcf
|
||||
AddType application/x-shockwave-flash swf
|
||||
AddType text/vtt vtt
|
||||
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# UTF-8 encoding
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Use UTF-8 encoding for anything served text/plain or text/html
|
||||
AddDefaultCharset utf-8
|
||||
|
||||
# Force UTF-8 for a number of file formats
|
||||
AddCharset utf-8 .atom .css .js .json .rss .vtt .xml
|
||||
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# A little more security
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
|
||||
# Block access to "hidden" directories or files whose names begin with a
|
||||
# period. This includes directories used by version control systems such as
|
||||
# Subversion or Git.
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteCond %{SCRIPT_FILENAME} -d [OR]
|
||||
RewriteCond %{SCRIPT_FILENAME} -f
|
||||
RewriteRule "(^|/)\." - [F]
|
||||
</IfModule>
|
||||
|
||||
# Block access to backup and source files. These files may be left by some
|
||||
# text/html editors and pose a great security danger, when anyone can access
|
||||
# them.
|
||||
<FilesMatch "(\.(bak|config|sql|fla|psd|ini|log|sh|inc|swp|dist)|~)$">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
Satisfy All
|
||||
</FilesMatch>
|
||||
|
||||
# Increase cookie security
|
||||
<IfModule php5_module>
|
||||
php_value session.cookie_httponly true
|
||||
</IfModule>
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
diff --git a/misc/autocomplete.js b/misc/autocomplete.js
|
||||
index 8f7ac60..5679081 100644
|
||||
--- a/misc/autocomplete.js
|
||||
+++ b/misc/autocomplete.js
|
||||
@@ -114,6 +114,7 @@ Drupal.jsAC.prototype.onkeyup = function (input, e) {
|
||||
*/
|
||||
Drupal.jsAC.prototype.select = function (node) {
|
||||
this.input.value = $(node).data('autocompleteValue');
|
||||
+ $(this.input).trigger('autocompleteSelect', [node]);
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -167,7 +168,7 @@ Drupal.jsAC.prototype.unhighlight = function (node) {
|
||||
Drupal.jsAC.prototype.hidePopup = function (keycode) {
|
||||
// Select item if the right key or mousebutton was pressed.
|
||||
if (this.selected && ((keycode && keycode != 46 && keycode != 8 && keycode != 27) || !keycode)) {
|
||||
- this.input.value = $(this.selected).data('autocompleteValue');
|
||||
+ this.select(this.selected);
|
||||
}
|
||||
// Hide popup.
|
||||
var popup = this.popup;
|
||||
@@ -220,7 +221,7 @@ Drupal.jsAC.prototype.found = function (matches) {
|
||||
for (key in matches) {
|
||||
$('<li></li>')
|
||||
.html($('<div></div>').html(matches[key]))
|
||||
- .mousedown(function () { ac.select(this); })
|
||||
+ .mousedown(function () { ac.hidePopup(this); })
|
||||
.mouseover(function () { ac.highlight(this); })
|
||||
.mouseout(function () { ac.unhighlight(this); })
|
||||
.data('autocompleteValue', key)
|
||||
@@ -8,7 +8,7 @@
|
||||
/**
|
||||
* The current system version.
|
||||
*/
|
||||
define('VERSION', '7.15');
|
||||
define('VERSION', '7.16');
|
||||
|
||||
/**
|
||||
* Core API compatibility.
|
||||
|
||||
@@ -160,6 +160,18 @@ class DrupalDefaultEntityController implements DrupalEntityControllerInterface {
|
||||
public function load($ids = array(), $conditions = array()) {
|
||||
$entities = array();
|
||||
|
||||
# PATCH http://drupal.org/node/1003788#comment-5195682
|
||||
// Clean the $ids array to remove non-integer values that can be passed
|
||||
// in from various sources, including menu callbacks.
|
||||
if (is_array($ids)) {
|
||||
foreach ($ids as $key => $id) {
|
||||
if (empty($id) || ((string) $id !== (string) (int) $id)) {
|
||||
unset($ids[$key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
# endpatch
|
||||
|
||||
// Revisions are not statically cached, and require a different query to
|
||||
// other conditions, so separate the revision id into its own variable.
|
||||
if ($this->revisionKey && isset($conditions[$this->revisionKey])) {
|
||||
|
||||
@@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,807 +0,0 @@
|
||||
{
|
||||
"auto_complete":
|
||||
{
|
||||
"selected_items":
|
||||
[
|
||||
[
|
||||
"font",
|
||||
"font-size"
|
||||
],
|
||||
[
|
||||
"mat",
|
||||
"matches"
|
||||
],
|
||||
[
|
||||
"preg",
|
||||
"preg_match"
|
||||
],
|
||||
[
|
||||
"ima",
|
||||
"images"
|
||||
],
|
||||
[
|
||||
"alt",
|
||||
"images_alts"
|
||||
],
|
||||
[
|
||||
"titles",
|
||||
"images_titles"
|
||||
],
|
||||
[
|
||||
"for",
|
||||
"foreach foreach …"
|
||||
],
|
||||
[
|
||||
"field",
|
||||
"field_imago_list"
|
||||
],
|
||||
[
|
||||
"query",
|
||||
"query_translated"
|
||||
],
|
||||
[
|
||||
"que",
|
||||
"query_neu"
|
||||
],
|
||||
[
|
||||
"su",
|
||||
"summary"
|
||||
],
|
||||
[
|
||||
"ti",
|
||||
"title"
|
||||
],
|
||||
[
|
||||
"ar",
|
||||
"args"
|
||||
],
|
||||
[
|
||||
"materio",
|
||||
"materio_search_api"
|
||||
],
|
||||
[
|
||||
"key",
|
||||
"keys"
|
||||
],
|
||||
[
|
||||
"form",
|
||||
"form_state"
|
||||
],
|
||||
[
|
||||
"mater",
|
||||
"materiobase"
|
||||
],
|
||||
[
|
||||
"cal",
|
||||
"callback"
|
||||
],
|
||||
[
|
||||
"fo",
|
||||
"form"
|
||||
],
|
||||
[
|
||||
"ty",
|
||||
"typed"
|
||||
],
|
||||
[
|
||||
"fun",
|
||||
"function"
|
||||
],
|
||||
[
|
||||
"min",
|
||||
"min-width"
|
||||
],
|
||||
[
|
||||
"ba",
|
||||
"background-position"
|
||||
]
|
||||
]
|
||||
},
|
||||
"buffers":
|
||||
[
|
||||
{
|
||||
"file": "sites/all/themes/gui/materiobasetheme/less/layout.less",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 704,
|
||||
"line_ending": "Unix"
|
||||
}
|
||||
},
|
||||
{
|
||||
"file": "sites/all/themes/gui/materiobasetheme/less/styles.less",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 1269,
|
||||
"line_ending": "Unix"
|
||||
}
|
||||
},
|
||||
{
|
||||
"file": "sites/all/modules/gui/materiobasemod/materio_search_api_ajax.module",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 1075,
|
||||
"line_ending": "Unix"
|
||||
}
|
||||
},
|
||||
{
|
||||
"file": "sites/all/modules/gui/materiobasemod/js/materio_search_api_ajax.js",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 3132,
|
||||
"line_ending": "Unix"
|
||||
}
|
||||
},
|
||||
{
|
||||
"file": "sites/all/modules/contrib/search/search_api_page/search_api_page.pages.inc",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 8151,
|
||||
"line_ending": "Unix"
|
||||
}
|
||||
},
|
||||
{
|
||||
"file": "sites/all/modules/contrib/search/search_api_ajax/search_api_ajax.pages.inc",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 3972,
|
||||
"line_ending": "Unix"
|
||||
}
|
||||
},
|
||||
{
|
||||
"file": "sites/all/modules/contrib/search/search_api_autocomplete/search_api_autocomplete.pages.inc",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 3419,
|
||||
"line_ending": "Unix"
|
||||
}
|
||||
},
|
||||
{
|
||||
"file": "sites/all/themes/gui/materiobasetheme/js/script.js",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 1120,
|
||||
"line_ending": "Unix"
|
||||
}
|
||||
}
|
||||
],
|
||||
"build_system": "",
|
||||
"command_palette":
|
||||
{
|
||||
"height": 49.0,
|
||||
"selected_items":
|
||||
[
|
||||
[
|
||||
"docu",
|
||||
"Goto Documentation"
|
||||
],
|
||||
[
|
||||
"todo",
|
||||
"Show TODOs: Open files only"
|
||||
],
|
||||
[
|
||||
"install",
|
||||
"Package Control: Install Package"
|
||||
],
|
||||
[
|
||||
"package",
|
||||
"Package Control: Install Package"
|
||||
],
|
||||
[
|
||||
"in",
|
||||
"Package Control: Install Package"
|
||||
],
|
||||
[
|
||||
"pack",
|
||||
"Package Control: Install Package"
|
||||
],
|
||||
[
|
||||
"goto",
|
||||
"Goto Documentation"
|
||||
],
|
||||
[
|
||||
"packa",
|
||||
"Package Control: List Packages"
|
||||
],
|
||||
[
|
||||
"do",
|
||||
"Goto Documentation"
|
||||
],
|
||||
[
|
||||
"doc",
|
||||
"Goto Documentation"
|
||||
],
|
||||
[
|
||||
"inst",
|
||||
"Package Control: Install Package"
|
||||
],
|
||||
[
|
||||
"go",
|
||||
"Goto Documentation"
|
||||
],
|
||||
[
|
||||
"packe",
|
||||
"Package Control: Remove Package"
|
||||
],
|
||||
[
|
||||
"insta",
|
||||
"Package Control: Install Package"
|
||||
],
|
||||
[
|
||||
"side",
|
||||
"View: Toggle Side Bar"
|
||||
],
|
||||
[
|
||||
"pac",
|
||||
"Package Control: Install Package"
|
||||
],
|
||||
[
|
||||
"git",
|
||||
"Git: Fetch"
|
||||
],
|
||||
[
|
||||
"pa",
|
||||
"Package Control: Install Package"
|
||||
],
|
||||
[
|
||||
"Package CO",
|
||||
"Package Control: Install Package"
|
||||
]
|
||||
],
|
||||
"width": 588.0
|
||||
},
|
||||
"console":
|
||||
{
|
||||
"height": 132.0
|
||||
},
|
||||
"distraction_free":
|
||||
{
|
||||
"menu_visible": true,
|
||||
"show_minimap": false,
|
||||
"show_open_files": false,
|
||||
"show_tabs": false,
|
||||
"side_bar_visible": false,
|
||||
"status_bar_visible": false
|
||||
},
|
||||
"file_history":
|
||||
[
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/users/ajax_register/ajax_register.module",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/users/ajax_register/ajax_register.pages.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/materio_search_api.info",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/materio_search_api_ajax.info",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/materiobasetheme.info",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/less/misc.less",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/templates/page.tpl.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/materio_search_api.pages.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/js/materio_search_api_ajax.js",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/materio_search_api_ajax.module",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/materio_search_api_ajax.pages.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/js/script.js",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/less/layout.less",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/less/styles.less",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/materio_search_api.module",
|
||||
"/Users/bachir/Library/Application Support/Sublime Text 2/Packages/User/Default (OSX).sublime-keymap",
|
||||
"/Users/bachir/Sites/materio/base_d7/ac_select_event-365241-54.patch",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/preprocess/page.pre.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/css/styles.css",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/js/materiobaseajax-ck.js",
|
||||
"/Users/bachir/Library/Application Support/Sublime Text 2/Packages/User/Preferences.sublime-settings",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/fields/entityreference-1.0-rc1/plugins/selection/EntityReference_SelectionHandler_Generic.class.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/fields/entityreference/entityreference-user-role-status-filters-1354482-9.patch",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/fields/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/fields/entityreference/plugins/behavior/EntityReferenceBehavior_ViewsFilterSelect.class.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/fields/entityreference/patch url.txt",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/fields/entityreference/patch url",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/fields/entityreference/README.txt",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/materio_search_api.admin.inc",
|
||||
"/Users/bachir/Library/Application Support/Sublime Text 2/Packages/Default/Default (OSX).sublime-keymap",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/search/search_api_solr/service.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/migrate_materio/migrate_materio.module",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/migrate_materio/migrate_materio.info",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/migrate_materio/migrate_materio.company.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/migrate_materio/migrate_materio.basic.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/migrate_materio/migrate_materio.materiau.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/migrate_materio/migrate_materio.breves.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/migrate_materio/print-query.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/sb.basebeta.materio.com/settings.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/default/settings.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/migrate_materio/migrate_materio.admin.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/js/materiobaseajax.js",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/materiobaseajax.pages.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/search/search_api_page/search_api_page.pages.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/search/search_api/search_api.module",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/search/search_api_page/search_api_page.module",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/materiobaseajax.module",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/search/search_api_page/search_api_page.admin.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/materio.sublime-project",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/editmenu/editmenu.admin.inc",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/editmenu/editmenu.module",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/contrib/search/search_api/search_api.api.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/templates/materiobase-results.tpl.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/templates/search-api-page-results.tpl.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/modules/gui/materiobasemod/templates/materiobase-search-block.tpl.php",
|
||||
"/Users/bachir/Sites/materio/base_d7/sites/all/themes/gui/materiobasetheme/inc/template.theme-overrides.inc",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/modules/contrib/views/views_field_view/views_field_view_handler_field_view.inc",
|
||||
"/Users/bachir/Sites/kadist.org/_kadist.sublime-project",
|
||||
"/System/Library/Extensions/GeForce.kext/Contents/PkgInfo",
|
||||
"/System/Library/Extensions/GeForce.kext/Contents/version.plist",
|
||||
"/System/Library/Extensions/GeForce.kext/Contents/Info.plist",
|
||||
"/System/Library/Extensions/GeForce.kext/Contents/MacOS/GeForce",
|
||||
"/System/Library/Extensions/GeForce.kext/Contents/_CodeSignature/CodeDirectory",
|
||||
"/System/Library/Extensions/GeForce.kext/Contents/_CodeSignature/CodeRequirements",
|
||||
"/System/Library/Extensions/GeForce.kext/Contents/_CodeSignature/CodeResources",
|
||||
"/Users/bachir/Sites/apache.tmproj",
|
||||
"/Users/bachir/Sites/lesveilleursderennes.com/sites/all/themes/custom/lesveilleursderennes/templates/calendar-month-node.tpl.php",
|
||||
"/Users/bachir/Sites/lesveilleursderennes.com/_leslveilleursderennes.sublime-project",
|
||||
"/Volumes/mbp_bach_72hd/Documents/__taff/leslabos/2012/backup kimsufi/mysqldumps/cleanroom.sql",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/modules/gui/location_filter/location_filter.module",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/modules/gui/kadistqueries/plugins/content_types/kadistqueries_medium_pane.inc",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/themes/gui/kadist/less/kadist.less",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/modules/gui/kadistqueries/plugins/content_types/kadistqueries_artistes_pane.inc",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/modules/gui/kadistqueries/kadistqueries.module",
|
||||
"/Users/bachir/Library/Application Support/Sublime Text 2/Packages/User/goToSideBar.py",
|
||||
"/Users/bachir/Sites/kadist.org/sites/kadist.org/drushrc.php",
|
||||
"/Users/bachir/Library/Application Support/Sublime Text 2/Packages/Default/Preferences.sublime-settings",
|
||||
"/Users/bachir/Sites/kadist.org/.htaccess",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/themes/gui/kadist/templates/block--menu-bar.tpl.php",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/themes/gui/kadist/templates/block--search.tpl.php",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/themes/gui/kadist/preprocess/block.pre.php",
|
||||
"/Users/bachir/Sites/kadist.org/MAINTAINERS.txt",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/themes/gui/kadist/preprocess/search-result.pre.php",
|
||||
"/Users/bachir/Sites/kadist.org/sites/all/themes/gui/kadist/preprocess/page.pre.php"
|
||||
],
|
||||
"find":
|
||||
{
|
||||
"height": 35.0
|
||||
},
|
||||
"find_in_files":
|
||||
{
|
||||
"height": 0.0,
|
||||
"where_history":
|
||||
[
|
||||
""
|
||||
]
|
||||
},
|
||||
"find_state":
|
||||
{
|
||||
"case_sensitive": false,
|
||||
"find_history":
|
||||
[
|
||||
"materiobaseajax",
|
||||
"sublime",
|
||||
"materio_search_api",
|
||||
"page",
|
||||
"width",
|
||||
"An",
|
||||
"function materiobasemod",
|
||||
"hello world",
|
||||
"location_filter_item",
|
||||
"dsm",
|
||||
"leslabos",
|
||||
"leslabosblock-typo",
|
||||
"block-typo",
|
||||
"\n()",
|
||||
"location_filter_block_info",
|
||||
"function",
|
||||
"super+k",
|
||||
"super+alt+0",
|
||||
"f1",
|
||||
"fold",
|
||||
"width",
|
||||
"focus",
|
||||
"side",
|
||||
"file",
|
||||
"reve",
|
||||
"reveal",
|
||||
"side"
|
||||
],
|
||||
"highlight": true,
|
||||
"in_selection": false,
|
||||
"preserve_case": false,
|
||||
"regex": false,
|
||||
"replace_history":
|
||||
[
|
||||
"materio_search_api_ajax",
|
||||
"function materio_search_api"
|
||||
],
|
||||
"reverse": false,
|
||||
"show_context": true,
|
||||
"use_buffer2": true,
|
||||
"whole_word": false,
|
||||
"wrap": true
|
||||
},
|
||||
"groups":
|
||||
[
|
||||
{
|
||||
"selected": 5,
|
||||
"sheets":
|
||||
[
|
||||
{
|
||||
"buffer": 0,
|
||||
"file": "sites/all/themes/gui/materiobasetheme/less/layout.less",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 704,
|
||||
"regions":
|
||||
{
|
||||
},
|
||||
"selection":
|
||||
[
|
||||
[
|
||||
704,
|
||||
704
|
||||
]
|
||||
],
|
||||
"settings":
|
||||
{
|
||||
"buffer_scroll_name": "ca87ca81",
|
||||
"incomplete_sync": null,
|
||||
"remote_loading": false,
|
||||
"synced": false,
|
||||
"syntax": "Packages/LESS/LESS.tmLanguage",
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true
|
||||
},
|
||||
"translation.x": 0.0,
|
||||
"translation.y": 0.0,
|
||||
"zoom_level": 1.0
|
||||
},
|
||||
"type": "text"
|
||||
},
|
||||
{
|
||||
"buffer": 1,
|
||||
"file": "sites/all/themes/gui/materiobasetheme/less/styles.less",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 1269,
|
||||
"regions":
|
||||
{
|
||||
},
|
||||
"selection":
|
||||
[
|
||||
[
|
||||
422,
|
||||
422
|
||||
]
|
||||
],
|
||||
"settings":
|
||||
{
|
||||
"buffer_scroll_name": "9ad02ee5",
|
||||
"incomplete_sync": null,
|
||||
"remote_loading": false,
|
||||
"synced": false,
|
||||
"syntax": "Packages/LESS/LESS.tmLanguage",
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true
|
||||
},
|
||||
"translation.x": 0.0,
|
||||
"translation.y": 0.0,
|
||||
"zoom_level": 1.0
|
||||
},
|
||||
"type": "text"
|
||||
},
|
||||
{
|
||||
"buffer": 2,
|
||||
"file": "sites/all/modules/gui/materiobasemod/materio_search_api_ajax.module",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 1075,
|
||||
"regions":
|
||||
{
|
||||
},
|
||||
"selection":
|
||||
[
|
||||
[
|
||||
487,
|
||||
487
|
||||
]
|
||||
],
|
||||
"settings":
|
||||
{
|
||||
"buffer_scroll_name": "7c9ae530",
|
||||
"incomplete_sync": null,
|
||||
"remote_loading": false,
|
||||
"synced": false,
|
||||
"syntax": "Packages/HTML/HTML.tmLanguage",
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true
|
||||
},
|
||||
"translation.x": 0.0,
|
||||
"translation.y": 0.0,
|
||||
"zoom_level": 1.0
|
||||
},
|
||||
"type": "text"
|
||||
},
|
||||
{
|
||||
"buffer": 3,
|
||||
"file": "sites/all/modules/gui/materiobasemod/js/materio_search_api_ajax.js",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 3132,
|
||||
"regions":
|
||||
{
|
||||
},
|
||||
"selection":
|
||||
[
|
||||
[
|
||||
2039,
|
||||
2039
|
||||
]
|
||||
],
|
||||
"settings":
|
||||
{
|
||||
"buffer_scroll_name": "afdc4774",
|
||||
"incomplete_sync": null,
|
||||
"remote_loading": false,
|
||||
"synced": false,
|
||||
"syntax": "Packages/JavaScript/JavaScript.tmLanguage",
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true
|
||||
},
|
||||
"translation.x": 0.0,
|
||||
"translation.y": 768.0,
|
||||
"zoom_level": 1.0
|
||||
},
|
||||
"type": "text"
|
||||
},
|
||||
{
|
||||
"buffer": 4,
|
||||
"file": "sites/all/modules/contrib/search/search_api_page/search_api_page.pages.inc",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 8151,
|
||||
"regions":
|
||||
{
|
||||
},
|
||||
"selection":
|
||||
[
|
||||
[
|
||||
3168,
|
||||
3168
|
||||
]
|
||||
],
|
||||
"settings":
|
||||
{
|
||||
"buffer_scroll_name": "7e3a7836",
|
||||
"incomplete_sync": null,
|
||||
"remote_loading": false,
|
||||
"synced": false,
|
||||
"syntax": "Packages/HTML/HTML.tmLanguage",
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true
|
||||
},
|
||||
"translation.x": 0.0,
|
||||
"translation.y": 0.0,
|
||||
"zoom_level": 1.0
|
||||
},
|
||||
"type": "text"
|
||||
},
|
||||
{
|
||||
"buffer": 5,
|
||||
"file": "sites/all/modules/contrib/search/search_api_ajax/search_api_ajax.pages.inc",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 3972,
|
||||
"regions":
|
||||
{
|
||||
},
|
||||
"selection":
|
||||
[
|
||||
[
|
||||
2007,
|
||||
2040
|
||||
]
|
||||
],
|
||||
"settings":
|
||||
{
|
||||
"buffer_scroll_name": "b86e8334",
|
||||
"incomplete_sync": null,
|
||||
"remote_loading": false,
|
||||
"synced": false,
|
||||
"syntax": "Packages/HTML/HTML.tmLanguage",
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true
|
||||
},
|
||||
"translation.x": 0.0,
|
||||
"translation.y": 581.0,
|
||||
"zoom_level": 1.0
|
||||
},
|
||||
"type": "text"
|
||||
},
|
||||
{
|
||||
"buffer": 6,
|
||||
"file": "sites/all/modules/contrib/search/search_api_autocomplete/search_api_autocomplete.pages.inc",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 3419,
|
||||
"regions":
|
||||
{
|
||||
},
|
||||
"selection":
|
||||
[
|
||||
[
|
||||
0,
|
||||
0
|
||||
]
|
||||
],
|
||||
"settings":
|
||||
{
|
||||
"buffer_scroll_name": "72908de8",
|
||||
"incomplete_sync": null,
|
||||
"remote_loading": false,
|
||||
"synced": false,
|
||||
"syntax": "Packages/HTML/HTML.tmLanguage",
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true
|
||||
},
|
||||
"translation.x": 0.0,
|
||||
"translation.y": 615.0,
|
||||
"zoom_level": 1.0
|
||||
},
|
||||
"type": "text"
|
||||
},
|
||||
{
|
||||
"buffer": 7,
|
||||
"file": "sites/all/themes/gui/materiobasetheme/js/script.js",
|
||||
"settings":
|
||||
{
|
||||
"buffer_size": 1120,
|
||||
"regions":
|
||||
{
|
||||
},
|
||||
"selection":
|
||||
[
|
||||
[
|
||||
21,
|
||||
21
|
||||
]
|
||||
],
|
||||
"settings":
|
||||
{
|
||||
"buffer_scroll_name": "6067f9fe",
|
||||
"incomplete_sync": null,
|
||||
"remote_loading": false,
|
||||
"synced": false,
|
||||
"syntax": "Packages/JavaScript/JavaScript.tmLanguage",
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true
|
||||
},
|
||||
"translation.x": 0.0,
|
||||
"translation.y": 0.0,
|
||||
"zoom_level": 1.0
|
||||
},
|
||||
"type": "text"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"incremental_find":
|
||||
{
|
||||
"height": 0.0
|
||||
},
|
||||
"input":
|
||||
{
|
||||
"height": 35.0
|
||||
},
|
||||
"layout":
|
||||
{
|
||||
"cells":
|
||||
[
|
||||
[
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1
|
||||
]
|
||||
],
|
||||
"cols":
|
||||
[
|
||||
0.0,
|
||||
1.0
|
||||
],
|
||||
"rows":
|
||||
[
|
||||
0.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"menu_visible": true,
|
||||
"output.exec":
|
||||
{
|
||||
"height": 124.0
|
||||
},
|
||||
"output.git":
|
||||
{
|
||||
"height": 106.0
|
||||
},
|
||||
"output.sftp":
|
||||
{
|
||||
"height": 0.0
|
||||
},
|
||||
"replace":
|
||||
{
|
||||
"height": 66.0
|
||||
},
|
||||
"save_all_on_build": true,
|
||||
"select_file":
|
||||
{
|
||||
"height": 0.0,
|
||||
"selected_items":
|
||||
[
|
||||
[
|
||||
"select",
|
||||
"ac_select_event-365241-54.patch"
|
||||
],
|
||||
[
|
||||
"service",
|
||||
"sites/all/modules/contrib/search/search_api_solr/service.inc"
|
||||
],
|
||||
[
|
||||
".less",
|
||||
"sites/all/themes/gui/kadist/less/kadist.less"
|
||||
],
|
||||
[
|
||||
"progra",
|
||||
"sites/all/modules/gui/location_filter/programs.module"
|
||||
],
|
||||
[
|
||||
"font",
|
||||
"sites/all/themes/gui/kadist/less/fonts.less"
|
||||
],
|
||||
[
|
||||
"less",
|
||||
"sites/all/themes/gui/kadist/less/kadist.less"
|
||||
],
|
||||
[
|
||||
"querie",
|
||||
"sites/all/modules/gui/kadistqueries/plugins/content_types/kadistqueries_artistes_pane.inc"
|
||||
],
|
||||
[
|
||||
"kadist.less",
|
||||
"sites/all/themes/gui/kadist/less/kadist.less"
|
||||
],
|
||||
[
|
||||
"block--menu",
|
||||
"sites/all/themes/gui/kadist/templates/block--menu-bar.tpl.php"
|
||||
],
|
||||
[
|
||||
"prepro",
|
||||
"sites/all/themes/gui/kadist/preprocess/block.pre.php"
|
||||
],
|
||||
[
|
||||
"kadist.le",
|
||||
"sites/all/themes/gui/kadist/less/kadist.less"
|
||||
],
|
||||
[
|
||||
"",
|
||||
".htaccess"
|
||||
],
|
||||
[
|
||||
"preprocess",
|
||||
"sites/all/themes/gui/kadist/preprocess/search-result.pre.php"
|
||||
],
|
||||
[
|
||||
"kadis.less",
|
||||
"sites/all/themes/gui/kadist/less/kadist.less"
|
||||
]
|
||||
],
|
||||
"width": 0.0
|
||||
},
|
||||
"select_project":
|
||||
{
|
||||
"height": 500.0,
|
||||
"selected_items":
|
||||
[
|
||||
[
|
||||
"",
|
||||
"/Users/bachir/Sites/kadist.org/kadist.sublime-project"
|
||||
]
|
||||
],
|
||||
"width": 380.0
|
||||
},
|
||||
"show_minimap": true,
|
||||
"show_open_files": false,
|
||||
"show_tabs": true,
|
||||
"side_bar_visible": true,
|
||||
"side_bar_width": 357.0,
|
||||
"status_bar_visible": true
|
||||
}
|
||||
@@ -114,6 +114,7 @@ Drupal.jsAC.prototype.onkeyup = function (input, e) {
|
||||
*/
|
||||
Drupal.jsAC.prototype.select = function (node) {
|
||||
this.input.value = $(node).data('autocompleteValue');
|
||||
$(this.input).trigger('autocompleteSelect', [node]);
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -167,7 +168,7 @@ Drupal.jsAC.prototype.unhighlight = function (node) {
|
||||
Drupal.jsAC.prototype.hidePopup = function (keycode) {
|
||||
// Select item if the right key or mousebutton was pressed.
|
||||
if (this.selected && ((keycode && keycode != 46 && keycode != 8 && keycode != 27) || !keycode)) {
|
||||
this.input.value = $(this.selected).data('autocompleteValue');
|
||||
this.select(this.selected);
|
||||
}
|
||||
// Hide popup.
|
||||
var popup = this.popup;
|
||||
@@ -220,7 +221,7 @@ Drupal.jsAC.prototype.found = function (matches) {
|
||||
for (key in matches) {
|
||||
$('<li></li>')
|
||||
.html($('<div></div>').html(matches[key]))
|
||||
.mousedown(function () { ac.select(this); })
|
||||
.mousedown(function () { ac.hidePopup(this); })
|
||||
.mouseover(function () { ac.highlight(this); })
|
||||
.mouseout(function () { ac.unhighlight(this); })
|
||||
.data('autocompleteValue', key)
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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.');
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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')) . '"/>
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
+3
-3
@@ -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"
|
||||
|
||||
|
||||
+3
-3
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user