<?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>Eliseos.net</title> <atom:link href="http://eliseos.net/feed/" rel="self" type="application/rss+xml" /><link>http://eliseos.net</link> <description>Wordpress, Diseño, jQuery and Coffee</description> <lastBuildDate>Wed, 10 Mar 2010 01:03:41 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Speech bubbles con CSS solamente</title><link>http://eliseos.net/css/speech-bubbles-css-solamente/</link> <comments>http://eliseos.net/css/speech-bubbles-css-solamente/#comments</comments> <pubDate>Wed, 10 Mar 2010 01:02:32 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[CSS]]></category> <category><![CDATA[CSS3]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2747</guid> <description><![CDATA[Nicolas Gallagher ha creado una serie de Speech bubbles solamente con CSS2.1 y condimentados con CSS3, logrando asi algo que solo se podría obtener mediante javascript]]></description> <content:encoded><![CDATA[<p
style="text-align: left;"><a
title="Pure CSS speech bubbles" href="http://nicolasgallagher.com/progressive-enhancement-pure-css-speech-bubbles/">Nicolas Gallagher</a> ha creado una serie de Speech bubbles solamente con <strong>CSS2.1</strong> y condimentados con <strong>CSS3</strong>, logrando así algo que solo se podria obtener mediante <strong>javascript</strong>. Usando un HTML semántico y cero imágenes se pueden lograr resultados como el siguiente:</p><p><span
id="more-2747"></span></p><p
style="text-align: center;"><a
href="http://nicolasgallagher.com/progressive-enhancement-pure-css-speech-bubbles/"><img
class="alignnone size-full wp-image-2748" title="CSS Speech bubbles" src="http://eliseos.net/wp-content/uploads/2010/03/CSS-Speech-bubbles.jpg" alt="CSS Speech bubbles Speech bubbles con CSS solamente" width="500" height="250" /></a></p><p
style="text-align: left;">El HTML del que les hablaba es muy simple, solamente podemos escribir <em><code>&lt;div&gt;Content&lt;/div&gt;</code></em> o <em><code>&lt;p&gt;Content&lt;/p&gt;</code></em> y la magia de CSS se hará cargo de ahí en mas.</p><p
style="text-align: left;">La mención honorifica se la llevan los <strong>pseudo-elements</strong> <em><code>:before</code></em> y/o <em><code>:after</code></em> que crearan nuestras formas (Speech bubbles) y las propiedades <em><code>border-radius</code></em> y <em><code>transform</code></em> son los condimentos.</p><p
style="text-align: left;">Si nos ponemos a trabajar con los <strong>pseudo-elements</strong> y las propiedades arriba mencionadas podemos lograr resultado muy interesantes.</p><p
style="text-align: left;">Un ejemplo de esto, puede ser este CSS donde se creara un Speech Bubble con un triangulo isoceles en la parte inferior</p><div
class="wp_syntax"><div
class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Bubble con triangulo isósceles
------------------------------------------ */</span>
&nbsp;
<span style="color: #6666ff;">.triangle-isosceles</span> <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">1em</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">3em</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#f3961c</span><span style="color: #00AA00;">;</span>
&nbsp;
   <span style="color: #808080; font-style: italic;">/* css3 */</span>
   -moz-border-radius<span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
   -webkit-border-radius<span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
   border-radius<span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">background</span><span style="color: #3333ff;">:-moz-linear-</span>gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#f9d835</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#f3961c</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">background</span><span style="color: #3333ff;">:linear-</span>gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#f9d835</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#f3961c</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* crear triangulo */</span>
