Tag: drupal

Here you can see a listing of all the posts tagged with drupal on this website.

  • Sandbox: Daily Ma.golia repository and Trac

    Posted on Feb. 28, 2007 at 11:39 +0100 Tagged with , , ,

    For those of you interested in this kind of stuff. I've set up a small Mercurial repository and a Trac site for my little Ma.gnolia module for Drupal 5.x. Please remember that the code so far is very alpha and therefor there is no real guarantee that it won't change at any time in the future esp. since there are still tons of things missing from it ;-) So for only the whole theming stuff looks done to me.

    [more ...]

    0 comments

  • Sandbox: Daily Ma.gnolia for Drupal 5.x

    Posted on Feb. 23, 2007 at 12:08 +0100 Tagged with , , , ,

    It's been a little bit quiet here for the last couple of days. This is mostly because of the exam I had today and I needed to learn quite a lot for it. Other factors were Okami for the PS2 and a small module I'm currently writing on which I want to present here :-)

    First of all, what is this module all about? It's a tool that will integrate into Drupal's cronjob mechanism, fetch your recent bookmarks from the social bookmarking site Ma.gnolia and post them as new nodes on a Drupal site. A few of the features and limitations are now listed below:

    [more ...]

    0 comments

  • Adding a pdf class to a PDF link with Drupal

    Posted on Feb. 5, 2007 at 17:16 +0100 Tagged with , , , ,

    Yesterday, during the Drupal presentation (Barcamp Kärnten 07) I think it was Maria Putzhuber who asked a question regarding specifically styling links pointing to for example PDF documents by adding a specific class to these links.

    [more ...]

    0 comments

  • Hints: Disabling pathauto for nodes

    Posted on Jan. 16, 2007 at 21:46 +0100 Tagged with ,

    As you might have noticed, I'm using pathauto here for the tag URLs. The problem is, though, that I really want to use pathauto only for the taxonomy and not also for the nodes :)

    Empty all the pattern fields

    [more ...]

    0 comments

  • Drupal 5.0 released

    Posted on Jan. 15, 2007 at 14:53 +0100 Tagged with

    w00t! And now to the bad part of the whole matter: Bad timing ;-) I would love to update zerokspot.com ASAP but thanks to a quite tight schedule for the rest of January, it might take a little bit longer than I'd like it to.

    [more ...]

    2 comments

  • Drupal 5 around the corner

    Posted on Jan. 8, 2007 at 19:02 +0100 Tagged with

    At least it seems this way according to this mail by Dries Buytaert. And even if there will be an RC3, I can't wait to update this site to Drupal 5 after all I've seen on gamerslog.com so far.

    [more ...]

    0 comments

  • Drupal 4.7.5 and 4.6.11 released

    Posted on Jan. 5, 2007 at 09:40 +0100 Tagged with

    Update time again :-) The Drupal team released version 4.7.5 and 4.6.11 of their CMS while I was asleep. Both are security fixes, so it's highly recommended to update ASAP.

    [more ...]

    0 comments

  • Options

    Posted on Dec. 18, 2006 at 00:14 +0100 Tagged with , , ,

    Well, back from inactivity ... at least I hope so. Finally Xmas holidays so I really might find the time to do something else but work for university stuff (although there is enough to do on that front as well). I guess half of my free time will be spent on playing games like "Burnout Revenge" or "Viva Pinata" for the Xbox360. But I guess I will keep the rest to do some work with Ruby On Rails.

    For the last couple of months I've been scouting a little bit around to find the web-framework that fits my needs the most. Well, I guess, something like this doesn't really exist. I've done a little bit with Django and now I've finally some useful web-project to work on again and I will use this opportunity and write the same page in Django and Ruby On Rails (and perhaps also in Symfony).

    [more ...]

    1 comment

  • Theming primary links in Drupal 5.0

    Posted on Nov. 24, 2006 at 15:32 +0100 Tagged with , , ,

    I'm currently in the process of porting over the theme here to Drupal 5.0 and noticed a slight difference between 4.7 and 5.0. While I was able to use something like this in my template.php before:

       function mytheme_menu_item_link($item, $link_item) {
           static $menu;
           $attribs = isset($item['description']) ? 
               array('title' => $item['description']) : array();
           if ('<front>' == $link_item['path'] &&
               (
                   arg(0)=='node' && (
                       (is_numeric(arg(1)) && arg(1) != 213)
                       || arg(1)==''
                   )
               )
           ){
               $attribs['class'] = 'active';
           }
           return l($item['title'], $link_item['path'], $attribs);
       }
       

    [more ...]

    0 comments

  • On my way to port some more ...

    Posted on Nov. 4, 2006 at 02:16 +0100 Tagged with , ,

    As I've written on Thursday, I've started porting the custom modules I've written for zerokspot.com in order to move ASAP over to Drupal 5.0 as soon as there is an RC out there. My main motivation behind this is the integration of jQuery into Drupal core, which should make some of the hacks I had to perform quite obsolete :)

    To make this transition possible I also had to one "foreign" modules which are still <= 4.7 only in the Drupal repository. I guess when I'm done with all that, quite a few will have also entered this list. Probably the biggest fish in the pond will be the Akismet module which I'll probably not dare to touch :-) I just hope that Markus finds some time updating it before RC1 hits or at least before Drupal 5.0 final is released :)

    [more ...]

    0 comments