<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Wikka Developer Blog</title>
	
	<link>http://blog.wikkawiki.org</link>
	<description>Fresh news from the Wikka Developer Team</description>
	<lastBuildDate>Sat, 12 Sep 2009 12:30:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/WikkaDeveloperBlog" /><feedburner:info uri="wikkadeveloperblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>How to design themes for WikkaWiki</title>
		<link>http://feedproxy.google.com/~r/WikkaDeveloperBlog/~3/24KBWPkhWPo/</link>
		<comments>http://blog.wikkawiki.org/2009/09/11/how-to-design-themes-for-wikkawiki/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 22:38:20 +0000</pubDate>
		<dc:creator>Dario</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[1.2]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.wikkawiki.org/?p=97</guid>
		<description><![CDATA[With the release of version 1.2, we introduced support for 100%-modular themes in WikkaWiki. We believe a wiki engine should not force you to use its default layout: the best wikis are those that can be modified to seamlessly run behind the scenes without betraying their presence or to match the look and feel of [...]]]></description>
			<content:encoded><![CDATA[<p>With the release of version <a href="http://docs.wikkawiki.org/WhatsNew12">1.2</a>, we introduced support for <a href="http://docs.wikkawiki.org/WikkaThemes">100%-modular themes</a> in WikkaWiki. We believe a wiki engine should not force you to use its default layout: the best wikis are those that can be modified to seamlessly run <a href="http://docs.wikkawiki.org/InvisibleWiki">behind the scenes</a> without betraying their presence or to match the <em>look and feel</em> of an existing website.</p>
<p><img alt="mozilla theme screenshot" src="http://docs.wikkawiki.org/images/themes/theme_mozilla.jpg" /><img alt="orange theme screenshot" src="http://docs.wikkawiki.org/images/themes/theme_orange.jpg" /><br />
<img alt="pivwan theme screenshot" src="http://docs.wikkawiki.org/images/themes/theme_pivwan.jpg" /><img alt="bronzino theme screenshot" src="http://docs.wikkawiki.org/images/themes/theme_bronzino.jpg" /></p>
<p>In this post we&#8217;ll guide you through the creation of a custom theme.<br />
<span id="more-97"></span></p>
<h3>Where are my themes</h3>
<p>A Wikka theme is a collection of PHP files, images, stylesheets as well as optional javascript libraries stored in a theme folder. The typical file structure of a theme folder is as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">templates/
..mytheme/
....css/
......mytheme.css
....img/
....js/
....footer.php
....header.php</pre></div></div>

<p>Core themes are stored in the <tt>templates/</tt> folder while custom themes can be found (and <a href="http://docs.wikkawiki.org/InstallingPlugins">installed</a>) in <tt>plugins/templates/</tt>. The theme selector in the user settings lists all the core and custom themes installed on a wiki.</p>
<h3>Anatomy of a theme</h3>
<p>The basic elements of a theme are the two files: <tt>header.php</tt> and <tt>footer.php</tt>. These files are used to generate the elements required for the complete XHTML output of a wiki page. </p>
<p>The <a href="http://docs.wikkawiki.org/DefaultLayout">default page output</a> is generated through the following steps:</p>
<ol>
<li><strong>the page header.</strong> <tt>header.php</tt> opens the <tt>&lt;html&gt;</tt> tag, adds all the required page metadata inside the <tt>&lt;head&gt;</tt> element (as well as loading stylesheets, javascript dependencies, favicons etc.), opens the &lt;body&gt;, the global page wrapper (<tt>&lt;div id="page"&gt;</tt>) and displays the actual page header (<tt>&lt;div id="header"&gt;</tt>), i.e. a div that typically contains the wiki name, the name of the current page, an optional logo, and the main navigation links.</li>
<li><strong>the page content.</strong> the main wiki content is then displayed, wrapped in a div called <tt>&lt;div id="content"&gt;</tt> and followed by the comments block (<tt>&lt;div id="comments"&gt;</tt>). Note that the main wiki content is controlled by the active <a href="http://docs.wikkawiki.org/HandlerInfo">handler</a>: by default Wikka calls the <tt>/show</tt> handler but this can vary as a function of the operation (e.g. <tt>/edit</tt>, <tt>/clone</tt>, <tt>/acls</tt> etc.) requested by the user.</li>
<li><strong>the page footer.</strong> <tt>footer.php</tt> finally generates the page footer (<tt>&lt;div id="footer"&gt;</tt>), a div with wiki action links, page information, copyright and license information and validation links; it then closes the page wrapper, the <tt>&lt;body&gt;</tt> and the <tt>&lt;html&gt;</tt> tags. Code required for visitor tracking services (such as Google Analytics) is also typically included in <tt>footer.php</tt></li>
</ol>
<p>It should be noted that a Wikka theme does not need to contain an actual page header or page footer: as long as the necessary XHTML elements are generated and the page layout corresponds to the appropriate selectors in the stylesheet, a theme can use all sort of possible layouts.</p>
<h3>Useful theme methods</h3>
<p>A number of core methods can be useful to dynamically embed content in a theme:</p>
<p><tt><strong>GetThemePath()</strong></tt> can be used to generate URL-rewrite-safe paths to specific theme components (e.g. stylesheets, images, favicons, JS libraries etc.), e.g.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">GetThemePath</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/css/wikka.css&quot; /&gt;
&lt;/link&gt;</pre></div></div>

<p><tt><strong>GetMethod()</strong></tt> can be used to test for the active handler, in order to generate output as a function of the currently specified action, e.g.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">GetMethod</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'revisions'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;meta name=&quot;robots&quot; content=&quot;noindex, nofollow, noarchive&quot; /&gt;'</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><tt><strong>PageTitle()</strong></tt> can be used to display the human-friendly title of the current page (i.e. the content of the highest-level heading, if available), e.g.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>title<span style="color: #339933;">&gt;&lt;</span> ?php <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">GetWakkaName</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;: &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">PageTitle</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>title<span style="color: #339933;">&gt;</span></pre></div></div>

<p>The <tt><strong>$page</strong> array can be used to access metadata of the current page, e.g.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">page</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;tag&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'SandBox'</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p> while config settings can be accessed using the </tt><tt><strong>GetConfigValue()</strong></tt> method, e.g.:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">GetConfigValue</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;hide_comments&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p><tt><strong>Href()</strong></tt> can be used to create links to a given wiki page using the specified handler, e.g.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; href=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Href</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'revisions.xml'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">tag</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot; /&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/link&gt;'</span><span style="color: #339933;">;</span></pre></div></div>

<p><tt><strong>MakeMenu()</strong></tt> can be used to generate a menu bar from the specified <a href="http://docs.wikkawiki.org/WikkaMenus">menu template file</a>, e.g.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">MakeMenu</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'main_menu'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>(we will dedicate another tutorial to menu templates)</p>
<p>Most importantly, you can use the <tt><strong>Action()</strong></tt> method to embed in a theme any of the <a href="http://docs.wikkawiki.org/UsingActions">actions</a> bundled with Wikka or installed in the <tt>plugins/actions/</tt> folder. For example you can embed a Flash object in the page footer via the following line of code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Action</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'flash url=&quot;http://example.com/example.swf&quot; width=&quot;150&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>On top of Wikka&#8217;s internal methods you can obviously use any valid PHP method, e.g. you can display the current date via PHP&#8217;s <tt>date()</tt> function:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;left&quot;</span><span style="color: #339933;">&gt;&lt;</span>span <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;noprint&quot;</span><span style="color: #339933;">&gt;&lt;</span> ?php <span style="color: #b1b100;">echo</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;l d F Y&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>span<span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<h3>The stylesheet</h3>
<p>To style the output of the page you will need to include with your theme a <strong>stylesheet</strong> with all the CSS selectors that are required to correctly render the template. The best way to make sure all the basic CSS options are included (i.e. those required by the core functionality of the wiki) is to modify the stylesheet included in the &#8220;default&#8221; template: <tt>templates/default/css/wikka.css</tt>. To control the output of Wikka using other kinds of media (e.g. a printer or mobile device) you will need to create and load the respective stylesheets.</p>
<h3>That&#8217;s all folks!</h3>
<p>These are just basic instructions to get you started with the design of a custom theme, further information can be found on the <a href="http://docs.wikkawiki.org">documentation server</a>.</p>
<p>We look forward to seeing your best creations! </p>
<img src="http://feeds.feedburner.com/~r/WikkaDeveloperBlog/~4/24KBWPkhWPo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.wikkawiki.org/2009/09/11/how-to-design-themes-for-wikkawiki/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://blog.wikkawiki.org/2009/09/11/how-to-design-themes-for-wikkawiki/</feedburner:origLink></item>
		<item>
		<title>Wikka 1.2-p1 available</title>
		<link>http://feedproxy.google.com/~r/WikkaDeveloperBlog/~3/4u_Cy9TDiT8/</link>
		<comments>http://blog.wikkawiki.org/2009/09/08/wikka-1-2-p1-available/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 15:28:46 +0000</pubDate>
		<dc:creator>Dario</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Patches]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[1.2]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://blog.wikkawiki.org/?p=93</guid>
		<description><![CDATA[A patch for WikkaWiki 1.2 (1.2-p1) has been released to fix some minor issues with the support of themes.Changes on top of 1.2 are described on this page. We recommend installing 1.2-p1 if you experienced problems displaying themes with 1.2 (users potentially affected are those running on Windows servers and Apache servers with mod_rewrite enabled).
]]></description>
			<content:encoded><![CDATA[<p>A patch for <a href="http://docs.wikkawiki.org/WhatsNew12">WikkaWiki 1.2</a> (<strong>1.2-p1</strong>) has been released to fix some <a href="http://blog.wikkawiki.org/2009/09/05/fixing-a-glitch-with-themes-and-mod_rewrite-in-1-2/">minor issues</a> with the support of <a href="http://docs.wikkawiki.org/WikkaThemes">themes</a>.<br />Changes on top of 1.2 are described on <a href="http://docs.wikkawiki.org/WikkaReleaseNotes12">this page</a>. We recommend installing 1.2-p1 if you experienced problems displaying themes with 1.2 (users potentially affected are those running on Windows servers and Apache servers with <tt>mod_rewrite</tt> enabled).</p>
<img src="http://feeds.feedburner.com/~r/WikkaDeveloperBlog/~4/4u_Cy9TDiT8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.wikkawiki.org/2009/09/08/wikka-1-2-p1-available/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.wikkawiki.org/2009/09/08/wikka-1-2-p1-available/</feedburner:origLink></item>
		<item>
		<title>Fixing a glitch with themes and mod_rewrite in 1.2</title>
		<link>http://feedproxy.google.com/~r/WikkaDeveloperBlog/~3/Vua7b6MVlRw/</link>
		<comments>http://blog.wikkawiki.org/2009/09/05/fixing-a-glitch-with-themes-and-mod_rewrite-in-1-2/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 07:38:16 +0000</pubDate>
		<dc:creator>Dario</dc:creator>
				<category><![CDATA[Support]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[1.2]]></category>
		<category><![CDATA[kubrick]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[rewrite_mode]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://blog.wikkawiki.org/?p=83</guid>
		<description><![CDATA[If your wiki runs on Apache with rewrite_mode on and depending on your server configuration, you may have noticed some glitches with the display of themes. The kubrick theme, for one, doesn&#8217;t seem to correctly load the embedded graphics. The fix is simple: rewrite rules should be disabled in the templates folder. Simply create a [...]]]></description>
			<content:encoded><![CDATA[<p>If your wiki runs on Apache with <tt><a href="http://docs.wikkawiki.org/ModRewrite">rewrite_mode</a></tt> on and depending on your server configuration, you may have noticed some glitches with the display of <a href="http://docs.wikkawiki.org/WikkaThemes">themes</a>. The <a href="http://docs.wikkawiki.org/images/themes/kubrick.jpg">kubrick theme</a>, for one, doesn&#8217;t seem to correctly load the embedded graphics. The fix is simple: rewrite rules should be disabled in the <tt>templates</tt> folder. Simply create a file with the following content and save it as <tt>templates/.htaccess</tt>:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">&lt;ifmodule mod_rewrite.c&gt;
        # turn on rewrite engine
        RewriteEngine off
&lt;/ifmodule&gt;</pre></td></tr></table></div>

<p>The graphics called by the stylesheets of the themes should now be loaded. The same fix may need to be applied to <tt>plugins/templates</tt> if you are installing custom themes.</p>
<img src="http://feeds.feedburner.com/~r/WikkaDeveloperBlog/~4/Vua7b6MVlRw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.wikkawiki.org/2009/09/05/fixing-a-glitch-with-themes-and-mod_rewrite-in-1-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.wikkawiki.org/2009/09/05/fixing-a-glitch-with-themes-and-mod_rewrite-in-1-2/</feedburner:origLink></item>
		<item>
		<title>Wikka 1.2 release: Theme support and advanced table markup</title>
		<link>http://feedproxy.google.com/~r/WikkaDeveloperBlog/~3/2DSmDrxKK50/</link>
		<comments>http://blog.wikkawiki.org/2009/09/02/wikka-1-2-release-theme-support-and-advanced-table-markup/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 14:55:58 +0000</pubDate>
		<dc:creator>Dario</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[1.2]]></category>
		<category><![CDATA[table markup]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[wikka]]></category>

		<guid isPermaLink="false">http://blog.wikkawiki.org/?p=73</guid>
		<description><![CDATA[I am proud to announce the release of WikkaWiki 1.2–possibly the most important Wikka upgrade since years.


1.2 is a major release introducing new functionality such as: support for 100%-modular themes, a completely redesigned default layout, menu templates, an advanced table markup, among other enhancements.
The full feature list is available in the release notes, but we [...]]]></description>
			<content:encoded><![CDATA[<p>I am proud to announce the release of <a href="http://docs.wikkawiki.org/WhatsNew12">WikkaWiki 1.2</a>–possibly the most important Wikka upgrade since years.</p>
<p><a href="http://docs.wikkawiki.org/WikkaThemes"><img src="http://docs.wikkawiki.org/images/features/themes.png" alt="light, the new default theme in Wikka 1.2 " /></a><a href="http://docs.wikkawiki.org/TableMarkup"><img src="http://docs.wikkawiki.org/images/features/tablemarkup.png" alt="Tormod's advanced table markup" /></a><br />
<a href="http://docs.wikkawiki.org/WikkaMenus"><img src="http://docs.wikkawiki.org/images/features/menuconfig.png" alt="Menu template files" /></a><a href="http://docs.wikkawiki.org/DefaultLayout"><img src="http://docs.wikkawiki.org/images/features/newlayout.png" alt="New default page layout" /></a></p>
<p>1.2 is a <strong>major release</strong> introducing new functionality such as: support for <strong>100%-modular themes</strong>, a completely redesigned <strong>default layout</strong>, <strong>menu templates</strong>, an <strong>advanced table markup</strong>, among other enhancements.<span id="more-73"></span></p>
<p>The full <a href="http://docs.wikkawiki.org/WikkaReleaseNotes12">feature list</a> is available in the release notes, but we will publish in the next days a series of posts to guide users through the new features of Wikka 1.2.</p>
<p>Let me thank <a href="http://wikkawiki.org/BrianKoontz">Brian</a> for his priceless work on this release, <a href="http://wikkawiki.org/TormodHaugen">Tormod</a> (who finally sees his brilliant <a href="http://docs.wikkawiki.org/TableMarkup">table markup</a> included in an official release) as well as all of our contributors that helped us fix bugs and address issues affecting previous versions over the last months.</p>
<p>Wikka 1.2 is available for download from <a href="http://docs.wikkawiki.org/WhatsNew12">this page</a>.</p>
<img src="http://feeds.feedburner.com/~r/WikkaDeveloperBlog/~4/2DSmDrxKK50" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.wikkawiki.org/2009/09/02/wikka-1-2-release-theme-support-and-advanced-table-markup/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://blog.wikkawiki.org/2009/09/02/wikka-1-2-release-theme-support-and-advanced-table-markup/</feedburner:origLink></item>
	</channel>
</rss>
