Skip to content

Instantly share code, notes, and snippets.

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.
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()));
--- 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')) {
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.
*/
<?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
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
diff --git plugins/views_plugin_display_page.inc plugins/views_plugin_display_page.inc
index 85f5bf9..8995167 100644
--- plugins/views_plugin_display_page.inc
+++ plugins/views_plugin_display_page.inc
@@ -54,14 +54,15 @@ class views_plugin_display_page extends views_plugin_display {
$bits = explode('/', $this->get_option('path'));
$page_arguments = array($this->view->name, $this->display->id);
- $view_arguments = $this->get_option('arguments');
+ $this->view->init_handlers();
commit a67d2577941e1b2b00fb1583e8bde4dc944794ae
Author: Jimmy Berry <jimmy@boombatower.com>
Date: Wed Apr 13 05:33:56 2011 -0500
Support libraries API.
diff --git geshifilter.admin.inc geshifilter.admin.inc
index 1ddd524..29da716 100644
--- geshifilter.admin.inc
+++ geshifilter.admin.inc
diff --git geshifilter.make geshifilter.make
new file mode 100644
index 0000000..8c05056
--- /dev/null
+++ geshifilter.make
@@ -0,0 +1,15 @@
+; Drush Make (http://drupal.org/project/drush_make)
+api = 2
+
+; Drupal core
From 1b8d30c54ee3cbdf073accad5841ce988a6cc4bf Mon Sep 17 00:00:00 2001
From: Jimmy Berry <jimmy@boombatower.com>
Date: Tue, 22 Mar 2011 16:15:33 -0500
Subject: Change theme_username() to always create a link for current user.
---
includes/theme.inc | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git includes/theme.inc includes/theme.inc