|
BeeblebroxNetGila<< | Cookbook-V1 | >> Note: The recipes here are for PmWiki versions 0.6 and 1.0 only. For PmWiki 2.0 recipes, see Cookbook.
About
The design of BeeblebroxNetGila is based on gila by haran and RightBrain. It has some very nice virtues:
InstallationTo use BeeblebroxNetGila for your own Wiki, just download Attach:beeblebrox-gila.tar.gz, extract it into # Specifies the name of the template file to be used to generate pages. $PageTemplateFmt = 'pub/skins/beeblebrox-gila/gila.tmpl'; # The HTML code to be generated for the page logo. $PageLogoFmt = "<a href='$ScriptUrl'>Wiki<span>Title</span></a><br /> <span id='tag'>Subtitle</span>"; If you want to have a search box in the right upper corner, uncomment the following from gila.tmpl <form id="headerSearch" action='$ScriptUrl/$[Main/SearchWiki]'>
<div>
<input type='hidden' name='pagename' value='$[Main/SearchWiki]' />
<label for='searchbox'>Search</label>
<input id='searchbox' type='text' name='text' value='' />
<input class='searchbutton' type='submit' value='»' />
</div>
</form>
The skin is known to work with PmWiki 1.0.x. CSS is not 100% compatible with IE 6.x - there many differences between displaying at IE and other browsers like Firefox. You should replace keywords like "thin" with "1px" and add "td,th {font-size: 10pt}" (without td,th tables have diffent fontstyle at IE) to CSS to get nearly same results. Btw, CSS from Thom is correct, only css-engine of IE is buggy! with these minor changes, both renderengines (IE + firefox) seems to be identical. --Mazet Thank you. I added those changes to Cookbook/BeeblebroxNetGila for PmWiki 2. --thom
See Cookbook/BeeblebroxNetGila for a version of BeeblebroxNetGila for PmWiki 2.x. --thom I've added a "Back" link to the top and bottom cmds bar by adding the following... <div id="wikicmds">
<a href="javascript:history.back()">back</a> ·
<a href="$PageUrl">view</a> ·
<a href="$PageUrl?action=edit">edit</a> ·
<a href="$PageUrl?action=upload">attach</a> ·
<a href="$PageUrl?action=print" rel="external">print</a> ·
<a href="$PageUrl?action=diff">history</a>
</div>
and... <div class="footnav">
<a href="javascript:history.back()">back</a> ·
<a href="$PageUrl">view</a> ·
<a href="$PageUrl?action=edit">edit</a> ·
<a href="$PageUrl?action=upload">attach</a> ·
<a href="$PageUrl?action=print" rel="external">print</a> ·
<a href="$PageUrl?action=diff">history</a>
</div>
Nov 23, 2004 Noel This would be really nice with the tabs from the wikipedia skin. pmwiki-2.2.0-beta68 -- Last modified by {{}}?
|