<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Punksolid &#187; Scriptaculous</title>
	<atom:link href="http://www.punksolid.com/tag/scriptaculous/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.punksolid.com</link>
	<description>Tecnologia, Curiosidades, Sistemas de Informacion y un poco de Religion</description>
	<lastBuildDate>Thu, 18 Aug 2011 13:06:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Autocompletar con scriptaculous</title>
		<link>http://www.punksolid.com/autocompletar-con-scriptaculous/2011/</link>
		<comments>http://www.punksolid.com/autocompletar-con-scriptaculous/2011/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 14:08:23 +0000</pubDate>
		<dc:creator>Punksolid</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Scriptaculous]]></category>

		<guid isPermaLink="false">http://www.punksolid.com/?p=671</guid>
		<description><![CDATA[Lo que vamos a hacer es un cuadro search box como el google suggest, que a diferencia de este, no haremos una petición ajax al servidor ya que tendremos los valores precargados en una variable javascript, útil cuando los registros son pocos y estáticos. Reconozco que a estas alturas medio mundo usa jquery, pero como [...]]]></description>
			<content:encoded><![CDATA[<p>Lo que vamos a hacer es un cuadro search box como el google suggest, que a diferencia de este, no haremos una petición ajax al servidor ya que tendremos los valores precargados en una variable javascript, útil cuando los registros son pocos y estáticos.<br />
Reconozco que a estas alturas medio mundo usa jquery, pero como persona de escaso conocimiento en el área, para el propósito me sirvió prototype y scriptaculous.</p>
<p>Lo primero que tenemos que hacer es <a href="http://script.aculo.us/downloads" target="_blank">descargar scriptaculous</a>, y extraemos todos los js dentro de una carpeta javascripts.</p>
<p>El siguiente paso es crear el archivo css.css para darle un diseño bonito al recuadro de opciones que aparecerán conforme vayamos escribiendo, el código de css.css es</p>
<p>&nbsp;</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">div<span style="color: #6666ff;">.autocomplete</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">250px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#888</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
div<span style="color: #6666ff;">.autocomplete</span> ul <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">list-style-type</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
div<span style="color: #6666ff;">.autocomplete</span> ul li<span style="color: #6666ff;">.selected</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#ffb</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
div<span style="color: #6666ff;">.autocomplete</span> ul li <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">2px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">32px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">list-style-type</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span><span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>El tercer paso es crear el archivo autocompletar.html donde incluiremos los javascripts de prototype y scriptaculous, automáticamente se incluirán todas las dependencias.</p>
<p>&nbsp;</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot; src=&quot;javascripts/prototype.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;javascripts/scriptaculous.js?load=effects,controls&quot;&gt;
&lt;/script&gt;
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">var</span> bandsList <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span>
  <span style="color: #3366CC;">'ABBA'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'AC/DC'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Aerosmith'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'America'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Bay City Rollers'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Black Sabbath'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Boston'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'David Bowie'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Can'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'The Carpenters'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Crass'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Deep Purple'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'The Doobie Brothers'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Eagles'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Fleetwood Mac'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Haciendo Punto en Otro Son'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Heart'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Iggy Pop and the Stooges'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Journey'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Judas Priest'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'KC and the Sunshine Band'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Kiss'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Kraftwerk'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Led Zeppelin'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Lindisfarne (band)'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Lipps, Inc'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Lynyrd Skynyrd'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Pink Floyd'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Queen'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Ramones'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'REO Speedwagon'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Rhythm Heritage'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Rush'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Sex Pistols'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Slade'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Steely Dan'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Stillwater'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Styx'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Supertramp'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Sweet'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Three Dog Night'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'The Village People'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Wings (fronted by former Beatle Paul McCartney)'</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">'Yes'</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
   window.<span style="color: #000066;">onload</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #003366; font-weight: bold;">new</span> Autocompleter.<span style="color: #660066;">Local</span><span style="color: #009900;">&#40;</span>
        <span style="color: #3366CC;">'bands_from_the_70s'</span><span style="color: #339933;">,</span>
        <span style="color: #3366CC;">'band_list'</span><span style="color: #339933;">,</span>
        bandsList<span style="color: #339933;">,</span>
        <span style="color: #009900;">&#123;</span>ignoreCase<span style="color: #339933;">:</span><span style="color: #003366; font-weight: bold;">false</span><span style="color: #009900;">&#125;</span>
      <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
&lt;body&gt;
&lt;p&gt;
  &lt;label for=&quot;bands_from&quot;&gt;Your favorite rock  band from the 70's:&lt;/label&gt;
  &lt;br /&gt;
  &lt;input id=&quot;bands_from_the_70s&quot; autocomplete=&quot;off&quot; size=&quot;40&quot; type=&quot;text&quot; value=&quot;&quot; /&gt;
&lt;/p&gt;
&nbsp;
&lt;div class=&quot;autocomplete&quot; id=&quot;band_list&quot; style=&quot;display:none&quot;&gt;&lt;/div&gt;</pre></div></div>

<p>&nbsp;</p>
<p>Y listo ya con eso debemos tener un textbox con sugerencias.</p>
<p><strong>Enlaces</strong></p>
<p><a href="http://madrobby.github.com/scriptaculous/autocompleter-local/" target="_blank">Autocompleter.Local</a> para ver los parámetros aceptados.</p>
<p><a href="http://jonisalonen.com/2011/crazy-fast-ajax-search-suggest-in-cakephp-using-browser-cache/" target="_blank">Ajax search suggest with cakephp</a></p>
<p><a href="http://www.tutorialspoint.com/cgi-bin/practice.cgi?file=scriptaculous_51" target="_blank">Ejemplo simple autocomplete.local</a></p>
<h2></h2>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.punksolid.com/autocompletar-con-scriptaculous/2011/&via=Punksolid&text=Autocompletar con scriptaculous&related=José Palazuelos:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.punksolid.com/autocompletar-con-scriptaculous/2011/&via=Punksolid&text=Autocompletar con scriptaculous&related=José Palazuelos:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.punksolid.com/autocompletar-con-scriptaculous/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Como Actualizar un Div con Ajax y CakePHP 1.2</title>
		<link>http://www.punksolid.com/como-actualizar-un-div-con-ajax-y-cakephp-1-2/2009/</link>
		<comments>http://www.punksolid.com/como-actualizar-un-div-con-ajax-y-cakephp-1-2/2009/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 02:01:58 +0000</pubDate>
		<dc:creator>Punksolid</dc:creator>
				<category><![CDATA[Aplicaciones]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Scriptaculous]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.punksolid.com/?p=439</guid>
		<description><![CDATA[Empezaré suponiendo que tienes nociones básicas sobre CakePHP1.2 y sabes hacer de perdida un CRUD. Agregar las librerías javascript Cakephp tiene una buena integración con las librerías javascript de prototype y scriptaculous, las cuales debemos descargarlas primero desde la pagina de descarga de scriptaculous y la de descargas de prototype, la de prototype es un [...]]]></description>
			<content:encoded><![CDATA[<p>Empezaré suponiendo que tienes nociones básicas sobre CakePHP1.2 y sabes hacer de perdida un CRUD.</p>
<h3>Agregar las librerías javascript</h3>
<p>Cakephp tiene una buena integración con las librerías javascript de <a href="http://www.prototypejs.org/">prototype</a> y <a href="http://script.aculo.us/">scriptaculous</a>, las cuales debemos descargarlas primero desde la pagina de <a href="http://script.aculo.us/downloads">descarga de scriptaculous</a> y la de <a href="http://www.prototypejs.org/download">descargas de prototype</a>, la de prototype es un archivo js. Renombrar a prototype.js y ponlo en "app/webroot/js".</p>
<p>La librería de scriptaculous es un archivo .zip que contiene una carpeta src que a su vez contiene muchos archivos js los cuales debemos copiar y ponerlos también en la app/webroot/js.</p>
<h3>Añadir los helpers javascript y ajax al controlador</h3>
<p>Ahora necesitamos agregar los helpers de javascript y de ajax. Una opcion es agregarlos a cada controlador a como la vayamos necesitando o agregarlos al app_controller para que estén disponibles en todos los controladores.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">class AppController extends Controller {
var $helpers = array('Html','Form','Javascript','Ajax');
&nbsp;
}
&lt;h3&gt;Vistas&lt;/h3&gt;
Cada vista que sue javascript debemos añadirle las siguientes etiquetas
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$javascript</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">link</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'prototype'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$javascript</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">link</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'scriptaculous'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;h2&gt;Ajax 3 - testing ajax link and button&lt;/h2&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
        <span style="color: #000088;">$link_array1</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'controller'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'tweets'</span> <span style="color: #339933;">,</span><span style="color: #0000ff;">'action'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'simple_ajax1_fcn'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #666666; font-style: italic;">//the function to execute: function ajaxfcn1 in controller tests</span>
        <span style="color: #000088;">$link_array2</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'update'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'divout'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
       <span style="color: #b1b100;">echo</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$ajax</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">link</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'this an ajax link'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$link_array1</span><span style="color: #339933;">,</span><span style="color: #000088;">$link_array2</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;br/&gt;&lt;br/&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&lt;br/&gt;
&lt;div id=&quot;divout&quot;&gt;
the div to update
&lt;/div&gt;</pre></div></div>

<h3>Controlador</h3>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">class</span> TweetsController <span style="color: #000000; font-weight: bold;">extends</span> AppController <span style="color: #009900;">&#123;</span>
&nbsp;
        <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$name</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Tweets'</span><span style="color: #339933;">;</span>
        <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$uses</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>            <span style="color: #666666; font-style: italic;">// prevent cake from looking for a database model</span>
		<span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$helpers</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Html'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'Ajax'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'Javascript'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000000; font-weight: bold;">function</span> index<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
        <span style="color: #009900;">&#125;</span>
        <span style="color: #000000; font-weight: bold;">function</span> simple_ajax1_fcn<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">autoRender</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
                <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;text from ajax call&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.punksolid.com/como-actualizar-un-div-con-ajax-y-cakephp-1-2/2009/&via=Punksolid&text=Como Actualizar un Div con Ajax y CakePHP 1.2 &related=José Palazuelos:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.punksolid.com/como-actualizar-un-div-con-ajax-y-cakephp-1-2/2009/&via=Punksolid&text=Como Actualizar un Div con Ajax y CakePHP 1.2 &related=José Palazuelos:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.punksolid.com/como-actualizar-un-div-con-ajax-y-cakephp-1-2/2009/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

