<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[PunBB Forums — PunBB show off]]></title>
		<link>https://punbb.informer.com/forums/</link>
		<atom:link href="https://punbb.informer.com/forums/feed/rss/forum/71/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent topics at PunBB Forums.]]></description>
		<lastBuildDate>Wed, 11 Jul 2018 06:17:53 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Development PunBB 2.0 on punbb2.ru]]></title>
			<link>https://punbb.informer.com/forums/topic/30515/development-punbb-20-on-punbb2ru/new/posts/</link>
			<description><![CDATA[<p>In April this year, it became known about the new version of punbb 2.0 on the domain <a href="http://punbb2.ru">punbb2.ru</a>.</p><p>While the raw version of the engine is available for download from GitHub</p>]]></description>
			<author><![CDATA[null@example.com (PanBB.Ru)]]></author>
			<pubDate>Wed, 11 Jul 2018 06:17:53 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/30515/development-punbb-20-on-punbb2ru/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[using punbb in commercial site]]></title>
			<link>https://punbb.informer.com/forums/topic/30243/using-punbb-in-commercial-site/new/posts/</link>
			<description><![CDATA[<p>Hi <br />Could I use punbb in commercial website? what is GNU license ? If I modified and used in proprietary software is there any problem?</p>]]></description>
			<author><![CDATA[null@example.com (lalit)]]></author>
			<pubDate>Wed, 03 May 2017 15:10:19 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/30243/using-punbb-in-commercial-site/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[[punbb.info] - Styles, Themes, Extensions]]></title>
			<link>https://punbb.informer.com/forums/topic/29531/punbbinfo-styles-themes-extensions/new/posts/</link>
			<description><![CDATA[<p>Are you looking for a new extension to be installed on your forum PunBB?</p><p>Do you have a great idea to create a new extension for PunBB?</p><p>Welcome to our [url=https://[[punbb.info]]]PunBB Forum[/url]&nbsp; &nbsp; <img src="https://punbb.informer.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (PanBB.Ru)]]></author>
			<pubDate>Sat, 25 Jul 2015 19:10:11 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/29531/punbbinfo-styles-themes-extensions/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Pottery forum]]></title>
			<link>https://punbb.informer.com/forums/topic/26427/pottery-forum/new/posts/</link>
			<description><![CDATA[<p><a href="http://forum.goncharnoe-delo.ru/">http://forum.goncharnoe-delo.ru/</a> - forum for ceramists.</p>]]></description>
			<author><![CDATA[null@example.com (gorniy)]]></author>
			<pubDate>Sun, 20 Oct 2013 16:51:49 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/26427/pottery-forum/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[punBB Evolution]]></title>
			<link>https://punbb.informer.com/forums/topic/26133/punbb-evolution/new/posts/</link>
			<description><![CDATA[<p>I got bored, so today I decided to reprogram the whole punBB from scratch. <br />Basically, it is a whole new code with the same database structure like punBB<br />This is what I have gotten so far. <em><strong>(After I finish the core functionality, I will<br />post the whole source code)</strong></em></p><p><strong>Architecture - Theme</strong><br /></p><ul><li><p>Each page consists of collection of widget.</p></li><li><p>Theme is a collection of pages</p></li></ul><p><span class="postimg"><img src="http://s14.postimg.org/6rtblmnqp/page_widget.png" alt="http://s14.postimg.org/6rtblmnqp/page_widget.png" /></span></p><p>Simplify the code for each page by breaking down logic into many small pieces of widget.<br />Each widget loads it own data and has its own interface. Its interface can be overrided by<br />theme manager.</p><p><strong>For example:</strong><br />Code for main page</p><p>index.php<br /></p><div class="codebox"><pre><code>    // Load widgets
    $template-&gt;load(&#039;main&#039;, array(
        new Widget(&#039;Header&#039;, array(
                &quot;title&quot; =&gt; &quot;punBB Evolution&quot;,
                &quot;meta_desc&quot; =&gt; &quot;This is meta description&quot;,
                &quot;meta_keyword&quot; =&gt; &quot;This is keyword&quot;
        )),
        new Widget(&#039;ForumMenu&#039;, array(&quot;selected&quot; =&gt; &quot;Index&quot;)),
        new Widget(&#039;ForumList&#039;)
    ));
    
    // Process the template and all widget inside the
    // templates
    $template-&gt;show();</code></pre></div><p>templates/default/main.php<br /></p><div class="codebox"><pre><code>&lt;!doctype html&gt;
&lt;html&gt;
    &lt;head&gt;
        &lt;link rel=&#039;stylesheet&#039; href=&#039;&lt;?php echo $template_base ?&gt;/styles.css&#039;&gt;
        &lt;?php $this-&gt;widget(&quot;Header&quot;); ?&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div id=&#039;punbb-wrap&#039;&gt;
            &lt;?php $this-&gt;widget(&quot;ForumMenu&quot;); ?&gt;
            &lt;?php $this-&gt;widget(&quot;ForumList&quot;); ?&gt;
        &lt;/div&gt;
    &lt;/body&gt;
&lt;/html&gt;</code></pre></div><p>As you can see, template (templates/default/main.php) is the one who specify the position of each widget,<br />while page (index.php) specify which widgets are needed.</p><p><em>(Continue to next post)</em></p>]]></description>
			<author><![CDATA[null@example.com (visal)]]></author>
			<pubDate>Sun, 26 May 2013 06:51:14 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/26133/punbb-evolution/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[www.dokhina.allalla.com]]></title>
			<link>https://punbb.informer.com/forums/topic/25958/wwwdokhinaallallacom/new/posts/</link>
			<description><![CDATA[<p>Wow. Nice comments. One thing, my forum is written in my own language. <a href="http://www.dokhina.allalla.com">www.dokhina.allalla.com</a></p><p><span style="color: green"><em>Splited by Trace from <a href="http://punbb.informer.com/forums/topic/25247/have-a-look-to-my-new-forum/">http://punbb.informer.com/forums/topic/ … new-forum/</a></em></span></p>]]></description>
			<author><![CDATA[null@example.com (ferd0us)]]></author>
			<pubDate>Fri, 15 Jun 2012 13:03:15 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/25958/wwwdokhinaallallacom/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[BirdsDay Forum is using PunBB]]></title>
			<link>https://punbb.informer.com/forums/topic/25912/birdsday-forum-is-using-punbb/new/posts/</link>
			<description><![CDATA[<p>Thank you for providing this easy working forum software.<br />we are at the beginning but this is one of the clearest styles we have found for a forum.</p><p>Please visit our Budgie Forum <a href="http://affility.de/birdsday/">http://affility.de/birdsday/</a>.</p>]]></description>
			<author><![CDATA[null@example.com (mikask)]]></author>
			<pubDate>Mon, 18 Mar 2013 14:30:11 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/25912/birdsday-forum-is-using-punbb/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[PunBB forum with custom skins in Chinese]]></title>
			<link>https://punbb.informer.com/forums/topic/25868/punbb-forum-with-custom-skins-in-chinese/new/posts/</link>
			<description><![CDATA[<p>The top is the Active Topics (Top 30)</p><p><a href="http://forum.ccasj.org">http://forum.ccasj.org</a></p><p>Another view of the forum:</p><p><a href="http://forum.ccasj.org/portal">http://forum.ccasj.org/portal</a></p>]]></description>
			<author><![CDATA[null@example.com (jerry2yu)]]></author>
			<pubDate>Mon, 18 Feb 2013 01:03:30 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/25868/punbb-forum-with-custom-skins-in-chinese/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Ukrainian Programming Forum]]></title>
			<link>https://punbb.informer.com/forums/topic/25425/ukrainian-programming-forum/new/posts/</link>
			<description><![CDATA[<p>Hi, I created Ukrainian Programming Forum. PunBB is a very comfortable and easy engine, so I decided to use it. Style is mine.<br />If you have any suggestions feel free to talk. Thanks. <img src="https://punbb.informer.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /><br />URL: <a href="http://replace.org.ua">http://replace.org.ua</a></p>]]></description>
			<author><![CDATA[null@example.com (leoya)]]></author>
			<pubDate>Tue, 28 Aug 2012 17:41:57 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/25425/ukrainian-programming-forum/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[THK clan]]></title>
			<link>https://punbb.informer.com/forums/topic/25252/thk-clan/new/posts/</link>
			<description><![CDATA[<p>&gt;&gt; <a href="http://www.thk-clan.com/forums">THK clan</a></p><p>A Call of Juarez game forum.</p><p>Freshly updated to PunBB 1.4.2 after a long run under 1.3, and even 1.2 before that.<br />Entirely re-themed from the Oxygen stock style, I&#039;ve also used <a href="http://somerandomdude.com/work/iconic/">Iconic</a> icons after being inspired by <a href="http://punbb.informer.com/forums/user/61300/">Kushi</a>&#039;s work.</p>]]></description>
			<author><![CDATA[null@example.com (toni0)]]></author>
			<pubDate>Mon, 11 Jun 2012 21:36:11 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/25252/thk-clan/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[host4star]]></title>
			<link>https://punbb.informer.com/forums/topic/25147/host4star/new/posts/</link>
			<description><![CDATA[<p>I own a hosting service where I offer FREE and PAID hosting.</p><br /><p>Check out the forums.</p><p><a href="http://forums.host4star.com">http://forums.host4star.com</a></p>]]></description>
			<author><![CDATA[null@example.com (dharmesh)]]></author>
			<pubDate>Mon, 30 Apr 2012 20:07:11 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/25147/host4star/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[[PunBB 1.4] Forum.Torg.su - Tyumen vegetarian forum from Russia]]></title>
			<link>https://punbb.informer.com/forums/topic/25000/punbb-14-forumtorgsu-tyumen-vegetarian-forum-from-russia/new/posts/</link>
			<description><![CDATA[<p><a href="http://forum.torg.su">http://forum.torg.su</a> - Тюменский вегетарианский форум из России (Tyumen vegetarian forum from russia).</p><p>Location: Russia, Tyumen area, Tyumen city.</p><p>Server: Linux + PHP: 5.2.17 + MySQL Improved 5.0.92.</p><p>My forums history: PunBB -&gt; FluxBB -&gt; PunBB.</p><p>Dont kill animals for food and clothing (Не убивайте животных на еду и одежду).</p><p>Welcome.</p>]]></description>
			<author><![CDATA[null@example.com (torg)]]></author>
			<pubDate>Tue, 28 Feb 2012 22:58:45 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/25000/punbb-14-forumtorgsu-tyumen-vegetarian-forum-from-russia/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[zByte]]></title>
			<link>https://punbb.informer.com/forums/topic/24993/zbyte/new/posts/</link>
			<description><![CDATA[<p>Dunno if this is the right category (i don&#039;t speak too good English, i am from Argentina)</p><p>Right, there is the details of my forum</p><p><strong>Language</strong><br />Spanish (Español)</p><p><strong>Tematic</strong><br />Sharing (<span class="bbu">not</span> adult content)</p><p><strong>URL</strong><br /><a href="http://www.zbyte.com.ar/">http://www.zbyte.com.ar/</a></p><p>It was created a few hours ago, today. My friends was amazing helping me... <img src="https://punbb.informer.com/forums/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p>]]></description>
			<author><![CDATA[null@example.com (iariel)]]></author>
			<pubDate>Sun, 26 Feb 2012 00:05:42 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/24993/zbyte/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[how to put this header in punbb forum]]></title>
			<link>https://punbb.informer.com/forums/topic/24957/how-to-put-this-header-in-punbb-forum/new/posts/</link>
			<description><![CDATA[<p>guys please help me....</p><p>I am new in punBB .. I now have a project to make PunBB forum.<br />how to put this header in punBB forum.???</p><p><span class="postimg"><img src="http://img32.imageshack.us/img32/9068/punbb.jpg" alt="http://img32.imageshack.us/img32/9068/punbb.jpg" /></span>..</p><p>thanks before...</p>]]></description>
			<author><![CDATA[null@example.com (mtc_ary)]]></author>
			<pubDate>Wed, 15 Feb 2012 04:57:01 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/24957/how-to-put-this-header-in-punbb-forum/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Online Appliance Forum - English]]></title>
			<link>https://punbb.informer.com/forums/topic/24896/online-appliance-forum-english/new/posts/</link>
			<description><![CDATA[<p>Hay,</p><br /><p>Checkout my new appliance related forum - custom theme</p><p><a href="http://www.labelectrical.co.uk/forum/">http://www.labelectrical.co.uk/forum/</a></p><p>any pointers would be great</p><br /><p>Thanks<br />Luke</p>]]></description>
			<author><![CDATA[null@example.com (LABElectrical)]]></author>
			<pubDate>Wed, 25 Jan 2012 11:33:56 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/topic/24896/online-appliance-forum-english/new/posts/</guid>
		</item>
	</channel>
</rss>
