Title / Description
Code diff releases/20141110153742/CHANGELOG.txt releases/20141110163302/CHANGELOG.txt 1a2,201 > Drupal 7.33, 2014-11-07 > ----------------------- > - Began storing the file modification time of each module and theme in the > {system} database table so that contributed modules can use it to identify > recently changed modules and themes (minor data structure change to the > return value of system_get_info() and other related functions). > - Added a "Did you mean?" feature to the run-tests.sh script for running > automated tests from the command line, to help developers who are attempting > to run a particular test class or group. > - Changed the date format used in various HTTP headers output by Drupal core > from RFC 1123 format to RFC 7231 format. > - Added a "block_cache_bypass_node_grants" variable to allow sites which have > node access modules enabled to use the block cache if desired (API addition). > - Made image derivative generation HTTP requests return a 404 error (rather > than a 500 error) when the source image does not exist. > - Fixed a bug which caused user pictures to be removed from the user object > after saving, and resulted in data loss if the user account was subsequently > re-saved. > - Fixed a bug in which field_has_data() did not return TRUE for fields that > only had data in older entity revisions, leading to loss of the field's data > when the field configuration was edited. > - Fixed a bug which caused the Ajax progress throbber to appear misaligned in > many situatons (minor styling change). > - Prevented the Bartik theme from lower-casing the "Permalink" link on > comments, for improved multilingual support (minor UI change). > - Added a "preferred_menu_links" tag to the database query that is used by > menu_link_get_preferred() to find the preferred menu link for a given path, > to make it easier to alter. > - Increased the maximum allowed length of block titles to 255 characters > (database schema change to the {block} table). > - Removed the Field module's field_modules_uninstalled() function, since it did > not do anything when it was invoked. > - Added a "theme_hook_original" variable to templates and theme functions and > an optional sitewide theme debug mode, to provide contextual information in > the page's HTML to theme developers. The theme debug mode is based on the one > used with Twig in Drupal 8 and can be accessed by setting the "theme_debug" > variable to TRUE (API addition). > - Added an entity_view_mode_prepare() API function to allow entity-defining > modules to properly invoke hook_entity_view_mode_alter(), and used it > throughout Drupal core to fix bugs with the invocation of that hook (API > change: https://www.drupal.org/node/2369141). > - Security improvement: Made the database API's orderBy() method sanitize the > sort direction ("ASC" or "DESC") for queries built with db_select(), so that > calling code does not have to. > - Changed the RDF module to consistently output RDF metadata for nodes and > comments near where the node is rendered in the HTML (minor markup and data > structure change). > - Added an HTML class to RDFa metatags throughout Drupal to prevent them from > accidentally affecting the site appearance (minor markup change). > - Fixed a bug in the Unicode requirements check which prevented installing > Drupal on PHP 5.6. > - Fixed a bug which caused drupal_get_bootstrap_phase() to abort the bootstrap > when called early in the page request. > - Renamed the "Search result" view mode to "Search result highlighting input" > to better reflect how it is used (UI change). > - Improved database queries generated by EntityFieldQuery in the case where > delta or language condition groups are used, to reduce the number of INNER > JOINs (this is a minor data structure change affecting code which implements > hook_query_alter() on these queries). > - Removed special-case behavior for file uploads which allowed user #1 to > bypass maximum file size and user quota limits. > - Numerous small bug fixes. > - Numerous API documentation improvements. > - Additional automated test coverage. > > Drupal 7.32, 2014-10-15 > ---------------------- > - Fixed security issues (SQL injection). See SA-CORE-2014-005. > > Drupal 7.31, 2014-08-06 > ---------------------- > - Fixed security issues (denial of service). See SA-CORE-2014-004. > > Drupal 7.30, 2014-07-24 > ----------------------- > - Fixed a regression introduced in Drupal 7.29 that caused files or images > attached to taxonomy terms to be deleted when the taxonomy term was edited > and resaved (and other related bugs with contributed and custom modules). > - Added a warning on the permissions page to recommend restricting access to > the "View site reports" permission to trusted administrators. See > DRUPAL-PSA-2014-002. > - Numerous API documentation improvements. > - Additional automated test coverage. > > Drupal 7.29, 2014-07-16 > ---------------------- > - Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-003. > > Drupal 7.28, 2014-05-08 > ----------------------- > - Fixed a regression introduced in Drupal 7.27 that caused JavaScript to break > on older browsers (such as Internet Explorer 8 and earlier) when Ajax was > used. > - Increased the timeout used by the Update Manager module when it fetches data > from drupal.org (from 5 seconds to 30 seconds), to work around a problem > which causes incomplete information about security updates to be presented to > site administrators. This fix may lead to a performance slowdown on the > Update Manager administration pages, when installing Drupal distributions, > and (for sites that use the automated cron feature) on occasional page loads > by site visitors. > - Fixed the behavior of the token system's "[node:summary]" token when the body > field does not have a manual summary. > - Changed the behavior of db_query_temporary() so that it works on SELECT > queries even when they have leading comments/whitespace. A side effect of > this fix is that db_query_temporary() will now fail with an error if it is > ever used on non-SELECT queries. > - Added a "node_admin_filter" tag to the database query used to build the list > of nodes on the content administration page, to make it easier to alter. > - Made the cron queue system log any exceptions that are thrown while an item > in the queue is being processed, rather than stopping the entire PHP request. > - Improved screen reader support by adding an aria-live HTML attribute to file > upload fields when there is an error uploading the file (minor markup > change). > - Made the pager on the Tracker module listing pages show the same number of > items as other pagers throughout Drupal core (minor UI change). > - Fixed a bug which caused caches not to be properly cleared when a file entity > was saved or deleted. > - Added several missing countries to the default list returned by > country_get_list() (string change). > - Replaced the term "weight" with "influence" in the content ranking settings > for search, and added help text for administrators (string change). > - Fixed untranslatable text strings in the administrative interface for the > "Crop" effect provided by the Image module (minor string change). > - Fixed a bug in the Taxonomy module update function introduced in Drupal 7.26 > that caused memory and CPU problems on sites with very large numbers of > unpublished nodes. > - Numerous small bug fixes. > - Numerous API documentation improvements. > - Additional automated test coverage. > > Drupal 7.27, 2014-04-16 > ---------------------- > - Fixed security issues (information disclosure). See SA-CORE-2014-002. > > Drupal 7.26, 2014-01-15 > ---------------------- > - Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-001. > > Drupal 7.25, 2014-01-02 > ----------------------- > - Fixed a bug in node_save() which prevented the saved node from being updated > in hook_node_insert() and other similar hooks. > - Added a meta tag to install.php to prevent it from being indexed by search > engines even when Drupal is installed in a subfolder (minor markup change). > - Fixed a bug in the database API that caused frequent deadlock errors when > running merge queries on some servers. > - Performance improvement: Prevented block rehashing from writing blocks to the > database on every cache clear and cron run when the blocks have not changed. > This fix results in an extra 'saved' key which is added and set to TRUE for > each block returned by _block_rehash() that actually is saved to the database > (data structure change). > - Added an optional 'skip on cron' parameter to hook_cron_queue_info() to allow > queues to avoid being automatically processed on cron runs (API addition). > - Fixed a bug which caused hook_block_view_MODULE_DELTA_alter() to never be > invoked if the block delta had a hyphen in it. To implement the hook when the > block delta has a hyphen, modules should now replace hyphens with underscores > when constructing the function name for the hook implementation. > - Fixed a bug which caused cached pages to sometimes be sent to the browser > with incorrect compression. The fix adds a new 'page_compressed' key to the > $cache->data array returned by drupal_page_get_cache() (minor data structure > change). > - Fixed broken tests on PHP 5.5. > - Made the File and Image modules more robust when saving entities that have > deleted files attached. The code in file_field_presave() will now remove the > record of the deleted file from the entity before saving (minor data > structure change). > - Standardized menu callback functions throughout Drupal core to return > MENU_NOT_FOUND and MENU_ACCESS_DENIED rather than printing their own "page > not found" or "access denied" pages (minor API change in the return value of > these functions under some circumstances). > - Fixed a bug in which caches were not properly cleared when a node was deleted > via the administrative interface. > - Changed the Bartik theme to render content contained in <pre>, <code> and > similar tags in a larger font size, so it is easier to read. > - Fixed a bug in the Search module that caused exceptions to be thrown during > searches if the server was not configured to represent decimal points as a > period. > - Fixed a regression in the Image module that made image_style_url() not work > when a relative path (rather than a complete file URI) was passed to it. > - Added an optional feature to the Statistics module to allow node views to be > tracked by Ajax requests rather than during the server-side generation of the > page. This allows the node counter to work on sites that use external page > caches (string change and new administrative option: > https://drupal.org/node/2164069). > - Added a link to the drupal.org documentation page for cron to the Cron > settings page (string change). > - Added a 'drupal_anonymous_user_object' variable to allow the anonymous user > object returned by drupal_anonymous_user() to be overridden with a classed > object (API addition). > - Changed the database API to allow inserts based on a SELECT * query to work > correctly. > - Changed the database schema of the {file_managed} table to allow Drupal to > manage files larger than 4 GB. > - Changed the File module's hook_field_load() implementation to prevent file > entity properties which have the same name as file or image field properties > from overwriting the field properties (minor API change). > - Numerous small bug fixes. > - Numerous API documentation improvements. > - Additional automated test coverage. > diff releases/20141110153742/COPYRIGHT.txt releases/20141110163302/COPYRIGHT.txt 1c1 < All Drupal code is Copyright 2001 - 2012 by the original authors. --- > All Drupal code is Copyright 2001 - 2013 by the original authors. diff releases/20141110153742/.gitignore releases/20141110163302/.gitignore 2c2 < sites/default/settings.php --- > sites/*/settings*.php diff releases/20141110153742/.htaccess releases/20141110163302/.htaccess 142,150d141 < < <IfModule mod_rewrite.c> < Options +FollowSymLinks < RewriteEngine On < RewriteCond %{HTTP_HOST} ^bambouseraie.com$ [NC] < RewriteRule ^(.*)$ http://www.bambouseraie.com/$1 [R=301,L] < </IfModule> < < Les sous-répertoires releases/20141110153742/includes et releases/20141110163302/includes sont identiques. diff releases/20141110153742/INSTALL.mysql.txt releases/20141110163302/INSTALL.mysql.txt 23,24c23,24 < GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER < ON databasename.* --- > GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, > CREATE TEMPORARY TABLES ON databasename.* 27c27 < where --- > where: 30c30,31 < 'username@localhost' is the username of your MySQL account --- > 'username' is the username of your MySQL account > 'localhost' is the web server host where Drupal is installed 33,34c34,37 < Note: Unless your database user has all of the privileges listed above, you will < not be able to run Drupal. --- > Note: Unless the database user/host combination for your Drupal installation > has all of the privileges listed above (except possibly CREATE TEMPORARY TABLES, > which is currently only used by Drupal core automated tests and some > contributed modules), you will not be able to install or run Drupal. diff releases/20141110153742/INSTALL.txt releases/20141110163302/INSTALL.txt 22a23,24 > - Percona Server 5.1.70 (or greater) (http://www.percona.com/). Percona > Server is a backwards-compatible replacement for MySQL. diff releases/20141110153742/MAINTAINERS.txt releases/20141110163302/MAINTAINERS.txt 142,144d141 < Security < - Greg Knaddison 'greggles' http://drupal.org/user/36762 < 155a153,166 > > > Security team > ----------------- > > To report a security issue, see: https://drupal.org/security-team/report-issue > > The Drupal security team provides Security Advisories for vulnerabilities, > assists developers in resolving security issues, and provides security > documentation. See http://drupal.org/security-team for more information. The > security team lead is: > > - Michael Hess 'mlhess' https://drupal.org/user/102818 > Les sous-répertoires releases/20141110153742/misc et releases/20141110163302/misc sont identiques. Les sous-répertoires releases/20141110153742/modules et releases/20141110163302/modules sont identiques. Les sous-répertoires releases/20141110153742/profiles et releases/20141110163302/profiles sont identiques. diff releases/20141110153742/README.txt releases/20141110163302/README.txt 74,79c74,79 < * Read about the difference between installation profiles and distributions: < http://drupal.org/node/1089736 < * Download contributed installation profiles and distributions: < http://drupal.org/project/distributions < * Develop your own installation profile or distribution: < http://drupal.org/developing/distributions --- > * Read about the difference between installation profiles and distributions: > http://drupal.org/node/1089736 > * Download contributed installation profiles and distributions: > http://drupal.org/project/distributions > * Develop your own installation profile or distribution: > http://drupal.org/developing/distributions diff releases/20141110153742/robots.txt releases/20141110163302/robots.txt 14c14 < # http://www.robotstxt.org/wc/robots.html --- > # http://www.robotstxt.org/robotstxt.html 17c17 < # http://www.sxw.org.uk/computing/robots/check.html --- > # http://www.frobee.com/robots-txt-check 61,62d60 < < Sitemap: http://bambouseraie.com/sitemap.xml Les sous-répertoires releases/20141110153742/scripts et releases/20141110163302/scripts sont identiques. Les sous-répertoires releases/20141110153742/sites et releases/20141110163302/sites sont identiques. Les sous-répertoires releases/20141110153742/themes et releases/20141110163302/themes sont identiques. diff releases/20141110153742/update.php releases/20141110163302/update.php 181c181,182 < list($module, $version) = array_pop(reset($_SESSION['updates_remaining'])); --- > $updates_remaining = reset($_SESSION['updates_remaining']); > list($module, $version) = array_pop($updates_remaining);
Author
Highlight as C C++ CSS Clojure Delphi ERb Groovy (beta) HAML HTML JSON Java JavaScript PHP Plain text Python Ruby SQL XML YAML diff code