I'm working on a module called Community Tags based off RobRoy's fine work with Tagadelic module. I saw all these kick-butt API functions like tagadelic_build_weighted_tags which allowed me to write a theme function that was just:

function theme_community_tags_node($nid) {
  $result = db_query("big fancy query", $nid);
  $weighted_tags = tagadelic_build_weighted_tags($result);
  $sorted_tags = tagadelic_sort_tags($weighted_tags);
  return theme('tagadelic_weighted', $sorted_tags);
}

The problem? Those fancy functions are only in the HEAD version of Tagadelic. :( And I imagine any day now that might turn into the 5.0 version which will horribly break 4.7 sites, so I'd rather not deploy it. ;)

Do you need help testing, or is there anything else I can do to help this along?

Comments

Bèr Kessels’s picture

re: 4.7 vs 5.0. I have patches that make tagadelic 5.0-ready, but I don't want to apply these, nutill I have "any" kind of way to release a tagadelic 4.7.1, wich will be tagadelic in its current state (plus, maybe an additional permissions patch, depending on the work done for that.).

So: I will do everythingwithin my mind to at least release a 4.7 tagadelic with all the cool new apis and stuff. If Drupal's project system is not ready in time, I will use my own SVN for this. I have that prepared, so that, incase of 'emergency' I can release a 4.7.1 from there.

webchick’s picture

Status: Active » Fixed

Ok. Waiting for new release system. :) Thanks, Ber!

Anonymous’s picture

Status: Fixed » Closed (fixed)