<?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 for Nanothree.net</title>
	<atom:link href="http://www.nanothree.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nanothree.net</link>
	<description>Freelance website development in Manchester, UK</description>
	<lastBuildDate>Fri, 11 Nov 2011 20:10:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>Comment on Turning CakePHP&#8217;s Pagination output to a list by nanothree</title>
		<link>http://www.nanothree.net/2010/turning-cakephps-pagination-output-to-a-list/#comment-758</link>
		<dc:creator>nanothree</dc:creator>
		<pubDate>Fri, 11 Nov 2011 20:10:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/dev/wordpress/?p=34#comment-758</guid>
		<description>Have you tried something like this:

$this-&gt;paginate = array(
&#039;conditions&#039; =&gt; array(&#039;Recipe.title LIKE&#039; =&gt; &#039;a%&#039;),
&#039;limit&#039; =&gt; 10
);
$data = $this-&gt;paginate(&#039;Recipe&#039;);

Taken from: http://book.cakephp.org/view/1232/Controller-Setup</description>
		<content:encoded><![CDATA[<p>Have you tried something like this:</p>
<p>$this->paginate = array(<br />
&#8216;conditions&#8217; => array(&#8216;Recipe.title LIKE&#8217; => &#8216;a%&#8217;),<br />
&#8216;limit&#8217; => 10<br />
);<br />
$data = $this->paginate(&#8216;Recipe&#8217;);</p>
<p>Taken from: <a href="http://book.cakephp.org/view/1232/Controller-Setup" rel="nofollow">http://book.cakephp.org/view/1232/Controller-Setup</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Turning CakePHP&#8217;s Pagination output to a list by Jean Luis</title>
		<link>http://www.nanothree.net/2010/turning-cakephps-pagination-output-to-a-list/#comment-757</link>
		<dc:creator>Jean Luis</dc:creator>
		<pubDate>Fri, 11 Nov 2011 19:13:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/dev/wordpress/?p=34#comment-757</guid>
		<description>Paginate a Find Result

Hello, im looking for a solution to this little problem of mine, i need to paginate tha data resulting from a custom find, bellow you can see the code that im using, at this point i get all the data that i need, but i&quot;d like to paginate it because sometimes it returns a large amount of data.

Anyone have a suggestion??

THX in advance

PS: if you anything else code wise or me being more specific let me know

//THIS FORCES TO DO THIS &quot;SELECT * FROM table1 LEFT JOIN table2 WHERE.....&quot;

$this-&gt;Equipo-&gt;unbindModel(array(&#039;hasMany&#039;=&gt;array(&#039;Storages&#039;)));
$this-&gt;Equipo-&gt;bindModel(array(&#039;hasOne&#039;=&gt;array(&#039;Storages&#039;=&gt;array(
                                                       &#039;foreignKey&#039;=&gt;false,
                                                        &#039;conditions&#039;=&gt;array(&#039;Equipo.id_almacen = storages.id&#039;)
                                                                               )
                                                               )
                                               )
                                       );
//IN THIS PART $ DATA GETS THE VALUE OF &quot;SELECT * FROM table1 LEFT JOIN table2 WHERE.....&quot;
$data=$this-&gt;Equipo-&gt;find(&#039;all&#039;,array(&#039;conditions&#039;=&gt;array(
                                               &#039;part_number LIKE&#039;=&gt;&quot;%&quot;.$this-&gt;data[&#039;Equipo&#039;][&#039;part_number&#039;].&quot;%&quot;,
                                               &#039;id_almacen LIKE&#039;=&gt;&quot;%&quot;.$this-&gt;data[&#039;Equipo&#039;][&#039;id_almacen&#039;].&quot;%&quot;,
                                               &#039;equipo_central LIKE&#039;=&gt;&quot;%&quot;.$this-&gt;data[&#039;Equipo&#039;][&#039;equipo_central&#039;].&quot;%&quot;,
                                               &#039;descripcion LIKE&#039;=&gt;&quot;%&quot;.$this-&gt;data[&#039;Equipo&#039;][&#039;descripcion&#039;].&quot;%&quot;
                                               ),
                       )
               );</description>
		<content:encoded><![CDATA[<p>Paginate a Find Result</p>
<p>Hello, im looking for a solution to this little problem of mine, i need to paginate tha data resulting from a custom find, bellow you can see the code that im using, at this point i get all the data that i need, but i&#8221;d like to paginate it because sometimes it returns a large amount of data.</p>
<p>Anyone have a suggestion??</p>
<p>THX in advance</p>
<p>PS: if you anything else code wise or me being more specific let me know</p>
<p>//THIS FORCES TO DO THIS &#8220;SELECT * FROM table1 LEFT JOIN table2 WHERE&#8230;..&#8221;</p>
<p>$this-&gt;Equipo-&gt;unbindModel(array(&#8216;hasMany&#8217;=&gt;array(&#8216;Storages&#8217;)));<br />
$this-&gt;Equipo-&gt;bindModel(array(&#8216;hasOne&#8217;=&gt;array(&#8216;Storages&#8217;=&gt;array(<br />
                                                       &#8216;foreignKey&#8217;=&gt;false,<br />
                                                        &#8216;conditions&#8217;=&gt;array(&#8216;Equipo.id_almacen = storages.id&#8217;)<br />
                                                                               )<br />
                                                               )<br />
                                               )<br />
                                       );<br />
//IN THIS PART $ DATA GETS THE VALUE OF &#8220;SELECT * FROM table1 LEFT JOIN table2 WHERE&#8230;..&#8221;<br />
$data=$this-&gt;Equipo-&gt;find(&#8216;all&#8217;,array(&#8216;conditions&#8217;=&gt;array(<br />
                                               &#8216;part_number LIKE&#8217;=&gt;&#8221;%&#8221;.$this-&gt;data['Equipo']['part_number'].&#8221;%&#8221;,<br />
                                               &#8216;id_almacen LIKE&#8217;=&gt;&#8221;%&#8221;.$this-&gt;data['Equipo']['id_almacen'].&#8221;%&#8221;,<br />
                                               &#8216;equipo_central LIKE&#8217;=&gt;&#8221;%&#8221;.$this-&gt;data['Equipo']['equipo_central'].&#8221;%&#8221;,<br />
                                               &#8216;descripcion LIKE&#8217;=&gt;&#8221;%&#8221;.$this-&gt;data['Equipo']['descripcion'].&#8221;%&#8221;<br />
                                               ),<br />
                       )<br />
               );</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on phpBB3 Topic Tagging by kentoo</title>
		<link>http://www.nanothree.net/2010/phpbb3-topic-tagging/#comment-410</link>
		<dc:creator>kentoo</dc:creator>
		<pubDate>Thu, 05 May 2011 10:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/?p=118#comment-410</guid>
		<description>Hi and thanks a lot for the MOD.
Is there a way to show per-post-tags in topics list under forums?</description>
		<content:encoded><![CDATA[<p>Hi and thanks a lot for the MOD.<br />
Is there a way to show per-post-tags in topics list under forums?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on phpBB3 Topic Tagging by cyn</title>
		<link>http://www.nanothree.net/2010/phpbb3-topic-tagging/#comment-407</link>
		<dc:creator>cyn</dc:creator>
		<pubDate>Wed, 06 Apr 2011 08:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/?p=118#comment-407</guid>
		<description>is there a way to change the appearance of the tag cloud?
into a list or table.</description>
		<content:encoded><![CDATA[<p>is there a way to change the appearance of the tag cloud?<br />
into a list or table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on phpBB3 Topic Tagging by cyn</title>
		<link>http://www.nanothree.net/2010/phpbb3-topic-tagging/#comment-406</link>
		<dc:creator>cyn</dc:creator>
		<pubDate>Tue, 05 Apr 2011 05:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/?p=118#comment-406</guid>
		<description>How do apply the mod to rocket theme &quot;Quasar&quot; style? 
Only prosilver and subsilver are supported?</description>
		<content:encoded><![CDATA[<p>How do apply the mod to rocket theme &#8220;Quasar&#8221; style?<br />
Only prosilver and subsilver are supported?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on phpBB3 Topic Tagging by pep</title>
		<link>http://www.nanothree.net/2010/phpbb3-topic-tagging/#comment-404</link>
		<dc:creator>pep</dc:creator>
		<pubDate>Fri, 25 Mar 2011 21:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/?p=118#comment-404</guid>
		<description>It looks really nice, was searching this for times. Is it working with prosilver SE theme?

Big thanks!!</description>
		<content:encoded><![CDATA[<p>It looks really nice, was searching this for times. Is it working with prosilver SE theme?</p>
<p>Big thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on phpBB3 Topic Tagging by Rassy</title>
		<link>http://www.nanothree.net/2010/phpbb3-topic-tagging/#comment-403</link>
		<dc:creator>Rassy</dc:creator>
		<pubDate>Mon, 28 Feb 2011 14:25:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/?p=118#comment-403</guid>
		<description>Is there any option to keep the tag cloud at the bottom of the page?</description>
		<content:encoded><![CDATA[<p>Is there any option to keep the tag cloud at the bottom of the page?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on phpBB3 Topic Tagging by nanothree</title>
		<link>http://www.nanothree.net/2010/phpbb3-topic-tagging/#comment-31</link>
		<dc:creator>nanothree</dc:creator>
		<pubDate>Fri, 19 Nov 2010 13:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/?p=118#comment-31</guid>
		<description>Subsilver instructions have been added to the package.</description>
		<content:encoded><![CDATA[<p>Subsilver instructions have been added to the package.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on phpBB3 Topic Tagging by rad</title>
		<link>http://www.nanothree.net/2010/phpbb3-topic-tagging/#comment-29</link>
		<dc:creator>rad</dc:creator>
		<pubDate>Thu, 18 Nov 2010 10:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/?p=118#comment-29</guid>
		<description>subsilver instructions will be helpful :)</description>
		<content:encoded><![CDATA[<p>subsilver instructions will be helpful <img src='http://www.nanothree.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on phpBB3 Topic Tagging by nanothree</title>
		<link>http://www.nanothree.net/2010/phpbb3-topic-tagging/#comment-28</link>
		<dc:creator>nanothree</dc:creator>
		<pubDate>Tue, 16 Nov 2010 12:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.nanothree.net/?p=118#comment-28</guid>
		<description>I&#039;ve been really busy the last month but i should have some time soon to work on the subsilver2 theme.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been really busy the last month but i should have some time soon to work on the subsilver2 theme.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

