From: Dan F. <dfr...@cs...> - 2005-01-11 15:44:25
|
James Grimwood wrote: >Hello > >I've got PHPWiki running on my website. It's accessable by clicking on >a link on my website's main page. > >Is there a way I can grab the contents of the RecentChanges in my wiki >and show that on my main page too? Just as straight text with links, >not as a browser sidepanel or embedded in a frame? What I'm trying to >make is a little sidepanel in my website's main page that shows what's >recently changed in my wiki, in a similar way to SourceForge's "most >active" panel on their main page. > >I don't mind poking around in the code and manually constructing glue >to call PHPWiki functions, but a few pointers about where to start >would be nice :-) > > I'm not exactly sure what you want, but can't you just call the RecentChanges plugin on your HomePage directly? If you go to the "RecentChanges" page, and click "View source" you'll see the plugin invocation. Here's mine: <?plugin RecentChanges days||=7 daylist=1,3,7,30,90, 0 ?> Just put this text somewhere in your HomePage. Or does that put it in a frame or something? Dan |