<?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>/dev/GON.cl &#187; Desarrollo</title>
	<atom:link href="http://blog.gon.cl/en/cat/development/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.gon.cl</link>
	<description>blog respaldo anti-amnesia</description>
	<lastBuildDate>Thu, 05 Aug 2010 15:54:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>My first PPA repository</title>
		<link>http://blog.gon.cl/en/post/793</link>
		<comments>http://blog.gon.cl/en/post/793#comments</comments>
		<pubDate>Mon, 24 Aug 2009 22:36:32 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[9.04]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[kopete]]></category>
		<category><![CDATA[pidgin]]></category>
		<category><![CDATA[ppa]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=793</guid>
		<description><![CDATA[Sorry, this entry is only available in Español.
]]></description>
			<content:encoded><![CDATA[<p>Sorry, this entry is only available in <a href="http://blog.gon.cl/cat/development/feed">Español</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/793/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Respect you yourself should (Joomla Critique #1)</title>
		<link>http://blog.gon.cl/en/post/676</link>
		<comments>http://blog.gon.cl/en/post/676#comments</comments>
		<pubDate>Wed, 11 Mar 2009 06:29:27 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[joomla]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[crítica]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=676</guid>
		<description><![CDATA[While working to re-build a site formerly used joomla 1.0, I had a little trouble in the control panel of the new 1.5, because I was leaving an error message.
Fortunately it was not fatal, since it could also modify the site parameters without much inconvenience. But it is not comfortable to see that something is [...]]]></description>
			<content:encoded><![CDATA[<p>While working to re-build a site formerly used joomla 1.0, I had a little trouble in the control panel of the new 1.5, because I was leaving an error message.</p>
<p>Fortunately it was not fatal, since it could also modify the site parameters without much inconvenience. But it is not comfortable to see that something is not right, except for a large system such as Joomla. </p>
<p>The error indicated that I had an XML file that was not being parsed properly, but it&#8217;s not saying which file or which was wrong.</p>
<p>Then I downloaded a backup of the site, and replicate it on my local machine to find out the error. I remembered that there are thousands of Linux applications for console enough powerful to <strong>parse</strong> and <strong>validate</strong> the XML&#8217;s from my site.</p>
<p>I had <a href="http://blog.gon.cl/post/12">an enjoyable experience with the <strong>find</strong> command</a>. But I was missing the command to validate an xml file. Searching the web, I found that possibly the command <strong>xmllint</strong> I could. But ultimately did not help, this reveals a small unexpected detail.</p>
<p><strong>xmllint</strong> has an option to validate, but to do this work, requires that 1) the XML file using a defined DTD or 2) it passes a DTD as a parameter. Testing without using a DTD by parameter, I tried the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">find. <span style="color: #660033;">-name</span> <span style="color: #ff0000;">&quot;*.xml&quot;</span> <span style="color: #660033;">-exec</span> xmllint <span style="color: #660033;">--noout</span> <span style="color: #660033;">--valid</span> <span style="color: #ff0000;">&quot;{}&quot;</span> \;</pre></div></div>

<p>Unfortunately, the result was not what I expected. ALL XML files except one, were invalid because they didn&#8217;t have defined the DTD. Thanks to that file that it was, I found that joomla has on its site a DTD file so that developers include it in yours XML configuration files. In this way, the developer requires that your XML files have the structure that the system requires.</p>
<p>The worst&#8230; that single valid file, was a third-party plugin and not the official developers. That is, the official joomla developers do not respect their own rules when writing code.</p>
<p>Finally, xmllint was not what I was looking for, and only had to check the file was malformed (bad labels closed nested bad &#8230;). As I did not know, see on a mailing list (the one I have in the list of <a href="http://blog.gon.cl/foss">FOSS Communities</a>), where I got the solution: <strong>xmlwf</strong>.</p>
<p>Just change the above command with the following matter and fixed:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">find. <span style="color: #660033;">-name</span> <span style="color: #ff0000;">&quot;*.xml&quot;</span><span style="color: #660033;">-exec</span> xmlwf <span style="color: #ff0000;">&quot;{}&quot;</span> \;</pre></div></div>

<p>I found the causers (they were 2), which I fixed and gave the matter ended.<br />
But I stayed with the bitter taste of the disregard that the Joomla developers as a mere detail. What gives me confidence for when a new system update?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/676/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>When a comment changes the meaning</title>
		<link>http://blog.gon.cl/en/post/515</link>
		<comments>http://blog.gon.cl/en/post/515#comments</comments>
		<pubDate>Wed, 14 Jan 2009 17:39:05 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[Desarrollo]]></category>
		<category><![CDATA[programación]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=515</guid>
		<description><![CDATA[Looking at foreign source code for the first time, is like an archaeologist finding a lost civilization.
Unless we have on a rosseta stone (or better still, we know the language lost), the unique form to decode it is &#8220;test and error&#8221;.
Recent days, had an unusual fail in my application fingerprint reader. Sometimes saving the template [...]]]></description>
			<content:encoded><![CDATA[<p>Looking at foreign source code for the first time, is like an archaeologist finding a lost civilization.</p>
<p>Unless we have on a rosseta stone (or better still, we know the language lost), the unique form to decode it is &#8220;test and error&#8221;.</p>
<p>Recent days, had an unusual fail in my application fingerprint reader. Sometimes saving the template of the fingerprint in the database, I wanted to save a second or third reading, but still kept the first. In addition, I identified only 1 fingerprint of all saved.</p>
<p>Reviewing the original example from development kit, I found the reason of the error and my confusion.</p>
<p>While I was developing C# code of fingerprint reader, I found a method interacting with the database, but declared in an illegal place. A few months ago, the first thing I did was to move that portion of code to another file that corresponds to my &#8220;Model&#8221; layer. The line that caused my confusion was as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">public</span> <span style="color: #FF0000;">int</span> identify<span style="color: #000000;">&#40;</span><span style="color: #0600FF;">ref</span> <span style="color: #FF0000;">int</span> score, <span style="color: #0600FF;">ref</span> AxGrFingerXLib.<span style="color: #0000FF;">AxGrFingerXCtrl</span> grfingerx<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    GRConstants result<span style="color: #008000;">;</span>
    <span style="color: #FF0000;">int</span> id<span style="color: #008000;">;</span>
    SqlDataReader rs<span style="color: #008000;">;</span>
    TTemplate tptRef<span style="color: #008000;">;</span> <span style="color: #008080; font-style: italic;">// &amp;lt;= FAIL HERE</span>
&nbsp;
    <span style="color: #008080; font-style: italic;">// More code...</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>At the head of the method was a comment that said something like &#8220;compare the reader&#8217;s template against all the templates obtained from the database&#8221;. Therefore, I assumed that &#8220;TTemplate tptRef&#8221; meant &#8220;Fingerprint of reference&#8221;. I do not know what concept of &#8220;measure of reference&#8221; was the programmer&#8217;s example, but for me, a rule or a weight is a unit of reference. Ie &#8220;My template is compared with yours&#8221;.</p>
<p>However, the programmer for example, &#8220;Footprint of reference&#8221; mean &#8220;each of the templates in the database&#8221;. That is to say: &#8220;My template in each turn of the cycle is the same in the database and compared with your reading&#8221;.</p>
<p>That simple change of meaning, ruined the code. Now, after long having made these changes, I got to understand how this method works only reading the source code,  but I would have been forced to investigate more thoroughly &#8220;where the fingerprint reading was clogged&#8221;.</p>
<p>I learned how important it is to look at all the interpretations that may have documents or comments. If we are the ones that document, then avoid a breakdown that could change the meaning.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/515/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Juggling with 900MB SQL Database</title>
		<link>http://blog.gon.cl/en/post/508</link>
		<comments>http://blog.gon.cl/en/post/508#comments</comments>
		<pubDate>Tue, 13 Jan 2009 08:19:42 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[Desarrollo]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[respaldo]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=508</guid>
		<description><![CDATA[And the weight, wan&#8217;t the joke.
Following the delayed &#8220;fingerprint reader for access control&#8221; project , I ran into a problem of those &#8230;
The present application of access control works with SQL Server 7 on Windows 2000, a bad living relic. The tool of handling of the data base (SQL Management) associated to that version, is [...]]]></description>
			<content:encoded><![CDATA[<p>And the weight, wan&#8217;t the joke.</p>
<p>Following the delayed &#8220;<a href="http://blog.gon.cl/2008/09/06/desafio-controlar-acceso-a-traves-de-huellas/">fingerprint reader for access control</a>&#8221; project , I ran into a problem of those &#8230;</p>
<p>The present application of access control works with SQL Server 7 on Windows 2000, a <span style="text-decoration: line-through;">bad</span> living relic. The tool of handling of the data base (SQL Management) associated to that version, is a true mystery in functionalities. For some reason, &#8220;Generate SQL querys&#8221; from a data base, it only generates the models of the tables, but no record. Finally I could not recover this data, because generating a full backup or dumping to a flat text file, threw a pretty &#8220;unknown error&#8221;.</p>
<p>Not who did it, but today I received a DVD with 900MB of tables and records of those bases. The file was a backup <strong>respaldo.bkp</strong>.</p>
<p>The first thing I did was try to play with him :p :</p>
<p><span id="more-508"></span></p>
<p>When I try to restore the backup in my SQL Server 2008 (10.0), I stopped by incompatible versions </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/508/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migration FAIL! (and a wordpress critique #1)</title>
		<link>http://blog.gon.cl/en/post/464</link>
		<comments>http://blog.gon.cl/en/post/464#comments</comments>
		<pubDate>Thu, 08 Jan 2009 23:21:59 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[crítica]]></category>
		<category><![CDATA[openid]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=464</guid>
		<description><![CDATA[I have not yet fully completed the migration of this blog, but while I have had every experience &#8230;
Among the most serious, the worst was having deleted the previous blog at WordPress.com
I do that to avoid the content duplication. Unfortunately, forget the little detail about my URL, which was used as an Openid address. I [...]]]></description>
			<content:encoded><![CDATA[<p>I have not yet fully completed the migration of this blog, but while I have had every experience &#8230;</p>
<p>Among the most serious, the worst was having deleted the previous blog at WordPress.com</p>
<p>I do that to avoid the content duplication. Unfortunately, forget the little detail about my URL, which was used as an Openid address. I was 3 feeds pointing to <a href="http://twitter.com">twitter</a> accounts through <a href="http://twitterfeed.com/">twitterfeed</a>. But now I can&#8217;t log on twitterfeed, it only uses openid. As I was using the WordPress.com account as openid and now I can&#8217;t use it, can&#8217;t go to administer the accounts in twitterfeed. EPIC OWNED :retard: .</p>
<p>At least, the only solution I have is to change the password to the twitter accounts </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/464/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gonium has new blog</title>
		<link>http://blog.gon.cl/en/post/402</link>
		<comments>http://blog.gon.cl/en/post/402#comments</comments>
		<pubDate>Mon, 29 Dec 2008 09:52:23 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[gonium]]></category>
		<category><![CDATA[temas wordpress]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=402</guid>
		<description><![CDATA[Since I have the space, I will use it.
One place, to explain things
While I do not have a blog module functional for Gonium, I have no further use the enemy (Wordpress). Which is not bad at all, but just the opposite.

While I do not have a blog module functional Gonium, I have no further use [...]]]></description>
			<content:encoded><![CDATA[<p>Since I have the space, I will use it.</p>
<h2>One place, to explain things</h2>
<p>While I do not have a blog module functional for Gonium, I have no further use the enemy (Wordpress). Which is not bad at all, but just the opposite.</p>
<p><a onclick="javascript:pageTracker._trackPageview('/outbound/article/gon.boaboa.org');" href="http://gon.boaboa.org/wblog/"><img class="aligncenter size-full wp-image-400" title="gonium_blog_120x60" src="http://blog.gon.cl/wp-content/uploads/2008/12/gonium_blog_120x60.png" alt="gonium_blog_120x60" width="120" height="60" /></a></p>
<p>While I do not have a blog module functional Gonium, I have no further use to the enemy (Wordpress). Which is not bad at all, but just the opposite.</p>
<p>An important detail: the blog, the project on Google Code, the messages on Twitter, the svn commits and autogenerada API documentation, all will remain mainly in English.</p>
<p>The reason for this is simple: <strong>universality</strong>. Unfortunately, although I do not like the idea, English is the most universal. Not because of Chilean origin, I would like just a few friends try it. I hope that everyone has the possibility to use it. Who tells me that someone is already looking at the code? And if someone spoke in Italian? Or French? Or German? Or Chinese?</p>
<p>Moreover, the experience in the <a href="http://gdt.sourceforge.net/">GDT</a>, I noticed the users (mostly Spanish-speaking), the displeasure of using classes / objects and methods named in Spanish. I do not understand these odd habits, but they are frequent and widespread. In fact, <a href="http://edsiper.linuxchile.cl/blog/">Eduardo Silva</a>, in his speech at the <a href="http://monkeyd.sourceforge.net/blog/">Monkey HTTP Daemon</a> at <a href="http://2008.encuentrolinux.cl/">Linux Meeting</a>, mentioned the same problem with its Spanish-speaking users, so he decided to simply leave the mailing list, blog, documentation, etc. in English. This time, take the same idea and I will see what happens.</p>
<p>For now, I do not expect an explosion of users, while functional version lacking, but I hope ideas, comments and general feedback. I have been asking things like &#8220;Are you recruiting people?&#8221; This is a relief for those minutes that I question the &#8220;What the hell am I doing something that only I care.&#8221; If anything, I am recruiting people :B . Zend Framework Developers? Welcome! Any contribution will be equally well received, either from a <strong>PHP</strong>ers, <strong>jQuery</strong>st, <strong>CSS</strong>ers, Translator, Web Designer or Artist are fully welcome.</p>
<p><span id="more-402"></span></p>
<h2>Confirming what I thought</h2>
<p>Through all this, I had an occurrence like &#8220;oh, what if I do the same template Gonium but for wordpress.&#8221; That is enough to get a little hand in creating a theme. Once again confirm what I thought long ago about wordpress: is spaghetti.</p>
<p>It really is one of the APIs (if it can even call his &#8220;codex&#8221;) most horrific I have seen. Because I participate in <a href="http://tecnosquad.org">tecnosquad.org</a> spend a day for &#8220;the epic quest for a new theme&#8221;, that afternoon I collected a lot of attractive themes, and saved&#8221; just in case. &#8221; Finally we found nothing we do feel that &#8220;wow, this themes looks like perfect for tecnosquad&#8221;, but the search also brought me a good result.</p>
<p>I took one of those issues to code my own. That was when I noticed the importance of certain details.</p>
<p>The first is about the size of a theme. For example the most &#8220;professionals&#8221; often have more files, and even allow you to add option panels to the wordpress backend. These extra files, themes define their own functions, which have no common interface, each item implements his things to his liking. Some wore classes/objects, but most just loose functions.</p>
<p>Another important detail is that even if the &#8220;kernel&#8221; for templates are documented, just read a source file is chaotic. Almost none of pulchritude, I would even venture that none of the themes I downloaded (and there were many), not even had the code properly indented.
<p>One of the first things I learned with the Zend Framework, was the &#8220;Two Steps&#8221; design pattern for templates: a template layout that creates the skeleton of the page, and then add the content on this layout, which may come from other view scripts. In wordpress, there is simply no such thing. I did not look inside the code, but what I saw on the outside (templates), I want to give more &#8220;complete&#8221; once the first version of usable Gonium. I&#8217;m sure it would be a delight for designers.</p>
<p>Later, when I already can blogging calm in Gonium, I will migrate the content and I will reject wordpress. The main idea is more alive than ever: the objective is to create an content manager system of general porpuse, but WELL DONE.<br />
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/402/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to store data in a Secure Cookie (and a PHP FAIL)</title>
		<link>http://blog.gon.cl/en/post/392</link>
		<comments>http://blog.gon.cl/en/post/392#comments</comments>
		<pubDate>Thu, 25 Dec 2008 08:04:04 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[Desarrollo]]></category>
		<category><![CDATA[autenticación]]></category>
		<category><![CDATA[auth]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[criptografía]]></category>
		<category><![CDATA[hmac]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[seguridad]]></category>
		<category><![CDATA[zend auth]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=392</guid>
		<description><![CDATA[Sorry, this entry is only available in Español.
]]></description>
			<content:encoded><![CDATA[<p>Sorry, this entry is only available in <a href="http://blog.gon.cl/cat/development/feed">Español</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/392/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Chrome: Jurel tipo Salm&#243;n</title>
		<link>http://blog.gon.cl/en/post/365</link>
		<comments>http://blog.gon.cl/en/post/365#comments</comments>
		<pubDate>Fri, 12 Dec 2008 20:37:37 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[Navegador]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=365</guid>
		<description><![CDATA[Talla(*) para webmasters:



HTTP_USER_AGENT
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.19 (KHTML, like Gecko) Chrome/1.0.154.36 Safari/525.19



(*) Talla (espa&#241;ol chilensis): d&#237;cese de broma o humorada
]]></description>
			<content:encoded><![CDATA[<p>Talla(*) para webmasters:</p>
<table style="border-collapse:collapse;margin-left:auto;margin-right:auto;text-align:left;" border="0" cellpadding="3" width="600">
<tbody>
<tr>
<td class="e" style="border:1px solid #000000;font-family:sans-serif;font-size:75%;vertical-align:baseline;background-color:#ccccff;font-weight:bold;color:#000000;">HTTP_USER_AGENT</td>
<td class="v" style="border:1px solid #000000;font-family:sans-serif;font-size:75%;vertical-align:baseline;background-color:#cccccc;color:#000000;">Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.19 (KHTML, like Gecko) Chrome/1.0.154.36 Safari/525.19</td>
</tr>
</tbody>
</table>
<p>(*) Talla (espa&ntilde;ol chilensis): d&iacute;cese de broma o humorada</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/365/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gonium, nuevo demo y nuevos componentes</title>
		<link>http://blog.gon.cl/en/post/357</link>
		<comments>http://blog.gon.cl/en/post/357#comments</comments>
		<pubDate>Thu, 11 Dec 2008 04:17:46 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[datagrid]]></category>
		<category><![CDATA[docbook]]></category>
		<category><![CDATA[gonium]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[phpdocumentor]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=357</guid>
		<description><![CDATA[Gracias a la wena onda de Tecnoman, que se auspicio con hosting y me dejo hincharle las pelotas para que instalara PDO en un servidor en producci&#243;n, tengo el demo de Gonium en un hosting nuevo. Ahora intentar&#233; de alg&#250;n modo recompensar aquello, posteando m&#225;s seguido en tecnosquad.org.
Aprovechando eso, sub&#237; una copia m&#225;s reciente.
Hace unos [...]]]></description>
			<content:encoded><![CDATA[<p>Gracias a la <em>wena onda</em> de Tecnoman, que se auspicio con hosting <span style="text-decoration:line-through;">y me dejo hincharle las pelotas para que instalara PDO en un servidor en producci&oacute;n</span>, tengo el demo de Gonium en un <a href="http://gon.boaboa.org">hosting nuevo</a>. Ahora intentar&eacute; de alg&uacute;n modo recompensar aquello, posteando m&aacute;s seguido en <a href="http://tecnosquad.org">tecnosquad.org</a>.</p>
<p>Aprovechando eso, sub&iacute; una copia m&aacute;s reciente.</p>
<p>Hace unos d&iacute;as agregu&eacute; al trunk del repositorio, una copia propia del proyecto <cite><a href="code.google.com/p/zend-framework-datagrid/"><strong>zend-framework-datagrid</strong></a></cite>, con la diferencia de que mi copia permite traducirlo con Zend_Translate y los comentarios est&aacute;n corregidos. Tambi&eacute;n correg&iacute; unos <em>warnings</em> menores. Adem&aacute;s le cambi&eacute; el prefijo a las clases de &#8220;Core_&#8221; (originalmente en zf-datagrid) a &#8220;Rox_&#8221;, para darle concordancia a mi estructura de directorios. Podr&iacute;a decir entonces que es un peque&ntilde;o fork :B</p>
<p>Tambi&eacute;n agregu&eacute; todo jQuery UI al directorio p&uacute;blico. Una ejemplo de esto es la peque&ntilde;a demostraci&oacute;n con el efecto acorde&oacute;n que le agregu&eacute; al widget de Login.</p>
<p>Y por &uacute;ltimo, agregu&eacute; un directorio con XML&#8217;s en formato docbook, para poder usarlos en conjunto con la documentaci&oacute;n creada con phpDocumentor.</p>
<p>Espero tener una documentaci&oacute;n un poco m&aacute;s completa m&aacute;s adelante.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/357/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Gonium: Rompiendo el RoadMap</title>
		<link>http://blog.gon.cl/en/post/352</link>
		<comments>http://blog.gon.cl/en/post/352#comments</comments>
		<pubDate>Tue, 25 Nov 2008 23:16:10 +0000</pubDate>
		<dc:creator>gon</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[gonium]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://blog.gon.cl/?p=352</guid>
		<description><![CDATA[Sorry, this entry is only available in Español.
]]></description>
			<content:encoded><![CDATA[<p>Sorry, this entry is only available in <a href="http://blog.gon.cl/cat/development/feed">Español</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gon.cl/en/post/352/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.764 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-09-09 05:05:42 -->
