<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Tina MVC for WordPress</title>
	<atom:link href="http://www.seeit.org/tina-mvc-for-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seeit.org</link>
	<description>Web Programming &#38; IT Consultancy</description>
	<lastBuildDate>Wed, 23 Nov 2011 12:02:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: fcrossen</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-5867</link>
		<dc:creator>fcrossen</dc:creator>
		<pubDate>Wed, 23 Nov 2011 12:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-5867</guid>
		<description>Hi Atanas,

If you use the version of &lt;a href=&quot;http://wordpress.org/extend/plugins/tina-mvc/&quot; rel=&quot;nofollow&quot;&gt;Tina MVC from the Wordpress Plugin Directory&lt;/a&gt; then it is GNU General Public License, version 2 (GPLv2) licensed. In that case your Tina MVC application will also be GPLv2 and open source.

I can provide you with a commercial license for Tina MVC if you want. In that case you would not need to open source your app. Contact me if you need more information on this.

&gt; Also any integration with jQuery UI/ extJS ?
There is no need for specific integration with the JS libraries you describe. Just add your JS file using wp_enqueue_script() - usually in the constructor of your page controller, or in the class method (if you only need it on one page). You can also put it in a SCRIPT tag in your view file if you prefer.

I usually use the Wordpress supplied jQuery library for my Javascript or AJAX requirements.</description>
		<content:encoded><![CDATA[<p>Hi Atanas,</p>
<p>If you use the version of <a href="http://wordpress.org/extend/plugins/tina-mvc/" rel="nofollow">Tina MVC from the WordPress Plugin Directory</a> then it is GNU General Public License, version 2 (GPLv2) licensed. In that case your Tina MVC application will also be GPLv2 and open source.</p>
<p>I can provide you with a commercial license for Tina MVC if you want. In that case you would not need to open source your app. Contact me if you need more information on this.</p>
<p>&gt; Also any integration with jQuery UI/ extJS ?<br />
There is no need for specific integration with the JS libraries you describe. Just add your JS file using wp_enqueue_script() &#8211; usually in the constructor of your page controller, or in the class method (if you only need it on one page). You can also put it in a SCRIPT tag in your view file if you prefer.</p>
<p>I usually use the WordPress supplied jQuery library for my Javascript or AJAX requirements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atanas</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-5862</link>
		<dc:creator>Atanas</dc:creator>
		<pubDate>Wed, 23 Nov 2011 10:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-5862</guid>
		<description>Hi,

Can Tina be used on a web site that has commercial purposes without having to open source the web site itself? Not quite sure about the license.

Also any integration with jQuery UI/ extJS ?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Can Tina be used on a web site that has commercial purposes without having to open source the web site itself? Not quite sure about the license.</p>
<p>Also any integration with jQuery UI/ extJS ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fcrossen</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-5196</link>
		<dc:creator>fcrossen</dc:creator>
		<pubDate>Mon, 03 Oct 2011 11:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-5196</guid>
		<description>Yes, you can. Either:

1) Put the view file in the app folder (not in a sub folder). It is then accessible to all page controllers using &lt;code&gt;$this-&gt;load_view()&lt;/code&gt;.

2) Pass the location as a parameter to the &lt;code&gt;$this-&gt;load_view()&lt;/code&gt; function. The location is always relative to the Tina MVC plugin folder. For example:
&lt;code&gt;$this-&gt;load_view( &#039;my_view_file&#039; , FALSE , &#039;path/to/view/file&#039; )&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Yes, you can. Either:</p>
<p>1) Put the view file in the app folder (not in a sub folder). It is then accessible to all page controllers using <code>$this->load_view()</code>.</p>
<p>2) Pass the location as a parameter to the <code>$this->load_view()</code> function. The location is always relative to the Tina MVC plugin folder. For example:<br />
<code>$this->load_view( 'my_view_file' , FALSE , 'path/to/view/file' )</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leo</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-5182</link>
		<dc:creator>leo</dc:creator>
		<pubDate>Fri, 30 Sep 2011 21:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-5182</guid>
		<description>Hello, Can my current controller use a view from inside another controllers folder ?</description>
		<content:encoded><![CDATA[<p>Hello, Can my current controller use a view from inside another controllers folder ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leo</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-5120</link>
		<dc:creator>leo</dc:creator>
		<pubDate>Tue, 20 Sep 2011 17:11:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-5120</guid>
		<description>ahh I see. Thank you !!</description>
		<content:encoded><![CDATA[<p>ahh I see. Thank you !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leo</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-5119</link>
		<dc:creator>leo</dc:creator>
		<pubDate>Tue, 20 Sep 2011 17:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-5119</guid>
		<description>Thanks for the reply :)  How I activate the plugin for each site. I only see the option in the &quot;Network Admin&quot; to activate that plugin once.</description>
		<content:encoded><![CDATA[<p>Thanks for the reply <img src='http://www.seeit.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   How I activate the plugin for each site. I only see the option in the &#8220;Network Admin&#8221; to activate that plugin once.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fcrossen</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-5118</link>
		<dc:creator>fcrossen</dc:creator>
		<pubDate>Tue, 20 Sep 2011 17:06:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-5118</guid>
		<description>Hi Leo,
If you want to share the same controllers and views across all sites on a Multisite install then just create your controllers as normal and put them into the &#039;app&#039; folder.
In each Wordpress site you will need to activate the Tina MVC plugin. Each site will use the same set controllers, views and models from that &#039;app&#039; folder.
Shout if you need more help.</description>
		<content:encoded><![CDATA[<p>Hi Leo,<br />
If you want to share the same controllers and views across all sites on a Multisite install then just create your controllers as normal and put them into the &#8216;app&#8217; folder.<br />
In each WordPress site you will need to activate the Tina MVC plugin. Each site will use the same set controllers, views and models from that &#8216;app&#8217; folder.<br />
Shout if you need more help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leo</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-5117</link>
		<dc:creator>leo</dc:creator>
		<pubDate>Tue, 20 Sep 2011 16:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-5117</guid>
		<description>How can I share controllers and views on a multi site with domain mapping ? currently the sample pages only show on the main site and not on the others.</description>
		<content:encoded><![CDATA[<p>How can I share controllers and views on a multi site with domain mapping ? currently the sample pages only show on the main site and not on the others.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fcrossen</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-3823</link>
		<dc:creator>fcrossen</dc:creator>
		<pubDate>Wed, 22 Jun 2011 11:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-3823</guid>
		<description>Hi Aldo,

I haven&#039;t tried the plugin with Multisite, but I can&#039;t see why it wouldn&#039;t work, and it is on my to do list.

Download a development version from SVN and try some of the sample apps. If you have any problems let me know.

&lt;em&gt;&lt;strong&gt;Update:&lt;/strong&gt;&lt;/em&gt;

The stable version of Tina MVC works fine with Wordpress Multisite. The plugin is enabled on a per-site basis and all sites share the same applications.

If you want to use different application folders per site, then you will need to download the development version (&lt;a href=&quot;http://downloads.wordpress.org/plugin/tina-mvc.zip&quot; rel=&quot;nofollow&quot;&gt;http://downloads.wordpress.org/plugin/tina-mvc.zip&lt;/a&gt;).</description>
		<content:encoded><![CDATA[<p>Hi Aldo,</p>
<p>I haven&#8217;t tried the plugin with Multisite, but I can&#8217;t see why it wouldn&#8217;t work, and it is on my to do list.</p>
<p>Download a development version from SVN and try some of the sample apps. If you have any problems let me know.</p>
<p><em><strong>Update:</strong></em></p>
<p>The stable version of Tina MVC works fine with WordPress Multisite. The plugin is enabled on a per-site basis and all sites share the same applications.</p>
<p>If you want to use different application folders per site, then you will need to download the development version (<a href="http://downloads.wordpress.org/plugin/tina-mvc.zip" rel="nofollow">http://downloads.wordpress.org/plugin/tina-mvc.zip</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aldo</title>
		<link>http://www.seeit.org/tina-mvc-for-wordpress/comment-page-1/#comment-3810</link>
		<dc:creator>Aldo</dc:creator>
		<pubDate>Tue, 21 Jun 2011 22:48:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.seeit.org/?page_id=650#comment-3810</guid>
		<description>I was wondering if it was possible to make this plugin work with WordPress Multisite.  Thanks.</description>
		<content:encoded><![CDATA[<p>I was wondering if it was possible to make this plugin work with WordPress Multisite.  Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc (user agent is rejected)
Database Caching 3/23 queries in 0.029 seconds using apc

Served from: www.seeit.org @ 2012-02-05 03:29:31 -->
