Month of January, 2008

OpenID & Yahoo!

As of yesterday all of Yahoo's esitmated 248 million users worldwide now have the means to login to any site that supports OpenID. Currently they are only an OpenID provider and not a consumer which means that you cannot login to Yahoo services using your OpenID but I'd imagine that will change sometime in the near future.

If you haven't enabled your Yahoo account for OpenID access then head over to http://openid.yahoo.com and do so.

Drupal Themes Mission Statement

In some Drupal Themes there is support for displaying the "Mission Statement" across all pages and in others this support is limited to the "Front Page" or "Main Page".

If you are ever using one of the themes with limited mission statement support and want to display the mission statement across all pages you can use this to do so.

In template.php add the following to the bottom of the file:

function _phptemplate_variables($hook, $vars = array()) {
// Make custom variables available to theme templates
switch ($hook) {
// Send new variable $custom_mission to page.tpl.php
case 'page':
$vars['custom_mission'] = variable_get('site_mission', '');
break;
}
return $vars;
}

Then in page.tpl.php change:

<?php if ($mission) { ?><?php print $mission ?><?php } ?>
to be

<?php if ($custom_mission) { ?><?php print $custom_mission ?><?php } ?>

These 2 changes should allow the "Mission Statement" to be displayed across all pages.

New Drupal 5 release

Drupal 5.7 was just released.

There are no new features in this release. Only bug fixes.

The following bugs have been fixed since the 5.6 release:

  • #208700 by pwolanin. Fix bad backport of #194579. Modified to use Form API.
  • #118569 by bevan: document how should one set RewriteBase, if under a VirtualDocumentRoot. Backport by Bart Jansens.
  • - Patch #115606 by Junyor, thesaint_02: added support for PHP 5.2's 'recoverable fatal errors'.
  • #209409 by Heine, webernet, dww: more accurate register globals value checking

Go get it here.

Site Moved

I've moved all the content off of http://fusion94.org/blog and have imported here into the Damage Studios site. It was getting tiring trying to determine where to blog and since the old site was running WordPress and I'm now doing more Drupal related work it made sense to move it into Drupal. Thanks to PathAuto and aliasing about 98% of the old urls redirect properly.

I know that there are some things not quite right but I hope to resolve these issues in the next week or so.

R.I.P Joshua Brendan Neal

another ex-va colleague ... 33 years old ... 2nd christmas in a row where an ex-va has passed on...this sucks...

God willing, It's the last time I'll say goodbye
God willing, I'll see you on the other side

Copyright 2002-2008 Damage Studios