This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit 03fecfb85c930b820f6b52753362263c19616a27 | |
| Author: Jimmy Berry <jimmy@boombatower.com> | |
| Date: Fri Feb 25 17:03:15 2011 -0600 | |
| Provide group_by functionality in base field_handler. | |
| diff --git handlers/views_handler_field.inc handlers/views_handler_field.inc | |
| index bae45fc..c237e20 100644 | |
| --- handlers/views_handler_field.inc | |
| +++ handlers/views_handler_field.inc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * On Git migration day we have to clean out the existing tests of | |
| * testable branches so they can be tested again. The ones that will already be | |
| * there on QA are all not testable. | |
| * | |
| * This is a translation of the pseudocode in | |
| * http://drupal.org/node/1057146#comment-4073288 | |
| * | |
| * It seems to work, and if I'm not mistaken it won't do any damage, but would |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: includes/install.inc | |
| =================================================================== | |
| RCS file: /cvs/drupal/drupal/includes/install.inc,v | |
| retrieving revision 1.152 | |
| diff -u -r1.152 includes/install.inc | |
| --- includes/install.inc 2 Jan 2011 17:23:20 -0000 1.152 | |
| +++ includes/install.inc 17 Feb 2011 07:19:46 -0000 | |
| @@ -35,6 +35,7 @@ | |
| * File permission check -- File exists. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- drush_make.download.inc.orig 2010-11-21 15:25:50.000000000 -0800 | |
| +++ drush_make.download.inc 2011-01-14 14:00:35.046868916 -0800 | |
| @@ -2,6 +2,14 @@ | |
| // $Id: drush_make.download.inc,v 1.1.2.99 2010/11/21 23:25:50 dmitrig01 Exp $ | |
| function drush_make_download_factory($name, $download, $download_location) { | |
| + static $done; | |
| + $type = $download['type']; | |
| + $done[$name][] = $type; | |
| + if ((count($done[$name]) > 1 && $name != 'awssdk') || (count($done[$name]) > 2 && $name == 'awssdk')) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git reinstall.php reinstall.php | |
| new file mode 100644 | |
| --- /dev/null | |
| +++ reinstall.php | |
| @@ -0,0 +1,15 @@ | |
| +<?php | |
| +define('DRUPAL_ROOT', getcwd()); | |
| + | |
| +require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; | |
| +$profile = array_pop(explode('/', conf_path())); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: includes/database/mysql/schema.inc | |
| =================================================================== | |
| RCS file: /cvs/drupal/drupal/includes/database/mysql/schema.inc,v | |
| retrieving revision 1.44 | |
| diff -u -p -r1.44 schema.inc | |
| --- includes/database/mysql/schema.inc 8 Dec 2010 06:38:59 -0000 1.44 | |
| +++ includes/database/mysql/schema.inc 25 Jan 2011 05:40:55 -0000 | |
| @@ -81,7 +81,7 @@ class DatabaseSchema_mysql extends Datab | |
| // Provide defaults if needed. |
NewerOlder