The drop is always movingYou know that saying about standing on the shoulders of giants? Drupal is standing on a huge pile of midgetsAll content management systems suck, Drupal just happens to suck less.Popular open source software is more secure than unpopular open source software, because insecure software becomes unpopular fast. [That doesn't happen for proprietary software.]Drupal makes sandwiches happen.There is a module for that

Module weights is weak and blunt

Submitted by nk on Sun, 2006-11-26 06:27

So I have written some simple code which lets you write

<?php

function poll_define_hooks() {
  $hooks['implement']['nodeapi'] = array('before' => array('forum'), 'after' => array('taxonomy'));
}
?>

This will define a directed graph. So, the code does a depth first search. This has two uses: detects cycles and orders as well. The whole code with some test code is 2K. It's in my sandbox.

Commenting on this Story is closed.

Submitted by nk on Sun, 2006-11-26 06:48.

we can use this code to detect circular depencies also, if we want to.