Submitted by clemens on Mon, 2011/11/07 - 9:44am
Can you tell the field display weights of all your entities with one command? Or edit a node through the command-line?
drush --yaml entity-type-read node --fields=**/display/**/weight --include-fieldapi
drush entity-update node 12 --json
Watch the video on http://www.youtube.com/watch?v=cVGZzWjdDh8 and get convinced you want to know more of these entity internals.
Submitted by clemens on Thu, 2011/08/11 - 5:03pm
Following along the git migration and project cannot be grepped anymore I brewed the following code.
It assumes the gits are already cloned and placed is one common directory.
After running the script all repositories with a $major == 7 branch are set into the highest version.
I'm puzzling how to 'empty' the non $major compatible repos.
The fun part is now doing analysis on the tree
find . -name "*.info" -exec grep -H "^dependencies" {} \; > dependencies-7.x.txt
which shows some new dependency types
Submitted by clemens on Fri, 2011/07/22 - 1:36pm
Sooo ... I've finally upgraded my own site. I thought it would be easy. A simple drupal site only using images. And yes I'm not reading READMEs that often. I trust drush somehow to handle this for me. But drush only sooth the 'pain'.
This blog contains my bash script which does some staging from production onto my laptop where I update the site to the latest D6 then upgrade to D7. The script is generic enough to adapt for other upgrades.
Submitted by clemens on Sun, 2011/07/17 - 2:44pm
On http://drupal.org/node/686938 people are reporting a lot sloppy reports of error lines. The issue is about
Undefined index: [xyz] in line ...
But what are the names of the failing indexes?
jQuery has a nice grep so lets use it.
Submitted by clemens on Mon, 2011/05/23 - 12:20pm
Make sure you have your drush aliases file setup properly. Below a snippet from my b2b.aliases.drushrc.php
$aliases['dev'] = array(
'uri' => 'http://build2be.dev',
'root' => '/Users/clemens/Sites/build2be.dev/www/',
'path-aliases' => array(
'%dump-dir' => '/Users/clemens/Sites/build2be.dev/store',
'%files' => '/Users/clemens/Sites/build2be.dev/www/sites/build2be.dev/files',
),
);
Now we can run
drush rsync @b2b.prd @b2b.dev
Submitted by clemens on Wed, 2011/04/13 - 10:40am
I'm working on a patch to implement issue triage for Dreditor
But for ease of use and teasing in testers git issue branches would be great which are underways.
So in the mean time I use a sandbox for this. But how to get dreditor code into my repo?
- First create a sandbox on d.o. This gives to access to a new git repo.
- Ignore the initial git instructions
- Clone dreditor according the git instructions
git clone http://git.drupal.org/project/dreditor.git
Submitted by clemens on Sat, 2011/03/12 - 2:56pm
For a drupal 6 site I needed a node edit overlay. This is what I did.
Define the urls ajax/node/%node/edit and nojs/node/%node/edit. The idea is to use path similar to the normal drupal paths just prepended with what ctools modal needs. It needs are minor in that the url path must contain a string nojs and in this case a class attribute ctools-use-modal.
<?php
function annotate_ym_menu() {
$items['nojs/node/%node/%'] = array(
'page callback' => 'annotate_ym_ajax_node',
'page arguments' => array(0, 2, 3),
Submitted by clemens on Sun, 2011/01/16 - 6:28pm
I recently discovered the site http://universalsubtitles.org which is a gateway to online video material and allows us to subtitle online videos.
In the past I tried to do something similar with http://mycaptions.org (offline) with an arcane editor using BUedit. With that system I managed to add subtitles to this video of which I like the animal.
Submitted by clemens on Tue, 2010/06/15 - 10:35am
We needed to protect our production site from prying eyes for a while with a basic authentication. Using apache basic auth settings seemed not enough. Or actually was too much. We wanted the theme to blend in. So these files were not supposed to get protected. Only our Drupal pages should.
The solution came from http://php.net/manual/en/features.http-auth.php. Adding the following to sites/default/settings.php makes the customer happy and drush too.
Pages