code

Bamboo Trac Integration Plugin

Just finished version 0.1 of my BambooTracPluginIt adds items from your Bamboo rss feed into your trac timeline.It's basically just a hacked up version of the HudsonTracPlugin but I'm still proud of it :PFeedback is welcomed, not sure how active I'll be with development though so if anyone wants to take ownership (or co-ownership) of it just let me know.

mysql schema…. finally

I know this has taken waaay to long to post. But here it is if anyone still wants it. # CREATE DATABASE voip; # USE voip; # # Table structure for table 'allocation' # # DROP TABLE IF EXISTS allocation; CREATE TABLE `allocation` ( `allocation_id` int(11) NOT NULL auto_increment, `asset_id` int(11) NOT NULL default '0', `site_id` int(11) NOT NULL default '0', `extension` int(11) NOT NULL default '0', PRIMARY KEY (`allocation_id`) ) ENGINE=MyISAM AUTO_INCREMENT=58 DEFAULT CHARSET=latin1 COLLATE...