While hacking my sandbox Habari install, I installed both Chris J. Davis Quickpost plugin as well as Matt Reads Habminbar.
Quickposts
With both these enabled, it seemed natural to try and combine the two. Doing so was suprisingly simple, and the combination works really well.
In habminbar/habminbar.plugin.php, find the following (line 92 in v0.2):
private function get_menu()
{
$bar= '';
$bar.= '';
$bar.= '';
and replace it with
private function get_menu()
{
$bar= '';
$bar.= '';
if (function_exists('action_auth_ajax_cjd_post_quickie')) {
$bar.= 'Quickpost';
}
$bar.= '';
This will add a small Quickpost button on the left hand side of the Habminbar which will bring up the Quickpost interface.
Pretty nifty:

Recent Comments
- cheers on HP Proliant ML 115 G5, Windows Server 2008 and nvstor.sys
- Rashid Amin on Windows Server 2008 as desktop/laptop OS
- Paul Valentino @sysxperts on Tape is dead, long live tape or how water can ruin your weekend
- Anonymous on Windows XP Privilege Escalation Exploit - No, it isn't.
- tsadigov on Windows Server 2008 as desktop/laptop OS
2 Comments so far
Chris J. Davis, on June 19, 2007 at 4:03pm, said:
That is very nifty. Thanks for sharing this with the rest of us.
Edit Comment
h0bbel, on June 19, 2007 at 4:10pm, said:
Well, as easy as that was it's no big deal. Wouldn't be possible without the two original plugins that you guys have created anyway.
Edit Comment