<?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>TolerantX&#039;s Blog &#187; Informática</title>
	<atom:link href="http://tolerantx.com/category/informatica/feed/" rel="self" type="application/rss+xml" />
	<link>http://tolerantx.com</link>
	<description>Y sin embargo se mueve</description>
	<lastBuildDate>Mon, 28 Feb 2011 02:16:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Google lanza plugin que soporta video y voz en Gmail sobre Linux</title>
		<link>http://tolerantx.com/2010/08/20/google-lanza-plugin-que-soporta-video-y-voz-en-gmail-sobre-linux/</link>
		<comments>http://tolerantx.com/2010/08/20/google-lanza-plugin-que-soporta-video-y-voz-en-gmail-sobre-linux/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 04:07:05 +0000</pubDate>
		<dc:creator>TolerantX</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Informática]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://tolerantx.com/?p=354</guid>
		<description><![CDATA[Google está lanzando el plugin]]></description>
			<content:encoded><![CDATA[<p>Google está lanzando el plugin que permite el uso de video y voz en el chat de GMail, ésto que ya era soportado sobre otras plataformas como Windows anteriormente.</p>
<p>Lamentablemente aún solo está disponibles para sistemas Linux basados en Debian, sin embargo se pretende también tener soporte para otros como los basados en rpm.</p>
<p><a href="http://www.google.com/chat/video" target="_blank">En éste enlace está disponible la descarga del plugin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tolerantx.com/2010/08/20/google-lanza-plugin-que-soporta-video-y-voz-en-gmail-sobre-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checkbox: Seleccionar, deseleccionar todos</title>
		<link>http://tolerantx.com/2010/04/06/checkbox-seleccionar-deseleccionar-todos/</link>
		<comments>http://tolerantx.com/2010/04/06/checkbox-seleccionar-deseleccionar-todos/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 04:16:34 +0000</pubDate>
		<dc:creator>TolerantX</dc:creator>
				<category><![CDATA[Informática]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[checkbox]]></category>
		<category><![CDATA[funcion]]></category>
		<category><![CDATA[seleccionar todos]]></category>

		<guid isPermaLink="false">http://tolerantx.com/?p=332</guid>
		<description><![CDATA[Sé que hay muchos ejemplos,]]></description>
			<content:encoded><![CDATA[<p>Sé que hay muchos ejemplos, guias etc sobre como seleccionar o deseleccionar checkbox en una página web con javascript, pero pocos hacen referencia a hacer una función un poco más generica donde abarque tanto el nombre del formulario, el nombre de elementos a seleccionar y la casilla &#8220;todos&#8221; también con checkbox.</p>
<p>Tenemos 2 funciones javascript, una que se encarga de seleccionar todos los &#8220;checkbox&#8221; y la otra función que se encarga de verificar si permanece seleccionado nuestro checkbox que selecciona &#8220;todos&#8221;:<span id="more-332"></span></p>
<pre  name="code"  class="javascript">function checkElements(form, elementAll, elementToCheck) {
    var form, checkbox = form.elements[elementToCheck];
    totalElements = checkbox.length;
    checkboxAll = form.elements[elementAll];

    for(var n=0; n&lt;totalElements; n++) {
        checkbox[n].checked = checkboxAll.checked;
    }
}

function checkElementAll(form, elementAll, elementCheck) {
    var form, counter=0;
    checkbox = form.elements[elementCheck];
    checkboxAll = form.elements[elementAll];
    totalElements = checkbox.length;

    for(var n=0; n&lt;totalElements; n++) {
        if (checkbox[n].checked == true) counter++;
    }
    if (totalElements &gt; counter)
        checkboxAll.checked = false;
    else
        checkboxAll.checked = true;
}
</pre>
<p>Y un ejemplo de formulario sería algo como lo siguiente:</p>
<pre name="code" class="xml">&lt;form name="nombreFormulario" method="post" action=""&gt;
    &lt;p&gt;&lt;input type="checkbox" name="selecciona_todos" onclick="checkElements(this.form, this.name, 'frutas[]')" /&gt;&lt;label&gt;Todos&lt;/label&gt;&lt;/p&gt;
    &lt;p&gt;&lt;input type="checkbox" name="frutas[]" value="manzana" onclick="checkElementAll(this.form, 'selecciona_todos', this.name)" /&gt;&lt;label&gt;Manzana&lt;/label&gt;&lt;/p&gt;
    &lt;p&gt;&lt;input type="checkbox" name="frutas[]" value="mango" onclick="checkElementAll(this.form, 'selecciona_todos', this.name)" /&gt;&lt;label&gt;Mango&lt;/label&gt;&lt;/p&gt;
    &lt;p&gt;&lt;input type="checkbox" name="frutas[]" value="pera" onclick="checkElementAll(this.form, 'selecciona_todos', this.name)" /&gt;&lt;label&gt;Pera&lt;/label&gt;&lt;/p&gt;
    &lt;p&gt;&lt;input type="checkbox" name="frutas[]" value="sandia" onclick="checkElementAll(this.form, 'selecciona_todos', this.name)" /&gt;&lt;label&gt;Sandia&lt;/label&gt;&lt;/p&gt;
    &lt;p&gt;&lt;input type="checkbox" name="frutas[]" value="naranja" onclick="checkElementAll(this.form, 'selecciona_todos', this.name)" /&gt;&lt;label&gt;Naranja&lt;/label&gt;&lt;/p&gt;
&lt;/form&gt;</pre>
<p> <img src='http://tolerantx.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://tolerantx.com/2010/04/06/checkbox-seleccionar-deseleccionar-todos/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Buzz</title>
		<link>http://tolerantx.com/2010/02/10/google-buzz/</link>
		<comments>http://tolerantx.com/2010/02/10/google-buzz/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 17:03:05 +0000</pubDate>
		<dc:creator>TolerantX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Informática]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://tolerantx.com/?p=203</guid>
		<description><![CDATA[Hoy ingresando a mi cuenta]]></description>
			<content:encoded><![CDATA[<p>Hoy ingresando a mi cuenta de correo me encuentro con la novedad del nuevo servicio que google está ofreciendo, Google Buzz, se asemeja a servicios tipo twitter donde puedes actualizar tu estatus, compartir, fotos, videos etc.</p>
<p>Pudiera parecer otro servicio más sin mucha novedad pero tiene detrás a google apostando por entrar cada vez más al mundo de las redes sociales, veremos como le va.</p>
<p>Entren a la siguiente liga para más información <a href="http://buzz.google.com" target="_blank">buzz.google.com</a></p>
<p>Y adjunto un video donde muestra lo que es Buzz.</p>
<p style="text-align: center;"><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/yi50KlsCBio" frameborder="0" allowFullScreen="true"> </iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://tolerantx.com/2010/02/10/google-buzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editar enlaces/links del Widget Meta en WordPress 2.9.1</title>
		<link>http://tolerantx.com/2010/01/26/editar-enlaceslinks-del-widget-meta-en-wordpress-2-9-1/</link>
		<comments>http://tolerantx.com/2010/01/26/editar-enlaceslinks-del-widget-meta-en-wordpress-2-9-1/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 02:00:55 +0000</pubDate>
		<dc:creator>TolerantX</dc:creator>
				<category><![CDATA[Informática]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[widget meta]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://tolerantx.com/?p=180</guid>
		<description><![CDATA[Primero que nada la versión]]></description>
			<content:encoded><![CDATA[<p>Primero que nada la versión del wordpress no necesariamente tiene que ser la mencionada, puede que funcione en versiones anteriores, para ésta fecha la versión más actual es la 2.9.1.</p>
<p>Pues bien empecemos, para modificar el widget meta porque por default maneja enlaces que en lo particular no los quiero, vease la siguiente imagen:<a href="http://tolerantx.files.wordpress.com/2010/01/11.jpg"><img class="aligncenter size-medium wp-image-196" title="Blog" src="http://tolerantx.files.wordpress.com/2010/01/11.jpg?w=300" alt="" width="300" height="193" /></a></p>
<p><span id="more-180"></span>Primero que nada tendremos que editar el archivo que se encuentra en la ruta wp-includes/default-widgets.php y nos ubicamos por ahí de la línea 295 lo cual verían algo como ésto.<a href="http://tolerantx.files.wordpress.com/2010/01/3.jpg"><img class="aligncenter size-medium wp-image-185" title="Codigo a quitar" src="http://tolerantx.files.wordpress.com/2010/01/3.jpg?w=300" alt="" width="300" height="57" /></a></p>
<p><a href="http://tolerantx.files.wordpress.com/2010/01/4.jpg"><img class="aligncenter size-medium wp-image-186" title="Codigo eliminado" src="http://tolerantx.files.wordpress.com/2010/01/4.jpg?w=300" alt="" width="300" height="40" /></a></p>
<p>Simplemente borramos/editamos los enlaces que no nos gusten y en mi caso quito los tres que marco a continuación para quedar de la siguiente manera.<a href="http://tolerantx.files.wordpress.com/2010/01/5.jpg"><img class="aligncenter size-medium wp-image-187" title="Blog final" src="http://tolerantx.files.wordpress.com/2010/01/5.jpg?w=300" alt="" width="300" height="194" /></a></p>
<p>Y listo, para ello si agregamos el widget a nuestro blog ya no aparecerán esas ligas <img src='http://tolerantx.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , por cierto también en algunos temas ponen dicho widget por default, si aún haciendo lo anterior no funciona necesitan editar el archivo sidebar.php que se encuentra en la ruta &#8220;wp-content/themes/tu_tema/&#8221; pero eso ya te toca a tí modificarlo <img src='http://tolerantx.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.roxoroxo.com/wp/2010/01/27/bienvenido/">Roxoroxo</a></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 366px; width: 1px; height: 1px;">Simplemente</div>
]]></content:encoded>
			<wfw:commentRss>http://tolerantx.com/2010/01/26/editar-enlaceslinks-del-widget-meta-en-wordpress-2-9-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Feeds (Fuente Web)</title>
		<link>http://tolerantx.com/2009/06/22/web-feeds-fuente-web/</link>
		<comments>http://tolerantx.com/2009/06/22/web-feeds-fuente-web/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 20:08:36 +0000</pubDate>
		<dc:creator>TolerantX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Informática]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://tolerantx.com/?p=155</guid>
		<description><![CDATA[Si no sabes que es]]></description>
			<content:encoded><![CDATA[<p><a href="http://es.wikipedia.org/wiki/Fuente_web" target="_blank">Si no sabes que es un web feed has click aquí.</a></p>
<p>¿Qué cliente de web feeds usas? yo en lo personal uso Google Reader, no entraré en detalles de por qué uso éste y no otro, simplemente me parece práctico y funciona a la perfección.</p>
<p>Como todos los días suelo revisar mis feeds para ver las actualizaciones que han ocurrido a los sitios a los cuales quiero &#8220;seguir&#8221;, y me ha surgido la duda de cuales tienen ustedes y que tan frencuente los revisan, yo en lo personal tengo de los sitios como:<span id="more-155"></span></p>
<ul>
<li> eluniversal.com.mx (me gusta estar informado <img src='http://tolerantx.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</li>
</ul>
<ul>
<li>esdebian.org</li>
<li>espaciolinux.com</li>
<li>ubuntips.com.ar</li>
<li>vivalinux.com.ar</li>
<li>slashdot.org</li>
<li>elsyreyes.com</li>
<li>bolsadeideas.cl</li>
</ul>
<p>Entre otros, pero los principales son esos, ¿cuáles tienen ustedes que me puedan recomendar?, desde culturales, ocio, hasta geeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://tolerantx.com/2009/06/22/web-feeds-fuente-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>La responsabilidad de las universidades</title>
		<link>http://tolerantx.com/2009/02/23/la-responsabilidad-de-las-universidades/</link>
		<comments>http://tolerantx.com/2009/02/23/la-responsabilidad-de-las-universidades/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 15:57:43 +0000</pubDate>
		<dc:creator>TolerantX</dc:creator>
				<category><![CDATA[Informática]]></category>

		<guid isPermaLink="false">http://tolerantx.com/?p=145</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/oO7zvH-MP5M" frameborder="0" allowFullScreen="true"> </iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://tolerantx.com/2009/02/23/la-responsabilidad-de-las-universidades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Respaldos automáticos en MySQL y Windows</title>
		<link>http://tolerantx.com/2008/07/21/respaldos-automaticos-en-mysql-y-windows/</link>
		<comments>http://tolerantx.com/2008/07/21/respaldos-automaticos-en-mysql-y-windows/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 20:25:44 +0000</pubDate>
		<dc:creator>TolerantX</dc:creator>
				<category><![CDATA[Informática]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[automático]]></category>
		<category><![CDATA[Respaldo]]></category>

		<guid isPermaLink="false">http://blog.tolerantx.com/2008/07/21/respaldos-automaticos-en-mysql-y-windows/</guid>
		<description><![CDATA[Tuve la necesidad de hacer]]></description>
			<content:encoded><![CDATA[<p>Tuve la necesidad de hacer respaldos de forma automática en un servidor web montado en Windows la solución fue hacer un script .bat y éste mandarlo ejecutar con la herramienta de &#8220;Tareas programadas&#8221;</p>
<p>El script quedó de la siguiente manera: <span id="more-97"></span></p>
<blockquote><p> for /f &#8220;tokens=1-4 delims=/ &#8221; %%a in (&#8216;date/t&#8217;) do (<br />
set dia=%%a<br />
set mes=%%b<br />
set anio=%%c<br />
)<br />
mysqldump -u user -p<em><strong>password</strong> <strong>database_name</strong></em> &gt; respaldo-%dia%-%mes%-%anio%.sql</p></blockquote>
<p>Esto generará un archivo .sql con el nombre &#8220;respaldo-fecha.sql&#8221;.</p>
<p>Este código lo guardas con extensión .bat y lo mandas llamar como decía con las Tareas Programada, esto en <em>Inicio &#8211; Programas &#8211; Accesorios &#8211; Herramientas de Sistema &#8211; Tareas programada. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://tolerantx.com/2008/07/21/respaldos-automaticos-en-mysql-y-windows/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>Disco Open Solaris 2008.05</title>
		<link>http://tolerantx.com/2008/06/05/disco-open-solaris-200805/</link>
		<comments>http://tolerantx.com/2008/06/05/disco-open-solaris-200805/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 03:00:01 +0000</pubDate>
		<dc:creator>TolerantX</dc:creator>
				<category><![CDATA[Informática]]></category>
		<category><![CDATA[Open Solaris]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.tolerantx.com/2008/06/05/disco-open-solaris-200805/</guid>
		<description><![CDATA[Bueno no recuerdo realmente cuándo]]></description>
			<content:encoded><![CDATA[<p>Bueno no recuerdo realmente cuándo (no hace mucho) pero pedí mis discos gratis de open solaris, y hoy me han llegado <img src='http://tolerantx.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , aquí les adjunto una imagen de éste, ahora solo falta hacerme un tiempo para instalarlo, o de menos hacer el intento a ver cómo me va <img src='http://tolerantx.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://farm4.static.flickr.com/3150/2554514699_734dd4b628_o.jpg" title="Open Solaris 2008.05" target="_blank"><img src="http://farm4.static.flickr.com/3150/2554514699_0b53ba8496_m.jpg" alt="Open Solaris" width="240" align="middle" height="180" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tolerantx.com/2008/06/05/disco-open-solaris-200805/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

