<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Zendcasts Forum / Zendcast Episode Talkback]]></title>
		<link>http://www.zendcasts.com/forum/index.php</link>
		<description><![CDATA[The most recent topics at Zendcasts Forum.]]></description>
		<lastBuildDate>Thu, 27 Oct 2011 11:04:09 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[ZC24 -  Zend_Navigation – creating a menu, a sitemap and breadcrumb]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=58&amp;action=new</link>
			<description><![CDATA[<p>hi guys, <br />i have a little problem and i need some help <img src="http://www.zendcasts.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" />.<br />so first of all here is my navigation.xml, bootstrap and the way i visualise the breadcrumbs in my layout<br />http://pastebin.com/LNyBYYD5<br />and now the problem. when i am in the /controller/action i see the breadcrumbs, when i paginate articles /controller/action/page/1,2,3 i still see them, but when i click on article, my url goes /controller/action/page/1/articleId(this is int), the article loads but the breadcrumbs are gone. any idea what maybe wrong ? (and i dont want the title of the article to be in the breadcrumbs or something like that. i just want my breadcrumbs to be controller &gt; action )<br />thanks</p>]]></description>
			<author><![CDATA[dummy@example.com (SocialEvil)]]></author>
			<pubDate>Thu, 27 Oct 2011 11:04:09 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=58&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC25 - Unit Testing with the Zend Framework with Zend_Test and PHPUnit]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=41&amp;action=new</link>
			<description><![CDATA[<p>Hi Jon,</p><p>I&#039;m new at unit test so please be patient.<br />I realized that the testdox.html is auto generated but in the tutorial code there is also a lot of files in log/report (not auto generated) so I&#039;m wondering how that stuff works and how to set it up and above all where it comes from ? <img src="http://www.zendcasts.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>btw thanks for tutorializing <img src="http://www.zendcasts.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (whisher)]]></author>
			<pubDate>Sun, 14 Aug 2011 12:35:50 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=41&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC51 – Encapsulating Business Rules with Zend_Validate]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=167&amp;action=new</link>
			<description><![CDATA[<p>Hi ryy705, you could use a foreach, create an array and then loop through those lines with the given keys... (e.g. array(&#039;Direct Number&#039; =&gt; &#039;directphone&#039;, etc...) )</p>]]></description>
			<author><![CDATA[dummy@example.com (Jon Lebensold)]]></author>
			<pubDate>Sun, 31 Jul 2011 14:54:43 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=167&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC10 - Zend_Form Introduction, part 1]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=197&amp;action=new</link>
			<description><![CDATA[<p>Hi zend&#039;s guru!<br />Facts:</p><p>Controller: ItemController<br />Action: indexAction:<br />...<br /> public function indexAction()<br />&#160; &#160; {<br />&#160; &#160; &#160; &#160; $item1 = new App_ItemDto(&#039;item 1&#039;, &#039;hello world&#039;, 1);<br />&#160; &#160; &#160; &#160; $item2 = new App_ItemDto(&#039;item 2&#039;, &#039;hello world&#039;, 2);<br />&#160; &#160; &#160; &#160; $item3 = new App_ItemDto(&#039;item 3&#039;, &#039;hello world&#039;, 3);<br />&#160; &#160; &#160; &#160; $this-&gt;view-&gt;items = array($item1, $item2, $item3);<br />&#160; &#160; &#160; &#160; print_r($this-&gt;view-&gt;items);<br />&#160; &#160; }<br />...<br />This code returns result:</p><p>Array ( [0] =&gt; App_ItemDto Object ( [name] =&gt; [description] =&gt; [id] =&gt; ) [1] =&gt; App_ItemDto Object ( [name] =&gt; [description] =&gt; [id] =&gt; ) [2] =&gt; App_ItemDto Object ( [name] =&gt; [description] =&gt; [id] =&gt; ) ) </p><p>What wrong? Anybody have any ideas?<br />Thanks and regards.<br />Alex</p><p>PS: my App_ItemDto is:</p><p>class App_ItemDto {<br />&#160; &#160; <br />&#160; &#160; public $name;<br />&#160; &#160; public $description;<br />&#160; &#160; public $id;<br />&#160; &#160; <br />&#160; &#160; public function _construct($name, $description, $id)<br />&#160; &#160; {<br />&#160; &#160; $this-&gt;name = $name;<br />&#160; &#160; $this-&gt;description = $description;<br />&#160; &#160; $this-&gt;id = $id;<br />&#160; &#160; }</p>]]></description>
			<author><![CDATA[dummy@example.com (331520)]]></author>
			<pubDate>Tue, 21 Jun 2011 18:11:12 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=197&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC41 – Doctrine Relations and Zend MVC]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=122&amp;action=new</link>
			<description><![CDATA[<p>Hi,</p><p>I followed this tutorial but still i have some questions, here is my example:</p><p>Yaml:<br />Core_Model_Language:<br />&#160; connection: default<br />&#160; tableName: core_language<br />&#160; columns:<br />&#160; &#160; id:<br />&#160; &#160; &#160; type: integer(4)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: true<br />&#160; &#160; &#160; autoincrement: true<br />&#160; &#160; name:<br />&#160; &#160; &#160; type: string(45)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: false<br />&#160; &#160; &#160; notnull: true<br />&#160; &#160; &#160; autoincrement: false<br />&#160; &#160; short:<br />&#160; &#160; &#160; type: string(45)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: false<br />&#160; &#160; &#160; notnull: true<br />&#160; &#160; &#160; autoincrement: false<br />&#160; &#160; active:<br />&#160; &#160; &#160; type: integer(1)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: false<br />&#160; &#160; &#160; notnull: true<br />&#160; &#160; &#160; autoincrement: false<br />&#160; relations:<br />&#160; &#160; News_Model_Noticias:<br />&#160; &#160; &#160; local: id<br />&#160; &#160; &#160; foreign: lang_id<br />&#160; &#160; &#160; type: many<br />News_Model_Noticias:<br />&#160; connection: default<br />&#160; tableName: news_noticias<br />&#160; columns:<br />&#160; &#160; id:<br />&#160; &#160; &#160; type: integer(4)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: true<br />&#160; &#160; &#160; autoincrement: true<br />&#160; &#160; titulo:<br />&#160; &#160; &#160; type: string(250)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: false<br />&#160; &#160; &#160; notnull: true<br />&#160; &#160; &#160; autoincrement: false<br />&#160; &#160; small:<br />&#160; &#160; &#160; type: string(400)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: false<br />&#160; &#160; &#160; notnull: true<br />&#160; &#160; &#160; autoincrement: false<br />&#160; &#160; full:<br />&#160; &#160; &#160; type: string()<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: false<br />&#160; &#160; &#160; notnull: true<br />&#160; &#160; &#160; autoincrement: false<br />&#160; &#160; data_creation:<br />&#160; &#160; &#160; type: timestamp(25)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: false<br />&#160; &#160; &#160; notnull: false<br />&#160; &#160; &#160; autoincrement: false<br />&#160; &#160; published:<br />&#160; &#160; &#160; type: integer(1)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: false<br />&#160; &#160; &#160; default: &#039;0&#039;<br />&#160; &#160; &#160; notnull: true<br />&#160; &#160; &#160; autoincrement: false<br />&#160; &#160; lang_id:<br />&#160; &#160; &#160; type: integer(4)<br />&#160; &#160; &#160; fixed: false<br />&#160; &#160; &#160; unsigned: false<br />&#160; &#160; &#160; primary: false<br />&#160; &#160; &#160; notnull: true<br />&#160; &#160; &#160; autoincrement: false<br />&#160; relations:<br />&#160; &#160; Core_Model_Language:<br />&#160; &#160; &#160; local: lang_id<br />&#160; &#160; &#160; foreign: id<br />&#160; &#160; &#160; type: one</p><p>Ok so i have this 2 tables (Models), i want to load all news and when presenting the list show the language name for that news item.</p><p>in my action i have: <br />public function indexAction()<br />&#160; &#160; {<br />&#160; &#160; &#160; &#160; $model = Doctrine::getTable(&#039;News_Model_Noticias&#039;);<br />&#160; &#160; &#160; &#160; $noticias = $model-&gt;findAll();<br />&#160; &#160; &#160; &#160; $this-&gt;view-&gt;noticias = $noticias;<br />&#160; &#160; }</p><p>Now if i vardump($this-&gt;noticias) on my view i get something like this:<br />array(1) {<br />&#160; [0] =&gt; array(7) {<br />&#160; &#160; [&quot;id&quot;] =&gt; string(1) &quot;4&quot;<br />&#160; &#160; [&quot;titulo&quot;] =&gt; string(5) &quot;teste&quot;<br />&#160; &#160; [&quot;small&quot;] =&gt; string(24) &quot;teste introdução noticia&quot;<br />&#160; &#160; [&quot;full&quot;] =&gt; string(18) &quot;Montes de conteudo&quot;<br />&#160; &#160; [&quot;data_creation&quot;] =&gt; string(19) &quot;0000-00-00 00:00:00&quot;<br />&#160; &#160; [&quot;published&quot;] =&gt; string(1) &quot;0&quot;<br />&#160; &#160; [&quot;lang_id&quot;] =&gt; string(1) &quot;1&quot;<br />&#160; }<br />}</p><p>Is there an easy way i can get the relation data automaticly? something like:<br />array(1) {<br />&#160; [0] =&gt; array(7) {<br />&#160; &#160; [&quot;id&quot;] =&gt; string(1) &quot;4&quot;<br />&#160; &#160; [&quot;titulo&quot;] =&gt; string(5) &quot;teste&quot;<br />&#160; &#160; [&quot;small&quot;] =&gt; string(24) &quot;teste introdução noticia&quot;<br />&#160; &#160; [&quot;full&quot;] =&gt; string(18) &quot;Montes de conteudo&quot;<br />&#160; &#160; [&quot;data_creation&quot;] =&gt; string(19) &quot;0000-00-00 00:00:00&quot;<br />&#160; &#160; [&quot;published&quot;] =&gt; string(1) &quot;0&quot;<br />&#160; &#160; [&quot;language&quot;] =&gt; array(4){<br />&#160; &#160; &#160; &#160; [&quot;id&quot;] =&gt; string(1) &quot;1&quot;<br />&#160; &#160; &#160; &#160; [&quot;name&quot;] =&gt; string(9) &quot;Português&quot;<br />&#160; &#160; &#160; &#160; [&quot;short&quot;] =&gt; string(5) &quot;pt_PT&quot;<br />&#160; &#160; &#160; &#160; [&quot;active&quot;] =&gt; string(1) &quot;1&quot;<br />&#160; &#160; }<br />&#160; }<br />} </p><p>If i vardump language model i get the news related to that language, but i wanna do it the other way around, fetch the news and have it grab the language object for each news item in an automated way, without having to write all the Joins by hand, since the languages table is related to pretty much all the other tables in my app.</p><p>Thanks in advance</p>]]></description>
			<author><![CDATA[dummy@example.com (miguelp)]]></author>
			<pubDate>Tue, 07 Jun 2011 15:47:01 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=122&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC68 – Unit Testing Doctrine 2 Entities]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=294&amp;action=new</link>
			<description><![CDATA[<p>These videos are intended to help you get the structure in place. Obviously, testing getters and setters isn&#039;t of high business value.</p>]]></description>
			<author><![CDATA[dummy@example.com (Jon Lebensold)]]></author>
			<pubDate>Tue, 17 May 2011 04:30:52 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=294&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC60 – Creating RSS & Atom Feeds with Zend_Feed]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=239&amp;action=new</link>
			<description><![CDATA[<p>hey jon <br />great cast as usual</p><p>im copying your code and stripped it down<br />just for sake of making this work</p><p>so<br /></p><div class="codebox"><pre class="vscroll"><code>    private function getFeed() {
        define(&quot;SP&quot;,&quot;http://ww.mysite.com&quot;);
        
        $feed = new Zend_Feed_Writer_Feed;
        $feed-&gt;setTitle(&#039;Top 5&#039;);
        $feed-&gt;setLink(SP);
        $feed-&gt;setDescription(&quot;My RSS Feed&quot;);
        $feed-&gt;setDateModified(time());
        
        
        $entry = $feed-&gt;createEntry();
        $entry-&gt;setTitle(&quot;bbbb&quot;);
        $entry-&gt;setDescription(&quot;aaaaa&quot;);
        $entry-&gt;setDateModified(time());
        $entry-&gt;setLink(SP);
        $entry-&gt;setContent(&quot;cc&quot;);
        
        $feed-&gt;addEntry($entry);

        return $feed;
    }

    public function rssAction(){
        $feed = $this-&gt;getFeed();        
        $feed-&gt;setFeedLink(SITE_PATH .&#039;feed/rss&#039;, &#039;rss&#039;);
        echo $feed-&gt;export(&quot;rss&quot;);
    }    </code></pre></div><p>and this is the output:</p><div class="codebox"><pre><code>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; 
&lt;rss version=&quot;2.0&quot; xmlns:atom=&quot;http://www.w3.org/2005/Atom&quot; xmlns:content=&quot;http://purl.org/rss/1.0/modules/content/&quot; xmlns:slash=&quot;http://purl.org/rss/1.0/modules/slash/&quot;&gt; 
  &lt;channel&gt; 
    &lt;title&gt;Top 5&lt;/title&gt; 
    &lt;description&gt;My RSS Feed&lt;/description&gt; 
    &lt;pubDate&gt;Mon, 18 Apr 2011 16:51:09 -0700&lt;/pubDate&gt; 
    &lt;generator&gt;Zend_Feed_Writer 1.10.0 (http://framework.zend.com)&lt;/generator&gt; 
    &lt;link&gt;http://ww.mysite.com&lt;/link&gt; 
    &lt;atom:link rel=&quot;self&quot; type=&quot;application/rss+xml&quot; href=&quot;https://ww.acemetrix.com/feed/rss&quot;/&gt; 
    &lt;item&gt; 
      &lt;title&gt;bbbb&lt;/title&gt; 
      &lt;description&gt;&lt;![CDATA[aaaaa]]&gt;&lt;/description&gt; 
      &lt;pubDate&gt;Mon, 18 Apr 2011 16:51:09 -0700&lt;/pubDate&gt; 
      &lt;link&gt;http://ww.mysite.com&lt;/link&gt; 
      &lt;guid&gt;http://ww.mysite.com&lt;/guid&gt; 
      &lt;content:encoded&gt;&lt;![CDATA[cc]]&gt;&lt;/content:encoded&gt; 
      &lt;slash:comments&gt;0&lt;/slash:comments&gt; 
    &lt;/item&gt; 
  &lt;/channel&gt; 
&lt;/rss&gt; </code></pre></div><p>which is cool except it fails the validator <br />cause of the first line</p><p>ie:<br />This feed does not validate<br />&#160; &#160; &#160; line 2, column 0: XML parsing error: &lt;unknown&gt;:2:0: XML or text declaration not at start of entity [help]<br />&#160; &#160; &#160; &#160; &#160; &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; </p><br /><p>ive googled around and apparently <br />that first line is caused by a carriage return space somewhere<br />but this is code is so stripped down<br />i dont know where the carriage return could possibly come from</p><p>do you have any ideas?</p>]]></description>
			<author><![CDATA[dummy@example.com (toy)]]></author>
			<pubDate>Tue, 19 Apr 2011 00:00:23 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=239&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC71 - Event Listeners in Doctrine 2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=323&amp;action=new</link>
			<description><![CDATA[<p>I personally wouldn&#039;t use @depends since I think it begins to muddy what setup / teardown do.</p><p>I would rather have a helper class that has static methods to setup my database in a certain manner. </p><p>The teardown method in my code does indeed flush the whole db. You could comment out that code to get the desired result.</p>]]></description>
			<author><![CDATA[dummy@example.com (Jon Lebensold)]]></author>
			<pubDate>Mon, 18 Apr 2011 20:42:24 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=323&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Zendcast Episode 49 ::  Issue of duplicating view]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=321&amp;action=new</link>
			<description><![CDATA[<p>In the composite element’s view helper, the protected “$html” variable must be reset to an empty string inside the helper’s method, because if you want to use more than one “phone” element in the same form, the new $html content will be appended to the old one with each new element.</p><p>Please en-light this issue. Thanks for your great job.</p>]]></description>
			<author><![CDATA[dummy@example.com (samik)]]></author>
			<pubDate>Sat, 26 Mar 2011 21:11:55 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=321&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC47 – Zend_Form Decorators Explained]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=144&amp;action=new</link>
			<description><![CDATA[<p>Hello,</p><p>I am trying to create a printable representations of a completed form.<br />So, instead of a input field, I have added a form element called Note</p><p>class SF_Form_Element_Note extends Zend_Form_Element_Xhtml<br />{</p><p>public $helper = ‘formNote’;<br />}</p><p>My problem is that I am trying to place a span tag around the data text</p><p>my decorator for this field is as follows:</p><p>public function printDecorators ($id)<br />{</p><p>return array(<br />array(‘ViewHelper’, array(array(‘data’ =&gt; ‘HtmlTag’), array(‘tag’ =&gt;’span’)),<br />array(array(‘data2′ =&gt; ‘HtmlTag’), array(‘tag’ =&gt;’span’, ‘id’ =&gt; $id))),<br />array(‘Label’, array(‘tag’ =&gt;’span’)),<br />array(‘Errors’),<br />array(‘HtmlTag’)<br />);</p><p>I get</p><p>&lt;div&gt;<br />&lt;/div&gt;&lt;span id=&quot;printtab-first_name-label&quot;&gt;&lt;label for=&quot;printtab-first_name&quot; class=&quot;optional&quot;&gt;First Name&lt;/label&gt;&lt;/span&gt;<br />Jeffery&lt;/div&gt;<br />&lt;div&gt;&lt;span id=&quot;printtab-last_name-label&quot;&gt;&lt;label for=&quot;printtab-last_name&quot; class=&quot;optional&quot;&gt;Last Name&lt;/label&gt;&lt;/span&gt;<br />Shipman&lt;/div&gt;<br />&lt;/div&gt;</p><p>what I would like is</p><p>&lt;div&gt;<br />&lt;/div&gt;&lt;span id=&quot;printtab-first_name-label&quot;&gt;&lt;label for=&quot;printtab-first_name&quot; class=&quot;optional&quot;&gt;First Name&lt;/label&gt;&lt;/span&gt;<br />&lt;span id=&quot;first&quot;&gt;Jeffery&lt;/span&gt;&lt;/div&gt;<br />&lt;div&gt;&lt;span id=&quot;printtab-last_name-label&quot;&gt;&lt;label for=&quot;printtab-last_name&quot; class=&quot;optional&quot;&gt;Last Name&lt;/label&gt;&lt;/span&gt;<br />&lt;span id=&quot;last&quot;&gt;Shipman&lt;/span&gt;&lt;/div&gt;<br />&lt;/div&gt;</p>]]></description>
			<author><![CDATA[dummy@example.com (jeff shipman)]]></author>
			<pubDate>Thu, 24 Mar 2011 00:58:25 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=144&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC70 – Many-to-Many with Doctrine 2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=319&amp;action=new</link>
			<description><![CDATA[<p>Building and testing a many-to-many relationship. This was a bit of a rocky video, but I also include some tips for debugging your Doctrine 2 configuration.</p>]]></description>
			<author><![CDATA[dummy@example.com (Jon Lebensold)]]></author>
			<pubDate>Wed, 23 Mar 2011 20:19:48 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=319&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC69 - One to Many with Doctrine 2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=309&amp;action=new</link>
			<description><![CDATA[<p>Setup One-to-Many with Doctrine 2 using PHPDoc annotations.</p>]]></description>
			<author><![CDATA[dummy@example.com (Jon Lebensold)]]></author>
			<pubDate>Wed, 02 Mar 2011 11:17:23 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=309&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC58 – Working with ZendX_JQuery]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=217&amp;action=new</link>
			<description><![CDATA[<p>Hello Jon,</p><p>How would you set default settings (setDefaults) which sets default setting for all <a href="http://jqueryui.com/demos/datepicker/">Datepicker</a> instances?</p><p>Under Utility functions there is this code<br /><strong>$.datepicker.setDefaults( settings )</strong> - Set settings for all datepicker instances.<br />to set defaults...</p><p>Thanks, Udo</p>]]></description>
			<author><![CDATA[dummy@example.com (udo)]]></author>
			<pubDate>Thu, 17 Feb 2011 21:21:07 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=217&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC67 - Setting up Zend_HTTP_UserAgent]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=292&amp;action=new</link>
			<description><![CDATA[<p>Tank you john for this cast. <br />Mobile devices become important enough to be considered as a client while developping a web site. Your example will surely give an important save of time as soon as i&#039;ll have to adapt the layer too the client screen/browser capabilities.</p><p>Was looking forward to discovering the next cast, and i&#039;ve been so happy about it&#039;s content, once seen.</p><p>Thank you one more time for all this so precious stuff, <br />anton.</p>]]></description>
			<author><![CDATA[dummy@example.com (anton)]]></author>
			<pubDate>Mon, 31 Jan 2011 17:55:41 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=292&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[ZC44 – Logging in Users using Doctrine and Zend_Auth]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?id=130&amp;action=new</link>
			<description><![CDATA[<p>Well you didn&#039;t say follow up but you described what you would look at in the next episode. It was about the shortcomings of the method used in this video. The next video is the introduction to Zend_Mail (which i very much liked and have come to very good use for me).</p><p>I&#039;m not trying to be difficult here but was only curious because I was interested in what you said you where going to cover. <img src="http://www.zendcasts.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /> You find it in the end of the video at 15:15.</p>]]></description>
			<author><![CDATA[dummy@example.com (harri)]]></author>
			<pubDate>Mon, 31 Jan 2011 05:50:22 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?id=130&amp;action=new</guid>
		</item>
	</channel>
</rss>