<span style="color: #6666ff;">.triangle-isosceles</span><span style="color: #3333ff;">:after </span><span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">content</span><span style="color: #00AA00;">:</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\0</span>0a0&quot;</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: #808080; font-style: italic;">/* reduce the damage in FF3.0 */</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: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span>-<span style="color: #cc66cc;">1</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">-30px</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border-width</span><span style="color: #00AA00;">:</span><span style="color: #933;">15px</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border-style</span><span style="color: #00AA00;">:</span><span style="color: #993333;">solid</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border-color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#f3961c</span> <span style="color: #993333;">transparent</span> <span style="color: #993333;">transparent</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div><p
style="text-align: left;">Dentro del demo podras observar el comportamiento y acceder a todo el CSS necesario para que puedas ver en detalle como funciona cada shape y así poder implementarlas o crear shapes propias.</p> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/css/speech-bubbles-css-solamente/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>5 Nuevos plugins para Wordpress</title><link>http://eliseos.net/wordpress/5-nuevos-plugins-wordpress/</link> <comments>http://eliseos.net/wordpress/5-nuevos-plugins-wordpress/#comments</comments> <pubDate>Mon, 08 Mar 2010 23:23:24 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[Wordpress]]></category> <category><![CDATA[plugin]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2742</guid> <description><![CDATA[El repositorio de Wordpress crece día a día y de eso no hay dudas. Diariamente nos encontramos con nuevos plugins que nos permiten extender las funcionalidades de Wordpress ]]></description> <content:encoded><![CDATA[<p
style="text-align: left;">El repositorio de Wordpress crece día a día y de eso no hay dudas. Diariamente nos encontramos con nuevos plugins que nos permiten extender las funcionalidades de Wordpress y facilitarnos el trabajo a la hora de trabajar con este magnifico <strong>CMS</strong>.</p><p><span
id="more-2742"></span></p><p
style="text-align: center;"><img
class="alignnone size-full wp-image-2744" title="5 Nuevos Plugins para Wordpress" src="http://eliseos.net/wp-content/uploads/2010/03/wp-plugin.jpg" alt="wp plugin 5 Nuevos plugins para Wordpress" width="500" height="250" /></p><h2><a
title="HiFi (Head Injection, Foot Injection)" href="http://wordpress.org/extend/plugins/hifi/">HiFi (Head Injection, Foot Injection)</a></h2><p
style="text-align: left;">Nos permite insertar <em>(injection</em>) porciones de código en el <em>Footer</em> y en <em>Header</em> de nuestro Theme, pero solamente cuando es necesario. Si estas escribiendo un tutorial y necesitas mostrar dentro de la entrada o pagina que trabaja como un demo online, muchas veces es necesario insertar <em>hojas de estilo</em> o algunas lineas de <em>javascript</em>.</p><p
style="text-align: left;">Este plugin crea un nuevo panel en nuestra entrada o pagina donde insertaremos esas porciones de código solo para el post pagina en cuestión.</p><h2><a
title="Hikari Titled Comments" href="http://wordpress.org/extend/plugins/hikari-title-comments/">Hikari Titled Comments</a></h2><p
style="text-align: left;">Como el titulo lo indica, nos ofrece la opción de permitirle a la persona que comenta en la entrada la chance de insertar un <strong>titulo</strong> a su comentario. Es una función que la podemos encontrar en <strong>Drupal</strong>, pero la extrañamos en <strong>Wordpress</strong>.</p><h2><a
title="Facebook Photo Fetcher" href="http://wordpress.org/extend/plugins/facebook-photo-fetcher/">Facebook Photo Fetcher</a></h2><p
style="text-align: left;">Una forma simple de insertar y crear galerías de imágenes en Wordpress usando un <strong>álbum</strong> de Facebook. Una vez activado solo necesitamos darle los permisos adecuados al plugin para conectarse a Facebook y seleccionaremos el Album que queremos mostrar en Wordpress. Este plugin trabaja con <em>shortcodes</em> a la hora de crear las galerías, por lo que su uso es de lo más simple.</p><h2><a
title="RSS Just Better" href="http://wordpress.org/extend/plugins/rss-just-better/">RSS Just Better</a></h2><p
style="text-align: left;">Ya he hablado aquí en Eliseos de como insertar cualquier RSS Feed en Wordpress, pero este plugin lo hace todavía mucho mas simple. Nos permite controlar cuantos items se mostraran, incluir la fecha de publicacion y la introducción. Funciona a modo de <em>widget</em> para incluir en el Sidebar o como <em>shortcode</em>, para incluirlo en las entradas o paginas.</p><h2><a
title="Facebook Share Statistics" href="http://wordpress.org/extend/plugins/facebook-share-statistics/">Facebook Share Statistics</a></h2><p
style="text-align: left;">Nos muestra en nuestro <strong>CP</strong> estadísticas y gráficos relativas a como se socializa nuestro Sitio en Facebook. Podemos ver, por ejemplo, la cantidad de usuarios que compartieron la entrada, la cantidad de &#8220;<em>like</em>s&#8221; que recibió un post, y muchos mas.</p> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/wordpress/5-nuevos-plugins-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Crea un Slider vistoso con jqFancyTransitions</title><link>http://eliseos.net/jquery/crea-slider-vistoso-jqfancytransitions/</link> <comments>http://eliseos.net/jquery/crea-slider-vistoso-jqfancytransitions/#comments</comments> <pubDate>Thu, 04 Mar 2010 22:58:41 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[jQuery]]></category> <category><![CDATA[slider]]></category> <category><![CDATA[slideshow]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2738</guid> <description><![CDATA[jqFancyTransitions es un Slideshow potenciado por jQuery que te permitirá crear Slideshows con la particularidad de añadir destacados efectos a cada transición, de ahi su nombre]]></description> <content:encoded><![CDATA[<p
style="text-align: left;"><a
title="jqFancyTransitions  slideshow with strip effects" href="http://workshop.rs/projects/jqfancytransitions/">jqFancyTransitions</a> es un Slideshow potenciado por <strong>jQuery</strong> que te permitirá crear <strong>Slideshows</strong> con la particularidad de añadir destacados efectos a cada transición, de ahí su nombre. La idea base de jqFancyTransitions es lograr el efecto cortina en las transiciones, junto con algunos efectos adicionales y la posibilidad de crear los nuestros.</p><p
style="text-align: center;"><a
href="http://workshop.rs/projects/jqfancytransitions/"><img
class="alignnone size-full wp-image-2739" title="jqFancyTransitions  slideshow with strip effects" src="http://eliseos.net/wp-content/uploads/2010/03/jqFancyTransitions.jpg" alt="jqFancyTransitions Crea un Slider vistoso con jqFancyTransitions " width="500" height="250" /></a></p><p
style="text-align: left;">Su funcionamiento es de lo mas simple, solo debemos crear un <em>container</em> con algunas imágenes dentro:</p><div
class="wp_syntax"><div
class="code"><pre class="html" style="font-family:monospace;">&lt;div id='slideshowHolder'&gt;
&lt;img src='img1.jpg' alt='img1' /&gt;
&lt;img src='img2.jpg' alt='img2' /&gt;
&lt;img src='img3.jpg' alt='img3' /&gt;
&lt;/div&gt;</pre></div></div><p
style="text-align: left;">Y luego iniciar el plugin:</p><div
class="wp_syntax"><div
class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#slideshowHolder'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">jqFancyTransitions</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> width<span style="color: #339933;">:</span> <span style="color: #CC0000;">400</span><span style="color: #339933;">,</span> height<span style="color: #339933;">:</span> <span style="color: #CC0000;">300</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div><p
style="text-align: left;">Esta es la configuración por defecto, donde solo indicamos el ancho y el alto del Slider, si lo necesitáramos (seguramente) podemos indicar que efecto necesitamos, delay en las transiciones, etc.</p><p
style="text-align: left;">jqFancyTransitions cuenta con un demo online, donde podrás observar todos los efecto que comente anteriormente junto con la <a
title="jqFancyTransitions Docs" href="http://workshop.rs/2009/12/image-gallery-with-fancy-transitions-effects/">documentación necesaria</a>.Y por ultimo, este plugin prueba ser compatible con Safari 2+, Internet Explorer 6+, Firefox 2+, Google Chrome 3+, Opera 9+.</p> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/jquery/crea-slider-vistoso-jqfancytransitions/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Obtene Screenshots de cualquier sitio en Wordpress</title><link>http://eliseos.net/wordpress/obtene-screenshots-cualquier-sitio-wordpress/</link> <comments>http://eliseos.net/wordpress/obtene-screenshots-cualquier-sitio-wordpress/#comments</comments> <pubDate>Wed, 03 Mar 2010 20:41:51 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[Wordpress]]></category> <category><![CDATA[imagenes]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2730</guid> <description><![CDATA[Hoy a través de Wpbeginner me entero de la existencia del plugin BM Shots, el cual nos permite realizar screenshots de un sitio en concreto con el API de Wordpress]]></description> <content:encoded><![CDATA[<p
style="text-align: left;">Hoy a través de <a
title="WP  Beginner" href="http://www.wpbeginner.com/plugins/an-automated-way-of-taking-website-screenshot-in-wordpress/">Wpbeginner </a>me entero de la existencia del plugin <a
title="BM Shots" href="http://www.binarymoon.co.uk/projects/bm-shots-automated-screenshots-website/"><strong>BM Shots</strong></a>, el cual nos permite realizar screenshots de un sitio en concreto con el API de Wordpress. Existen varios servicios que nos brindan un servicio parecido, pero que mejor que ser fiel a Wordpress?</p><p
style="text-align: left;">Un ejemplo claro de uso se puede ver en <a
title="WPvote" href="http://wpvote.com"><strong>WPvote</strong></a>, donde cada articulo esta acompañado de su respectiva screenshot.</p><p
style="text-align: left;">A modo de ejemplo del funcionamiento del API, esta es una imagen generada para que aprecien el resultado final.</p><p
style="text-align: center;"><img
src="http://s.wordpress.com/mshots/v1/http%3A%2F%2Feliseos.net%2F?w=550" alt="Eliseos.net | Wordpress. jQuery and Coffee" title="Eliseos.net | Wordpress. jQuery and Coffee" /></p><div
class="wp_syntax"><div
class="code"><pre class="html" style="font-family:monospace;">http://s.wordpress.com/mshots/v1/http%3A%2F%2Feliseos.net%2F?w=550</pre></div></div></p><h2>Uso</h2><p
style="text-align: left;">Su utilización es muy sencilla. y depende de los planes que tengas en mente, básicamente podes mostrar las capturas por medio de <em><code>shortcodes</code></em>o por medio de una <em><code>función</code></em>, directamente en nuestro Theme.</p><h2>Shortcode</h2><p
style="text-align: left;">Esta puede ser la opción fácil mas simple de implementar ya que no es necesario editar nuestro Theme. Solo sigue este formato:</p><div
class="wp_syntax"><div
class="code"><pre class="html" style="font-family:monospace;">[browsershot url=&quot;http://eliseos.net&quot; width=&quot;550&quot;]</pre></div></div><p
style="text-align: left;">El valor de la <strong>URL </strong>representa el sitio en el que vamos a realizar la captura y <strong>width </strong>el ancho deseado. Casi no tenemos restricciones en nuestro ancho de la captura, por lo que podrás integrar la imagen a tu diseño sin problemas.</p><h2>PHP Function</h2><p
style="text-align: left;">Dentro de nuestro Theme, llamaremos a la función <em><code>bm_mshot</code></em>:</p><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: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'http://eliseos.net/'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$width</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">550</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> bm_mshot <span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #339933;">,</span> <span style="color: #000088;">$width</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><p
style="text-align: left;">Los valores son los mismos que para el shortcode, por lo que no encontraras mayores dificultades.</p><p
style="text-align: left;">Por ultimo el autor nos señala que es las imágenes no se generan instantáneamente, sino que tardan unos segundos. En algunos sitios ese tiempo es mayor y en otros menor.</p> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/wordpress/obtene-screenshots-cualquier-sitio-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Utiliza el tag &lt;video&gt; en todos los navegadores</title><link>http://eliseos.net/general/utiliza-tag-video-todos-navegadores/</link> <comments>http://eliseos.net/general/utiliza-tag-video-todos-navegadores/#comments</comments> <pubDate>Mon, 01 Mar 2010 22:56:21 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[html5]]></category> <category><![CDATA[jQuery]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2713</guid> <description><![CDATA[Con html5media lograremos poder utilizar el nuevo tag &#60;video&#62; (HTML5) para poder reproducir videos en la mayoría de los navegadores que no soportan dicho tag]]></description> <content:encoded><![CDATA[<p
style="text-align: left;">Con <a
title="html5media" href="http://code.google.com/p/html5media/">html5media </a>lograremos poder utilizar el nuevo tag <em>&lt;video&gt;</em> (HTML5) para poder reproducir videos en la mayoría de los navegadores que no soportan dicho tag.</p><p
style="text-align: center;"><a
href="http://code.google.com/p/html5media/"><img
src="http://eliseos.net/wp-content/uploads/2010/03/html5media.jpg" alt="html5media Utiliza el tag &lt;video&gt; en todos los navegadores" title="html5media" width="500" height="250" class="alignnone size-full wp-image-2715" /></a></p><p
style="text-align: left;">Si el visitante utiliza un navegador no soportado para el tag <em>&lt;video&gt;</em>, el plugin reemplazara el tag por el reproductor <a
title="Flowplayer" href="http://flowplayer.org/">Flowplayer</a>, logrando así una consistencia en todos los navegadores.</p><p
style="text-align: left;">Este plugin soporta los formatos <strong>MP4</strong>, utilizando el codec <em>h.264 </em>y el <strong>OGV </strong>a través del codec <em>Theora</em>. Como si fuera poco, en html5media disponemos una serie de controles para tomar control sobre el video; como ser:</p><ul><li>Control: Posibilidad de mostrar los botones (controles) del reproductor</li><li>Autobuffer: Comenzar a cargar el video automáticamente</li><li>Autoplay: Reproducir el video automáticamente</li><li>Loop: Reproducir el video constantemente</li><li>Splash image: añadir una imagen a modo de introducción el nuestro reproductor.</li></ul><p
style="text-align: left;">Para utilizar este maravilloso plugin, solo debemos realizar el llamado dentro de nuestro header:</p><div
class="wp_syntax"><div
class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://html5media.googlecode.com/svn/trunk/src/jquery.html5media.min.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div><p
style="text-align: left;">Y seguir la siguiente sintaxis:</p><div
class="wp_syntax"><div
class="code"><pre class="html" style="font-family:monospace;">&lt;video src=&quot;video.mp4&quot; width=&quot;320&quot; height=&quot;240&quot; controls autobuffer&gt;&lt;/video&gt;</pre></div></div><p
style="text-align: left;">Y si necesitáramos servir dos versiones del mismo video (Theora y h.254)</p><div
class="wp_syntax"><div
class="code"><pre class="html" style="font-family:monospace;">&lt;video class=&quot;video&quot; poster=&quot;cat.jpg&quot; width=&quot;352&quot; height=&quot;264&quot; controls autobuffer&gt;
    &lt;source src=&quot;cat.mp4&quot; type='video/mp4; codecs=&quot;avc1.42E01E, mp4a.40.2&quot;'&gt;
    &lt;source src=&quot;cat.ogv&quot; type='video/ogg; codecs=&quot;theora, vorbis&quot;'&gt;
&lt;/video&gt;</pre></div></div><p
style="text-align: left;">Por ultimo no te olvides que puedes<a
title="Demo html5media" href="http://static.etianen.com/html5media/"> visualizar un demo</a> del funcionamiento de este plugin.</p> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/general/utiliza-tag-video-todos-navegadores/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Crear un the_excerpt() personalizado en Wordpress</title><link>http://eliseos.net/wordpress/crear-the_excerpt-personalizado-wordpress/</link> <comments>http://eliseos.net/wordpress/crear-the_excerpt-personalizado-wordpress/#comments</comments> <pubDate>Fri, 26 Feb 2010 01:42:14 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[Wordpress]]></category> <category><![CDATA[hack]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2706</guid> <description><![CDATA[Trabajando en Wordpress, una de las cuestiones que mas resulta tediosa es no contar con las herramientas necesario para poder personalizar el the_excerpt() ese tag que solo nos muestra un adelanto de la entrada en el front]]></description> <content:encoded><![CDATA[<p
style="text-align: left;">Trabajando en Wordpress, una de las cosas que mas resulta tedioso es no contar con las herramientas necesarias para poder personalizar <em><code>the_excerpt()</code></em> ese tag que solo nos muestra un adelanto de la entrada en el front, el archivo y en las categorías. Siempre tenemos que recurrir a pequeños hacks, para personalizarlo a nuestro gusto.</p><p
style="text-align: left;">Hoy leyendo en <a
href="http://www.milienzo.com/2007/09/02/improving-wordpress-the_excerpt-template-tag/">Milienzo</a> encontré un hack que me pareció correcto de reproducir ya que podemos lograr una personalización del tag <em><code>the_excerpt()</code></em> casi perfecta.</p><h2>Problemas con the_excerpt()</h2><p
style="text-align: left;">Solo se muestran las primeras 55 palabras, no dándonos la posibilidad de acomodar ese numero. En cuanto el al formato, el tag limpia todos los tags HTML, por lo que no se muestran imágenes ni formato en los párrafos. Y por ultimo, en cuanto hablamos de javascript tenemos un gran problema ya que <em><code>the_excerpt()</code></em> no lo filtra, lo que trae como aparejado posibles problemas en el formato y vulnerabilidades.</p><p
style="text-align: left;">Lo que en milienzo nos plantean, es crear una nueva función para solucionar los problemas mencionados mas arriba.</p><h2>Comencemos</h2><p
style="text-align: left;">En tu archivo <em><code>functions.php</code></em> introduciremos esta nueva función</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> improved_trim_excerpt<span style="color: #009900;">&#40;</span><span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">''</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$text</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> get_the_content<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">']]&gt;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">']]&amp;gt;'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'@&lt;script[^&gt;]*?&gt;.*?&lt;/script&gt;@si'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strip_tags</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$text</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$excerpt_length</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">80</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$words</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">' '</span><span style="color: #339933;">,</span> <span style="color: #000088;">$text</span><span style="color: #339933;">,</span> <span style="color: #000088;">$excerpt_length</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$words</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&gt;</span> <span style="color: #000088;">$excerpt_length</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #990000;">array_pop</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$words</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			ray_push<span style="color: #009900;">&#40;</span><span style="color: #000088;">$words</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'[...]'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">implode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">' '</span><span style="color: #339933;">,</span> <span style="color: #000088;">$words</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span>
		<span style="color: #b1b100;">return</span> <span style="color: #000088;">$text</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div><p
style="text-align: left;">Al no estar &#8220;tocando&#8221; no los archivos del core de Wordpress podremos reproducir esta función en todos los Themes que necesitemos.</p><h2>Controlar el tamaño en the_excerpt()</h2><p
style="text-align: left;">En lugar de mostrar solo las primeras 55 palabras, digamos que solo mostraremos las primeras 80.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$excerpt_length</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">80</span><span style="color: #339933;">;</span></pre></div></div><p
style="text-align: left;">Para aumentar o disminuir las palabras, solo resta reemplazar el <strong>80</strong> por el numero deseado.</p><h2>Incluir tags HTML</h2><p
style="text-align: left;">Como lo mencione antes, al no poder contar con la posibilidad de mostrar dichos tags podemos encontrar problemas a la hora de dar formato</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strip_tags</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$text</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div><p
style="text-align: left;">En este caso estamos incluyendo siempre el tag <em><code>&lt;p&gt;</code></em> Si lo necesitáramos podríamos también incluir el tag <em><code>&lt;img&gt;</code></em> o los que deseemos. Solo tenemos que mencionar los tags uno al lado de otro.</p><h2>Remover todo el código javascript que no necesitamos</h2><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'@&lt;script[^&gt;]*?&gt;.*?&lt;/script&gt;@si'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div><p
style="text-align: left;">Esta simple linea, nos ahorrara futuros dolores de cabeza.</p><p
style="text-align: left;">Ahora solo resta indicar nuestro nuevo filtro, otra vez dentro de <em><code>functions.php</code></em> insertamos:</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;">remove_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'get_the_excerpt'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'wp_trim_excerpt'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'get_the_excerpt'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'improved_trim_excerpt'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div><h2>Implementación</h2><p
style="text-align: left;">Solo nos queda integrar este nuevo <em><code>the_excerpt()</code></em> mejorado dentro de nuestro Theme reemplazando el <em><code>the_excerpt()</code></em> original por nuestro el nuevo y flamante tag:</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> improved_trim_excerpt<span style="color: #009900;">&#40;</span><span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></div></div><p
style="text-align: left;">Como lo notaras el hack es bastante flexible y podemos lograr buenos resultado con pocas lineas de código.</p> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/wordpress/crear-the_excerpt-personalizado-wordpress/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>MultiEdit: Editar paginas en Wordpress dinamicamente</title><link>http://eliseos.net/wordpress/multiedit-editar-paginas-wordpress-dinamicamente/</link> <comments>http://eliseos.net/wordpress/multiedit-editar-paginas-wordpress-dinamicamente/#comments</comments> <pubDate>Tue, 23 Feb 2010 23:13:12 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[Wordpress]]></category> <category><![CDATA[plugin]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2702</guid> <description><![CDATA[Seguramente alguna vez te ha sucedido que cuentas con una pagina en Wordpress la cual editas regularmente.Dentro de esta pagina tenemos el contenido que genera el loop, una contenido estático a la derecha y otro contenido estático al pie]]></description> <content:encoded><![CDATA[<p
style="text-align: left;">Seguramente alguna vez te ha sucedido que cuentas con una pagina en Wordpress la cual editas regularmente. Dentro de esta pagina tenemos el contenido que genera el <strong>loop</strong>, una contenido estático a la derecha y otro contenido estático al pie.</p><p
style="text-align: left;">A la hora de editar dicha pagina, no tenemos muchas mas opciones que <em>&#8220;meter mano&#8221;</em> al código directamente, pero que tal si pudiéramos editar cada segmento de la pagina como editamos las entradas, es decir con el editor <a
title="WYSIWYG TinyMCE" href="tinymce.moxiecode.com">WYSIWYG TinyMCE</a>?</p><p
style="text-align: left;">Aquí es donde entra a jugar el <a
title="The Page.ly MultiEdit Plugin" href="http://blog.page.ly/multiedit-plugin/">Plugin MultiEdit</a>, el cual <strong>creara regiones</strong> editables dentro de nuestra pagina, para poder trabajar con TinyMCE como si estuviéramos trabajando con una entrada normal.</p><p
style="text-align: left;">MultiEdit creara 4 pestañas donde podremos crear y editar el contenido que necesitemos en 4 regiones de la pagina: El contenido normal, al pie, a la izquierda y a la derecha.</p><p
style="text-align: left;">Cada región almacena el contenido creado como si se tratara de un <em><code>custom field</code></em>, por ende si borramos o desactivamos el plugin nuestro contenido no se perdería.</p><h2>Instrucciones</h2><p
style="text-align: left;">Necesitas una copia de <a
title="The Page.ly MultiEdit Plugin" href="http://blog.page.ly/multiedit-plugin/">Plugin MultiEdit</a>, instala el plugin y activalo.</p><p
style="text-align: left;">Debemos crear una nueva Plantilla personalizada (<em><code>page template</code></em>) con el siguiente formato:</p><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: #666666; font-style: italic;">/*
Template Name: MiNombre
MultiEdit: Right, Bottom, Left
*/</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><p
style="text-align: left;"><em><code>Right, bottom, y left</code></em> son las zonas o bloques que se añadirían a la pagina.</p><p
style="text-align: left;">Dentro de la nueva plantilla solo necesitamos definir las zonas, para este ejemplo el contenido al pie.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;">&lt;div id=&quot;pie_de_la_pagina&quot;&gt;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> multieditDisplay<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Bottom'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/div</pre></div></div><p
style="text-align: left;">Por ultimo a la hora de crear o editar una pagina utilizaremos la plantilla que se creo anteriormente y podremos ver nuestro nuevo panel de administración para la pagina.</p><p
style="text-align: center;"><a
href="http://blog.page.ly/multiedit-plugin/"><img
src="http://eliseos.net/wp-content/uploads/2010/02/MultiEdit-Panel.jpg" alt="MultiEdit Panel MultiEdit: Editar paginas en Wordpress dinamicamente" title="MultiEdit Panel" width="500" height="250" class="alignnone size-full wp-image-2703" /></a></p><h2>Consideraciones finales</h2><p
style="text-align: left;">Pareciera ser un proceso un tanto engorroso, pero, como lo mencione al principio de esta forma podremos ahorrarnos un tiempo considerable a la hora de trabajar con una pagina que editamos constantemente.</p><p
style="text-align: left;">Este plugin solo trabaja correctamente dentro del editor visual, y no hace magia; por lo que el estilo via CSS es requerido para lograr una buena presentación</p> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/wordpress/multiedit-editar-paginas-wordpress-dinamicamente/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>YoxView: Una alternativa para Lightbox</title><link>http://eliseos.net/jquery/yoxview-alternativa-para-lightbox/</link> <comments>http://eliseos.net/jquery/yoxview-alternativa-para-lightbox/#comments</comments> <pubDate>Mon, 22 Feb 2010 22:44:04 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[jQuery]]></category> <category><![CDATA[Lightbox]]></category> <category><![CDATA[slideshow]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2698</guid> <description><![CDATA[YoxView es otro clon del ya conocido Lightbox, con la salvedad de estar potenciado por jQuery. A diferencia de otros clones este lightbox cuanta con algunas opciones que lo hacen una alternativa mas que interesante]]></description> <content:encoded><![CDATA[<p
style="text-align: left;"><a
title="YoxView jQuery image viewer plugin" href="http://www.yoxigen.com/yoxview/Default.aspx">YoxView</a> es otro clon del ya conocido Lightbox, con la salvedad de estar potenciado por jQuery.</p><p
style="text-align: center;"><a
href="http://www.yoxigen.com/yoxview/Default.aspx"><img
class="alignnone size-full wp-image-2699" title="YoxView jQuery image viewer plugin" src="http://eliseos.net/wp-content/uploads/2010/02/YoxView.jpg" alt="YoxView YoxView: Una alternativa para Lightbox" width="500" height="250" /></a></p><p><span
id="more-2698"></span></p><p
style="text-align: left;">A diferencia de otros clones este lightbox cuanta con algunas opciones que lo hacen una alternativa mas que interesante:</p><ul><li>Las imágenes son se &#8220;auto-acomodan&#8221; a la resolución de pantalla</li><li>Se puede hacer un pre-cache de las imágenes, para mejorar la experiencia del usuario</li><li>Múltiples instancias de la misma imagen</li><li>Multilenguaje, el plugin cuenta con los packs de lenguajes para su traducción</li><li>Slideshow automático</li><li>Control de las transiciones a través del teclado</li><li>SEO amigable, los spiders almacenaran tanto los links de las thumbnails como los links de la imagen original</li></ul> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/jquery/yoxview-alternativa-para-lightbox/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>BLANK WordPress Theme para comenzar a maquetar</title><link>http://eliseos.net/wordpress/blank-wordpress-theme-comenzar-maquetar/</link> <comments>http://eliseos.net/wordpress/blank-wordpress-theme-comenzar-maquetar/#comments</comments> <pubDate>Wed, 17 Feb 2010 22:32:17 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[Wordpress]]></category> <category><![CDATA[framework]]></category> <category><![CDATA[Theme]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2692</guid> <description><![CDATA[Hace algunos meses les hable de Starkers, un Theme base para comenzar a maquetar en Wordpress. Hoy Chris, desde Diggin into Wordpress, nos acerca una versión similar para utilizar como referencia a la hora de crear un Theme]]></description> <content:encoded><![CDATA[<p
style="text-align: left;">Hace algunos meses les hable de <a
href="http://eliseos.net/wordpress/starkers-un-theme-base-para-disenar-en-wordpress/">Starkers</a>, un Theme base para comenzar a maquetar en Wordpress. Hoy Chris, desde <a
title="BLANK WordPress Theme" href="http://digwp.com/2010/02/blank-wordpress-theme/">Diggin into Wordpress</a>, nos acerca una versión similar para utilizar como referencia a la hora de crear un Theme.</p><p
style="text-align: center;"><a
href="http://digwp.com/2010/02/blank-wordpress-theme/"><img
class="alignnone size-full wp-image-2693" title="BLANK WordPress Theme" src="http://eliseos.net/wp-content/uploads/2010/02/BLANK-WordPress-Theme.jpg" alt="BLANK WordPress Theme BLANK WordPress Theme para comenzar a maquetar" width="500" height="250" /></a></p><p><span
id="more-2692"></span></p><p
style="text-align: left;">Muchos diseñadores cuentan con un Theme de estas características para agilizar el trabajo, ya que muchos características se repiten de manera mecánica cuando de diseñar un Theme se trata.</p><h2>Características:</h2><ul><li>Bien comentado y semánticamente presentado</li><li>XHTML 1.0 STRICT</li><li>Widget-Ready</li><li>Títulos optimizados en SEO</li><li>Un archivo <em><code>functions.php</code></em> con algunas funciones básicas</li><li>Una hoja de estilo con las clases y preceptos genéricos</li></ul><p
style="text-align: left;">Por ultimo, este Theme es libre de ser usado en proyectos, tanto personales como comerciales.</p> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/wordpress/blank-wordpress-theme-comenzar-maquetar/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Encuentra diferencias en dos archivos PSD al mismo tiempo</title><link>http://eliseos.net/download/encuentra-diferencias-dos-archivos-psd-mismo-tiempo/</link> <comments>http://eliseos.net/download/encuentra-diferencias-dos-archivos-psd-mismo-tiempo/#comments</comments> <pubDate>Tue, 16 Feb 2010 20:46:48 +0000</pubDate> <dc:creator>Alexis</dc:creator> <category><![CDATA[Download]]></category> <category><![CDATA[Photoshop]]></category><guid
isPermaLink="false">http://eliseos.net/?p=2679</guid> <description><![CDATA[ComparePSD es una de esas aplicaciones que a veces nos llegan del cielo a todos aquellos que trabajamos dia a dia con Photoshop]]></description> <content:encoded><![CDATA[<p
style="text-align: left;"><a
title="ComparePSD" href="http://pixelnovel.com/comparepsd/">ComparePSD </a>es una de esas aplicaciones que a veces nos <strong>llegan del cielo</strong> a todos aquellos que trabajamos día a día con Photoshop.</p><p
style="text-align: center;"><a
href="http://pixelnovel.com/comparepsd"><img
class="alignnone size-full wp-image-2681" title="ComparePSD" src="http://eliseos.net/wp-content/uploads/2010/02/ComparePSD.jpg" alt="ComparePSD Encuentra diferencias en dos archivos PSD al mismo tiempo" width="500" height="250" /></a></p><p
style="text-align: left;">Imagina por un momento que te encuentras buscando un efecto en un Layer pero no recuerdas en que archivo estaba; puede ser en <em>Untitled1.PSD</em>, <em>Untitled2.PSD</em> y <em>Untitled3.PSD</em>. Para encontrar dicho efecto, tendríamos que abrir archivo por archivo y revisar cada layer hasta dar con el estilo buscado.</p><p
style="text-align: left;">Aquí es cuando ComparePSD entra en juego, esta pequeña utilidad se encargara de revisar layer por layer y efecto por efecto y presentara la estructura de los archivo PSD en dos columnas para poder comparar los resultados.</p><p
style="text-align: left;">De momento esta aplicación solo esta disponible para Windows, por lo que los usuarios de MAC tendremos que esperar un poco mas.</p> ]]></content:encoded> <wfw:commentRss>http://eliseos.net/download/encuentra-diferencias-dos-archivos-psd-mismo-tiempo/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: wp06.secure-dns.net @ 2010-03-10 08:28:37 by W3 Total Cache -->