<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>Yii Framework Forum</title>
	<description></description>
	<link>http://www.yiiframework.com/forum/index.php</link>
	<pubDate>Fri, 10 Sep 2010 18:52:10 +0000</pubDate>
	<ttl>0</ttl>
	<item>
		<title>Multi Timezones App</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11628-multi-timezones-app/</link>
		<description><![CDATA[Hello yii people out there,<br />
<br />
i'm developing on a project wich involves multiple timezones. In fact it has a <br />
auction system in which auctions are stored in a server with a timezone set to UTC,<br />
while users are asked to specify their own timezone at registration time.<br />
<br />
So we have to make timezone conversions each time a user gets or sets data involving a datetime (like auction expiration for example).<br />
<br />
I used this approach and i would like to have your opinion on it, if it's good, it's bad, or if it can be improved.<br />
<br />
I made a component autoloaded at startup:<br />
<pre class='prettyprint'>
class TimeZoneKeeper extends CComponent{

	public $userTimezone;
	public $serverTimeZone;


	public function init(){
		//settiamo il server di default a UTC per rendere l'implementazione  indipendente
		//dal settaggio del server.
		Yii::app()-&gt;setTimeZone("UTC");	
		$this-&gt;serverTimeZone = new DateTimeZone(Yii::app()-&gt;getTimeZone());
	}

	public function serverToUser($timestamp){
		$this-&gt;userTimezone = new DateTimeZone(Yii::app()-&gt;user-&gt;tz);
		$serverDateTime = new DateTime("@".$timestamp);
		$offset = $this-&gt;userTimezone-&gt;getOffset($serverDateTime);
		return ($serverDateTime-&gt;format('U') + $offset);
	}

	public function userToServer($timestamp){
		$this-&gt;userTimezone = new DateTimeZone(Yii::app()-&gt;user-&gt;tz);
		$userDateTime = new DateTime("@".$timestamp);
		$offset = $this-&gt;userTimezone-&gt;getOffset($userDateTime);
		return ($userDateTime-&gt;format('U') - $offset);
	}

}
</pre><br />
<br />
it sets the application timezone to UTC regardless of the one set by the server.<br />
it gets the timezone stored in the UserIdentity whatever it is.<br />
then it provides two functions to convert datetime representations from the server timezone to the user's and vice versa.<br />
<br />
Any comment and ideas about it will be greatly appreciated!!<br />
<br />
Best regards.]]></description>
		<pubDate>Fri, 10 Sep 2010 18:39:03 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11628-multi-timezones-app/</guid>
	</item>
	<item>
		<title>YiiBase::include(CGridColumn.php): failed to open stream: No such file or directory</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/8025-yiibaseincludecgridcolumnphp-failed-to-open-stream-no-such-file-or-directory/</link>
		<description><![CDATA[I've got this error message during a page rendering:<br />
<br />
<strong class='bbc'>YiiBase::include(CGridColumn.php) [&lt;a href='yiibase.include'&gt;yiibase.include&lt;/a&gt;]: failed to open stream: No such file or directory</strong><br />
<br />
<br />
I'm using the latest Yii 1.1.1 (with yiilite + apc), and I uploaded the whole Yii package to the server, so the CGridColumn.php file exists! (another interesting thing, that CGridView is successfully used in another page in the site!)<br />
<br />
<br />
My controller code snippet:<br />
<pre class='prettyprint'>
		$this-&gt;render('admin',array(
			'dataProvider'=&gt;$dataProvider,
            'product'=&gt;$product
		));
</pre><br />
<br />
<br />
Corresponding view snippet:<br />
<pre class='prettyprint'>
&lt;?php $this-&gt;widget('zii.widgets.grid.CGridView', array(
	'dataProvider'=&gt;$dataProvider,
	'columns'=&gt;array(
		'prYear',
		'prPrice',
		array(
			'class'=&gt;'CButtonColumn',
            'template'=&gt;'{update}&nbsp;&nbsp;&nbsp;{delete}',
		),
	),
)); ?&gt;
</pre><br />
<br />
What could be the problem? This part of the site used to work, and I haven't changed anything!<br />
<br />
<br />
the whole backtrace:<br />
<br />
<br />
PHP Error<br />
Description<br />
<br />
YiiBase::include(CGridColumn.php) [&lt;a href='yiibase.include'&gt;yiibase.include&lt;/a&gt;]: failed to open stream: No such file or directory<br />
Source File<br />
<br />
/home2/testbike/testwww/yii1.1/framework/yii.php(189)<br />
<br />
00177:         else<br />
00178:             self::$_aliases[$alias]=rtrim($path,'&#092;&#092;/');<br />
00179:     }<br />
00180:     public static function autoload($className)<br />
00181:     {<br />
00182:         // use include so that the error PHP file may appear<br />
00183:         if(isset(self::$_coreClasses[$className]))<br />
00184:             include(YII_PATH.self::$_coreClasses[$className]);<br />
00185:         else if(isset(self::$_classes[$className]))<br />
00186:             include(self::$_classes[$className]);<br />
00187:         else<br />
00188:         {<br />
00189: include($className.'.php');<br />
00190:             return class_exists($className,false) || interface_exists($className,false);<br />
00191:         }<br />
00192:         return true;<br />
00193:     }<br />
00194:     public static function trace($msg,$category='application')<br />
00195:     {<br />
00196:         if(YII_DEBUG)<br />
00197:             self::log($msg,CLogger::LEVEL_TRACE,$category);<br />
00198:     }<br />
00199:     public static function log($msg,$level=CLogger::LEVEL_INFO,$category='application')<br />
00200:     {<br />
00201:         if(self::$_logger===null)<br />
<br />
Stack Trace<br />
<br />
#0 /home2/testbike/testwww/yii1.1/framework/yii.php(189): autoload()<br />
#1 unknown(0): autoload()<br />
#2 /home2/testbike/testwww/yii1.1/framework/yii.php(186): spl_autoload_call()<br />
#3 /home2/testbike/testwww/yii1.1/framework/yii.php(186): autoload()<br />
#4 unknown(0): autoload()<br />
#5 /home2/testbike/testwww/yii1.1/framework/zii/widgets/grid/CGridView.php(279): spl_autoload_call()<br />
#6 /home2/testbike/testwww/yii1.1/framework/zii/widgets/grid/CGridView.php(249): CGridView-&gt;createDataColumn()<br />
#7 /home2/testbike/testwww/yii1.1/framework/zii/widgets/grid/CGridView.php(235): CGridView-&gt;initColumns()<br />
#8 /home2/testbike/testwww/yii1.1/framework/yii.php(2768): CGridView-&gt;init()<br />
#9 /home2/testbike/testwww/yii1.1/framework/yii.php(2773): ProductEntityController-&gt;createWidget()<br />
#10 /home2/testbike/testwww/protected/admin/views/productEntity/admin.php(26): ProductEntityController-&gt;widget()<br />
#11 /home2/testbike/testwww/yii1.1/framework/yii.php(2751): require()<br />
#12 /home2/testbike/testwww/yii1.1/framework/yii.php(2730): ProductEntityController-&gt;renderInternal()<br />
#13 /home2/testbike/testwww/yii1.1/framework/yii.php(3107): ProductEntityController-&gt;renderFile()<br />
#14 /home2/testbike/testwww/yii1.1/framework/yii.php(3084): ProductEntityController-&gt;renderPartial()<br />
#15 /home2/testbike/testwww/protected/admin/controllers/ProductEntityController.php(325): ProductEntityController-&gt;render()<br />
#16 /home2/testbike/testwww/yii1.1/framework/yii.php(3299): ProductEntityController-&gt;actionAdmin()<br />
#17 /home2/testbike/testwww/yii1.1/framework/yii.php(2899): CInlineAction-&gt;run()<br />
#18 /home2/testbike/testwww/yii1.1/framework/yii.php(5270): ProductEntityController-&gt;runAction()<br />
#19 /home2/testbike/testwww/yii1.1/framework/yii.php(5279): CFilterChain-&gt;run()<br />
#20 /home2/testbike/testwww/protected/components/Controller.php(14): AccessControlFilter-&gt;filter()<br />
#21 /home2/testbike/testwww/yii1.1/framework/yii.php(5309): ProductEntityController-&gt;filterAccessControl()<br />
#22 /home2/testbike/testwww/yii1.1/framework/yii.php(5267): CInlineFilter-&gt;filter()<br />
#23 /home2/testbike/testwww/yii1.1/framework/yii.php(2889): CFilterChain-&gt;run()<br />
#24 /home2/testbike/testwww/yii1.1/framework/yii.php(2874): ProductEntityController-&gt;runActionWithFilters()<br />
#25 /home2/testbike/testwww/yii1.1/framework/yii.php(1497): ProductEntityController-&gt;run()<br />
#26 /home2/testbike/testwww/yii1.1/framework/yii.php(1392): CWebApplication-&gt;runController()<br />
#27 /home2/testbike/testwww/yii1.1/framework/yii.php(1007): CWebApplication-&gt;processRequest()<br />
#28 /home2/testbike/testwww/admin.php(14): CWebApplication-&gt;run()]]></description>
		<pubDate>Fri, 19 Mar 2010 07:48:58 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/8025-yiibaseincludecgridcolumnphp-failed-to-open-stream-no-such-file-or-directory/</guid>
	</item>
	<item>
		<title>Extending core classes</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11624-extending-core-classes/</link>
		<description><![CDATA[Hi all,<br />
<br />
Simple question, in the interest of doing things "the right way".  I want to extend CWebApplication with something like CAmfApplication.  Where in the directory structure should such classes live?  I'm inclined to think under "protected/components", but would like to be sure.<br />
<br />
And while I'm at it - general, custom business logic classes live under "models", correct?<br />
<br />
Thanks]]></description>
		<pubDate>Fri, 10 Sep 2010 16:53:14 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11624-extending-core-classes/</guid>
	</item>
	<item>
		<title>Come avete scoperto Yii?</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11627-come-avete-scoperto-yii/</link>
		<description><![CDATA[<strong class='bbc'>Come avete scoperto Yii?</strong><br />
<br />
Io conoscevo PRADO ed un giorno ho visto un messaggio sul loro forum che ne annunciava il successore: Yii  <img src='http://www.yiiframework.com/forum/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' />]]></description>
		<pubDate>Fri, 10 Sep 2010 17:54:53 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11627-come-avete-scoperto-yii/</guid>
	</item>
	<item>
		<title>Arquivo de log</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11626-arquivo-de-log/</link>
		<description><![CDATA[Ahe meus brothers do mundo yii,<br />
<br />
Gostaria de uma pequena ajuda sobre o arquivo de log.<br />
Tipo gostaria de saber como fazer um arquivo de log que tenha as informações do erro como arquivo, data/hora tipo do erro e o que foi solicitado.<br />
<br />
E se quando der erro se teria como enviar esta informaçoes no meu e-mail.<br />
<br />
Valews]]></description>
		<pubDate>Fri, 10 Sep 2010 17:48:05 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11626-arquivo-de-log/</guid>
	</item>
	<item>
		<title>Perfomace na aplicação</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11391-perfomace-na-aplicacao/</link>
		<description><![CDATA[Tem alguma diferenca de perfomace em usar:<br />
CHtml::image() ao inves da tag &lt;img src&gt; direto.<br />
<br />
E outra coisa estou começando uma aplicação como sabe de um site, e o meu servidor de hospedagem nao tem nenhum acelerador de codigo instalado, vc poderia me dar algumas dicas como eu posso melhorar a perfomace do site que estou desenvolvendo emm Yii, tipo configuraçoes internas do framework. Tipo utilizar Helpers para montar a tag é melhor.<br />
<br />
Resumindo tudo gostaria de começar esta aplicaçao com as configuraçoes correta para obter o maximo de desempenho do meu site pois um site lento ninguem merece...<br />
<br />
Valeu mesmo desde já]]></description>
		<pubDate>Mon, 30 Aug 2010 18:50:04 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11391-perfomace-na-aplicacao/</guid>
	</item>
	<item>
		<title>CGridView</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11550-cgridview/</link>
		<description><![CDATA[Salve a tutti ... ho qualche difficolta:<br />
<br />
<pre class='prettyprint'>
    $this-&gt;widget('zii.widgets.grid.CGridView', array(
    'dataProvider' =&gt; $model-&gt;search(),
    'filter' =&gt; $model,
    'columns' =&gt; array(
</pre><br />
<br />
Non ho tutto chiaro al 100% questo codice. Dalla documentazione non sono stato in grado di capire in pieno come devo configurare questi campo ... In oltre ho provato a cercare una guida su CGridView ma nulla. Sapete/Potete aiutarmi?]]></description>
		<pubDate>Tue, 07 Sep 2010 14:20:27 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11550-cgridview/</guid>
	</item>
	<item>
		<title>pulling my hair out with WSDL</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11621-pulling-my-hair-out-with-wsdl/</link>
		<description><![CDATA[Hi I'm learning about soap services and trying to set one up.<br />
<br />
Locally on my Ubuntu machine I seem to have it working.<br />
<br />
On my web server it is not working, or at least it is only partially working.  The header is there but no operations show up but they do locally.<br />
<br />
I don't see much point posting my controller because it seems to be working.  Also the web server is providing web services through a Magento installation so I know that the server has the correct modules etc.<br />
<br />
My next step is to make sure that the Yii installation matches between local and remote servers.<br />
<br />
Locally 1.13 remote 1.12.<br />
<br />
Any ideas?  Things I could check?<br />
<br />
Any help would be much appreciated.<br />
<br />
doodle]]></description>
		<pubDate>Fri, 10 Sep 2010 15:05:54 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11621-pulling-my-hair-out-with-wsdl/</guid>
	</item>
	<item>
		<title>Yii and Flex 3</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/136-yii-and-flex-3/</link>
		<description><![CDATA[Hi all! I want to discuss about Yii and flex a bit. For the last time to make the Flex application with PHP background I&#039;ve used as3corelib in flex and JSON php methods. <a href='http://blog.paranoidferret.com/?p=23' class='bbc_url' title='External link' rel='nofollow'><a href='http://blog.paranoidferret.com/?p=23' class='bbc_url' title='External link' rel='nofollow'>http://blog.paranoidferret.com/?p=23</a></a> - here I&#039;ve found an example on which I then make my flex applications. But in Yii I see the SOAP service very usefull for flex&php. But I see that I can&#039;t use some caching methods for SOAP. The SOAP service in Yii is faster one then in Prado, but I don&#039;t sure for using it in big flex applications because of it perfomance. Can anybody give my an explanation on when SOAP is usefull and how can I realise in Yii the approach with as3corelib and JSON? Thanks.]]></description>
		<pubDate>Sun, 09 Nov 2008 11:07:45 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/136-yii-and-flex-3/</guid>
	</item>
	<item>
		<title>Forum Yii</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11625-forum-yii/</link>
		<description><![CDATA[Sono dovuto entrare dentro tutti i forum per segnare tutto come già letto. Non trovate che dovrebbe esserci un tasto "segna tutto come già letto" anche nel livello più alto di questo forum?]]></description>
		<pubDate>Fri, 10 Sep 2010 17:17:51 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11625-forum-yii/</guid>
	</item>
	<item>
		<title><![CDATA[Creare moduli &#34;strani&#34; con Yii]]></title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11598-creare-moduli-strani-con-yii/</link>
		<description><![CDATA[<pre class='prettyprint'>
            &lt;?php
                echo CHtml::beginForm(
                        array('ciao/mondo', 'ciao' =&gt; 'asdf', 'aaswdf', 'aw'),
                        'get',
                        array('id' =&gt; 'asd')
                );
            ?&gt;
            &lt;?php echo CHtml::textField('nome'); ?&gt;
            &lt;?php echo CHtml::endForm(); ?&gt;
</pre><br />
<br />
Sapete spiegarmi perchè questo codice genera<br />
<pre class='prettyprint'>
&lt;form id="asd" action="/blog/index.php?r=ciao/mondo&amp;ciao=asdf&amp;0=aaswdf&amp;1=aw" method="get"&gt;
&lt;div style="display:none"&gt;
&lt;input type="hidden" value="ciao/mondo" name="r" /&gt; 
&lt;input type="hidden" value="asdf" name="ciao" /&gt;
&lt;input type="hidden" value="aaswdf" name="0" /&gt;
&lt;input type="hidden" value="aw" name="1" /&gt;
&lt;/div&gt;
&lt;input type="text" value="" name="nome" id="nome" /&gt;
&lt;/form&gt;
</pre><br />
<br />
mentre questo (cambio solo il metodo da GET a POST):<br />
<pre class='prettyprint'>
           &lt;?php
                echo CHtml::beginForm(
                        array('ciao/mondo', 'ciao' =&gt; 'asdf', 'aaswdf', 'aw'),
                        'post',
                        array('id' =&gt; 'asd')
                );
            ?&gt;
            &lt;?php echo CHtml::textField('nome'); ?&gt;
            &lt;?php echo CHtml::endForm(); ?&gt;
</pre><br />
<br />
genera queest'altro codice?<br />
<pre class='prettyprint'>
&lt;form id="asd" action="/blog/index.php?r=ciao/mondo&amp;ciao=asdf&amp;0=aaswdf&amp;1=aw" method="post"&gt;
&lt;input type="text" value="" name="nome" id="nome" /&gt;
&lt;/form&gt;
</pre>]]></description>
		<pubDate>Thu, 09 Sep 2010 15:37:42 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11598-creare-moduli-strani-con-yii/</guid>
	</item>
	<item>
		<title>Chi scrive $content?</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11597-chi-scrive-content/</link>
		<description><![CDATA[Sto giocando, smontando, analizzando Yii. Ho fatto visita alla view principale. Ho visto come ...<br />
<ul class='bbc'><li>imposta il nome del documento<br /></li><li>il titolo della pagina<br /></li><li>carica il menu<br /></li><li>carica il footer</li></ul><br />
però mica ho capito una cosa: dove viene popolata la variabile $content?<br />
Spero di non aver fatto una domanda troppo ingenua.<br />
<br />
Di fatto ho capito come creare un link tipo r=controller/azione, e fino a qui ci siamo. So dove metter la view, come scrivere il controller e dove. Ma chi assembla per bene tutto? Più che altro... DOVE?]]></description>
		<pubDate>Thu, 09 Sep 2010 14:43:55 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11597-chi-scrive-content/</guid>
	</item>
	<item>
		<title>Module Password</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11623-module-password/</link>
		<description><![CDATA[Hey there,<br />
<br />
I'm trying to set a password to a module (site.com/admin) via basic http auth (normally via .htaccess).<br />
<br />
Normally I would just create the .htaccess file but of course yii uses virtual URLs so the folders don't exist.<br />
<br />
httpd.conf has a &lt;Location&gt; directive which I could use but I really would like to keep the configuration contained within the application (either a Yii/PHP setting, or a .htaccess thing...)<br />
<br />
Anyone had this problem and/or got any solutions?]]></description>
		<pubDate>Fri, 10 Sep 2010 15:46:47 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11623-module-password/</guid>
	</item>
	<item>
		<title>Libros</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11526-libros/</link>
		<description><![CDATA[Hola.<br />
<br />
Estoy aprendiendo a utilizar este framework después de seleccionar entre los posibles para php.<br />
Quiero hacer un portal con el tipico carrito, registro de usuarios..., pero me gustaría saber un par de cosas en las que espero me podais echar una mano:<br />
1. Libros y documentación en castellano.<br />
2. Hay algún problema con windows.<br />
3. He contratado un host y me gustaria saber que es lo que necesito (tengo el típico cPanel).<br />
<br />
Un saludo a todos.]]></description>
		<pubDate>Mon, 06 Sep 2010 20:01:11 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11526-libros/</guid>
	</item>
	<item>
		<title>Yii and MS-SQL</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11622-yii-and-ms-sql/</link>
		<description><![CDATA[Hello All,<br />
<br />
I Am using Yii 1.1.4 and trying to connect to a MS SQL 2000 server. This is supposedly a supported DB server which is what first brought me to try yii. Most frameworks don't support SQL Server 2000 because it is so old, but it is nevertheless what I am stuck working with for the time being. <br />
<br />
I am using yii on Gentoo linux and working through the Agile Development with Yii book. It connects to the local MySQL server just fine and I can connect to the MS-SQL with a regular PHP script using mssql_connect(). I have searched these forums and not found anything that solves my issue.<br />
<br />
My db array from protected/config/main.php looks like:<br />
<br />
		'db'=&gt;array(<br />
			#'connectionString' =&gt; 'mysql:host=localhost;dbname=trackstar_dev',<br />
			'connectionString' =&gt; 'mssql:host=10.166.250.3;port=1433;dbname=RMA',<br />
			'emulatePrepare' =&gt; true,<br />
			'username' =&gt; 'MyLogin',<br />
			'password' =&gt; 'MyPassword',<br />
			'charset' =&gt; 'utf8',<br />
		),<br />
<br />
Including the commented out MySQL connection string which works. I have tried using both the IP and the hostname of the server, either work with mssql_connect(), but no luck so far. When I try to run the unit test I get:<br />
<br />
<br />
[glen@alhazred tests]$ phpunit unit/DbTest.php <br />
PHPUnit 3.4.15 by Sebastian Bergmann.<br />
<br />
E<br />
<br />
Time: 1 second, Memory: 5.25Mb<br />
<br />
There was 1 error:<br />
<br />
1) DbTest::testConnection<br />
CDbException: CDbConnection failed to open the DB connection.<br />
<br />
/var/www/localhost/htdocs/yii/framework/db/CDbConnection.php:275<br />
/var/www/localhost/htdocs/yii/framework/db/CDbConnection.php:242<br />
/var/www/localhost/htdocs/yii/framework/db/CDbConnection.php:221<br />
/var/www/localhost/htdocs/yii/framework/base/CModule.php:363<br />
/var/www/localhost/htdocs/yii/framework/base/CModule.php:86<br />
/var/www/localhost/htdocs/trackstar/protected/tests/unit/DbTest.php:6<br />
<br />
FAILURES!<br />
Tests: 1, Assertions: 0, Errors: 1.<br />
<br />
<br />
Anyone have any ideas?<br />
<br />
Thanks in advance. I apologize if this was covered elsewhere.<br />
<br />
Glen]]></description>
		<pubDate>Fri, 10 Sep 2010 15:11:02 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11622-yii-and-ms-sql/</guid>
	</item>
	<item>
		<title>Pattern for Supporting Mobile Clients?</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11605-pattern-for-supporting-mobile-clients/</link>
		<description><![CDATA[I need to implement a "mobile browsing experience" in addition to the "large-screen browser experience" for my site. I'm looking for the appropriate Yii pattern to implement this. Is a mobile theme the Yii way to do this or something else? Assuming I use the library mentioned in <a href='http://www.yiiframework.com/forum/index.php?/topic/11187-mobile-browser-detection/' class='bbc_url' title='External link' rel='nofollow'>this post</a> to detect the client type, where do I apply the logic to direct the request?<br />
<br />
Thanks in advance.]]></description>
		<pubDate>Thu, 09 Sep 2010 19:27:40 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11605-pattern-for-supporting-mobile-clients/</guid>
	</item>
	<item>
		<title><![CDATA[What's Yii's equivalent to other MVC's Helpers and Libraries?]]></title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11619-whats-yiis-equivalent-to-other-mvcs-helpers-and-libraries/</link>
		<description><![CDATA[What's Yii's equivalent to other MVC's Helpers and Libraries?<br />
Are they Components and Extensions? what's their difference?<br />
<br />
What I want to do is code some functionality that will be available from any Controller.<br />
How do I load and use them?<br />
The documentation is not very clear about this.]]></description>
		<pubDate>Fri, 10 Sep 2010 14:30:59 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11619-whats-yiis-equivalent-to-other-mvcs-helpers-and-libraries/</guid>
	</item>
	<item>
		<title>class Yii extends YiiBase {}</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11552-class-yii-extends-yiibase/</link>
		<description><![CDATA[<pre class='prettyprint'>
/**
 * Yii is a helper class serving common framework functionalities.
 *
 * It encapsulates {@link YiiBase} which provides the actual implementation.
 * By writing your own Yii class, you can customize some functionalities of YiiBase.
 *
 * @author Qiang Xue &lt;qiang.xue@gmail.com&gt;
 * @version $Id: yii.php 1678 2010-01-07 21:02:00Z qiang.xue $
 * @package system
 * @since 1.0
 */
class Yii extends YiiBase
{
}

</pre><br />
<br />
<br />
Avete mai modificato questa classe? Si può sfruttare?]]></description>
		<pubDate>Tue, 07 Sep 2010 14:51:08 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11552-class-yii-extends-yiibase/</guid>
	</item>
	<item>
		<title>About the submit way of search page</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/11615-about-the-submit-way-of-search-page/</link>
		<description><![CDATA[The default submit way of the search page is GET. But i want to use "post" to submit my value.<br />
<br />
And the main problem is the serialize of data i don't know how to modify the code to satisfy my demand.<br />
<br />
$('.search-form form').submit(function(){<br />
	$.fn.yiiGridView.update('apilogs-grid', {<br />
		data: $(this).serialize()<br />
	});<br />
	return false;<br />
});]]></description>
		<pubDate>Fri, 10 Sep 2010 09:15:58 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/11615-about-the-submit-way-of-search-page/</guid>
	</item>
	<item>
		<title>provenienza</title>
		<link>http://www.yiiframework.com/forum/index.php?/topic/126-provenienza/</link>
		<description><![CDATA[chissà che non possa tornare utile.<br />
ad usare un framework mvc php-based siamo veramente in pochi.<br />
<br />
Legnano (MI)]]></description>
		<pubDate>Fri, 07 Nov 2008 13:20:59 +0000</pubDate>
		<guid>http://www.yiiframework.com/forum/index.php?/topic/126-provenienza/</guid>
	</item>
</channel>
</rss>