MamboWiki
    Not bad, but here are some suggestions..., February 18, 2007 |
2 of 2 people find this review helpful:
After initial install, everything seems fine. Haven't yet tested with different user permissions (editing vs viewing with public and registered users)...
I would agree with other comments about the iFrame stuff. It would be much nicer if it were better integrated in Joomla - many other components have managed this!
With the Wiki being in an iFrame, it's slightly inconvenient to link to pages in the rest of my Joomla site. All links appear in the iFrame, rather than in _top. So, I wrote this quick hack:
1) Edit joomla_root/components/com_mambowiki/includes/Linker.php
2) Find function getExternalLinkAttributes
3) Add this:
if (preg_match('/some_url_part_unique_to_my_site/i', $link)) $r .= " target=\"_top\""; else $r .= " target=\"_blank\"";
Before the line:
$r .= " title=\"{$link}\"";
4) Change some_url_part_unique_to_my_site to something which is unique to your site - let's say you ran yahoo.com, you could set it as: '/yahoo/i'
This will make all links to your site appear in _top, and links to all other external sites in _blank (new window/tab).
Andrew
|
|