Submitted by clemens on Fri, 2012/05/18 - 4:59pm
Submitted by clemens on Thu, 2012/05/17 - 4:09pm
One of the goals of Drupal 8 Multilingual Inititive is to refactor Gettext file handling by a component. The first effort was Make gettext .po generation its own abstracted functionality by Gábor Hojtsy, Sutharsan, fubhy, sun and clemens.tolboom
While I (clemens.tolboom) was working on that issue I skimmed over the Translation component delivered by Symfony to see whether we could match their architecture (why reinvent components?) or even take over their components.
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 Fri, 2011/10/14 - 11:48am
Yesterday I ordered The definitive Guide to Drupal from the dutch online site comcol.nl. Awesome delivery.
I have to read the monster 1047 pages but decided to cut it two pieces as that split version is allowed on my desk.
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/08/05 - 1:09pm
By creating a php file named ~/.drush/content.drush.inc containing
<?php
/**
* @file
*/
/**
* Implementation of hook_drush_command().
*/
function content_drush_command() {
$items = array();
Submitted by clemens on Wed, 2011/08/03 - 4:56pm
Trying some Drupal 5 sites for upgrade script development on desktop PHP 5.3 I ran on *.info files causing annoyances.
Submitted by clemens on Fri, 2011/07/22 - 2:47pm
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.
Pages