Hi, I just implemented your recipe. I am using Version 2.2.0 beta 59 with Monobook skin. The 'Discuss' tab showed up fine and linked to the '-talk' page but the talk page did not have any links back... and the tab formatting was all screwed up. This is an attempted description of the behavior that I see: 1. If the page does not have an existing -talk page, the Discuss tab opens the ?action=edit page for it, as it should. 2. While I am viewing the edit page, The Discuss tab has two outlines. Moreover, both View and Edit tabs have no links. Clicking on 'Discuss' again takes me back to the 'View' page. 3. If the page does have an existing -talk page, when I am on the main page, the Discuss tab has no hyperlink. I cannot get to the talk page. 4. If I am viewing an existing -talk page (not ?action=edit), the Discuss tab has two outlines and the View tab has no hyperlink. I cannot get to the main document from there.
I am wondering if this is conflicting with anything else that I am running. Just before I implemented the 'SimpleDiscussLink', I was using the "Comment Page Link" recipe, which seemed to be working fine. Thanks. -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of H. Fox Sent: Thursday, July 26, 2007 1:09 AM To: Ian MacGregor Cc: pmwiki-users Subject: Re: [pmwiki-users] Discuss/talk link help On 7/25/07, Ian MacGregor <[EMAIL PROTECTED]> wrote: > I'm going to go with Hagan on this as he made some good points and it works > fine as is: Now refined and improved, with its own recipe page at http://www.pmwiki.org/wiki/Cookbook/SimpleDiscussLink There's also a new section for CMS-type installations, since -Talk pages should probably be kept private. ... you can largely ensure your -Talk pages are inaccessible with if (! CondAuth($pagename, 'edit')) { $SearchPatterns['default'][] = '!-Talk$!'; if (preg_match('/-Talk$/', $pagename)) { $basename = preg_replace("/-.*\$/", '', $pagename); Redirect($basename); } } Hagan _______________________________________________ pmwiki-users mailing list [email protected] http://www.pmichaud.com/mailman/listinfo/pmwiki-users _______________________________________________ pmwiki-users mailing list [email protected] http://www.pmichaud.com/mailman/listinfo/pmwiki-users
