<?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>siwapp - Free online invoice system &#187; Siwapp</title>
	<atom:link href="http://www.siwapp.org/blog/category/siwapp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.siwapp.org/blog</link>
	<description>Free online invoice system</description>
	<lastBuildDate>Fri, 30 Dec 2011 18:27:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Siwapp 0.4.1 : new year&#8217;s gift</title>
		<link>http://www.siwapp.org/blog/2011/12/siwapp-0-4-1-new-years-gift/</link>
		<comments>http://www.siwapp.org/blog/2011/12/siwapp-0-4-1-new-years-gift/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 18:27:31 +0000</pubDate>
		<dc:creator>jzarate</dc:creator>
				<category><![CDATA[Important]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Siwapp]]></category>
		<category><![CDATA[0.4.1]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=236</guid>
		<description><![CDATA[It&#8217;s been a few months since siwapp 0.4 came to light. Keeping an eye on the users group has allowed us to quickly catch on some bugs. Fresh update for you to enjoy: Estimates needing to be saved three times bug corrected The default fonts are lighter than previous, also a wiki section on that [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a few months since siwapp 0.4 came to light.</p>
<p>Keeping an eye on the users group has allowed us to quickly catch on some bugs. Fresh update for you to enjoy:</p>
<ul>
<li>Estimates needing to be saved three times bug corrected</li>
<li>The default fonts are lighter than previous, also <a href="dev.siwapp.org/projects/siwapp/wiki/pdfFonts">a wiki section on that topic updated</a>.</li>
<li>some minor template glitchs corrected</li>
<li>error when deleting invoices corrected</li>
<li>error 500 when deleting customer fixed</li>
<li>added hungarian translation</li>
<li>customer name in cyrillic error corrected.</li>
</ul>
<p>&nbsp;</p>
<p>That&#8217;s pretty much it!! You the &#8220;usual suspects&#8221; know the <a href="http://www.siwapp.org/blog/siwapp-upgrade-guide/">drill</a>. If you&#8217;re new, we&#8217;ve got a <a href="http://www.siwapp.org/blog/siwapp-installation-guide/">drill</a> for you too&#8230;</p>
<p>&nbsp;</p>
<p>So, go on, <a href="http://www.siwapp.org/downloads/siwapp_0_4_1.beta.tar.gz">get your stuff</a> and head for new year&#8217;s eve celebration afterwards. I wish you a lot of using the app for the next year,  <img src='http://www.siwapp.org/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>Happy new year to everyone, btw.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/12/siwapp-0-4-1-new-years-gift/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Small issue upgrading PHP to 5.3</title>
		<link>http://www.siwapp.org/blog/2011/10/small-issue-upgrading-php-to-5-3/</link>
		<comments>http://www.siwapp.org/blog/2011/10/small-issue-upgrading-php-to-5-3/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 19:21:29 +0000</pubDate>
		<dc:creator>Carlos Escribano</dc:creator>
				<category><![CDATA[Important]]></category>
		<category><![CDATA[Siwapp]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=220</guid>
		<description><![CDATA[Although we are still in beta version, as we said over and over again, there are people who have installed Siwapp on their own server. If you&#8217;re one of those people, intrepid adventurer, and you have decided to try luck with the latest version of PHP (5.3), you can suddenly get a 500 error when [...]]]></description>
			<content:encoded><![CDATA[<p>Although we are still in beta version, as we said over and over again, there are people who have installed Siwapp on their own server. If you&#8217;re one of those people, intrepid adventurer, and you have decided to try luck with the latest version of PHP (5.3), you can suddenly get a 500 error when trying to access the application.<span id="more-220"></span></p>
<p>It is not my intention to enter into boring technical details, but think it is necessary a brief explanation. When you log into the application, it performs some checks for recurring invoices. These verifications are associated with other checks in the customers table that should have no effect in normal conditions.</p>
<p>Each customer is associated with an internal name that is generated from its own name. The programming associated with that task has not changed, but behaves differently in PHP5.2 and PHP 5.3: before accented vowels were removed, now they are replaced by non-accented vowels. Therefore, a customer whose name is &#8220;Fundación ABC&#8221; (&#8220;ABC Foundation&#8221;), in PHP 5.2 had an internal name such as &#8220;fundacinabc&#8221; but in PHP 5.3, the generated internal name is &#8220;fundacionabc&#8221;. As the internal name is used to decide if we create a new customer object, it is possible that a customer created in the old environment appear as nonexistent in the new environment, and the application will try to create it again as a new customer, producing the error.</p>
<p>Well, at the end it has not been such a short explanation.</p>
<h3>Solution</h3>
<p>If your customers do not have names with accented vowels or non US characters you probably will have no problem. If you get that error you can do one of these things:</p>
<ol>
<li>If you installed from a package downloaded from the web or you installed through subversion and you are in a tag (RELEASE_0_3_&#8230;), apply <a href="http://www.siwapp.org/blog/wp-content/uploads/2011/10/rebuildSlugsTask.diff_.zip">this patch</a>.</li>
<li>If you use subversion and you are in /trunk just update.</li>
<li>Wait to 0.4 version.</li>
</ol>
<p>In UNIX system you can apply the patch (assuming you copied and uncompressed it to the root of your install) doing:</p>
<pre>cd /path/to/siwapp
patch -p0 -i rebuildSlugsTask.diff</pre>
<p>It will patch a file and create another one.</p>
<p>In windows you can try reading <a href="http://drupal.org/node/60179" target="_blank">this</a> and <a href="http://drupal.org/node/75790#comment-2615716" target="_blank">this</a> first. However, an expert in Windows can leave a more precise instructions in the comments.</p>
<h3>Execute the task</h3>
<p>The patch added a task that must be executed in command line:</p>
<pre>php symfony siwapp:rebuild-slugs</pre>
<p>It will rebuild the internal names for all your customers and report the number of customers modified.</p>
<p>Thats all!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/10/small-issue-upgrading-php-to-5-3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>First translation in. Farsi!!!!</title>
		<link>http://www.siwapp.org/blog/2011/10/first-translation-in-farsi/</link>
		<comments>http://www.siwapp.org/blog/2011/10/first-translation-in-farsi/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 03:14:04 +0000</pubDate>
		<dc:creator>jzarate</dc:creator>
				<category><![CDATA[Siwapp]]></category>
		<category><![CDATA[0.4]]></category>
		<category><![CDATA[farsi]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=216</guid>
		<description><![CDATA[Thanks to the great contribution of Mohsen Ezzatpanah, the first siwapp translation is the persian one. I just tested the translation file and voila!!! the ui changed completely in a delicious way for my iso-8851-1 eyes. What can I say?? I&#8217;m fairly proud of having siwapp running on this ancient language.]]></description>
			<content:encoded><![CDATA[<p>Thanks to the great contribution of Mohsen Ezzatpanah, the first siwapp translation is the <a href="http://en.wikipedia.org/wiki/Persian_language">persian</a> one.</p>
<p>I just tested the translation file and voila!!! the ui changed completely in a delicious way for my iso-8851-1 eyes. </p>
<p>What can I say?? I&#8217;m fairly proud of having siwapp running on this ancient language.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/10/first-translation-in-farsi/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Siwapp 0.4 almost out. Call for translations!!!</title>
		<link>http://www.siwapp.org/blog/2011/10/siwapp-0-4-almost-out-call-for-translations/</link>
		<comments>http://www.siwapp.org/blog/2011/10/siwapp-0-4-almost-out-call-for-translations/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 11:36:47 +0000</pubDate>
		<dc:creator>jzarate</dc:creator>
				<category><![CDATA[Important]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Siwapp]]></category>
		<category><![CDATA[0.4]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=212</guid>
		<description><![CDATA[Well, we&#8217;re finally there. Siwapp 0.4 is around the corner. The software is ready for being published, but before we release it, we need to make our traditional &#8220;call for translators&#8221;. And ask for your gentle help in translating this app. So, If you&#8217;re listening, please throw us a comment!!]]></description>
			<content:encoded><![CDATA[<p>Well, we&#8217;re finally there. </p>
<p>Siwapp 0.4 is around the corner. The software is ready for being published, but before we release it, we need to make our traditional &#8220;call for translators&#8221;. And ask for your gentle help in translating this app.</p>
<p>So, If you&#8217;re listening, please throw us a comment!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/10/siwapp-0-4-almost-out-call-for-translations/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>New page. Siwapp upgrade instructions</title>
		<link>http://www.siwapp.org/blog/2011/09/new-page-siwapp-upgrade-instructions/</link>
		<comments>http://www.siwapp.org/blog/2011/09/new-page-siwapp-upgrade-instructions/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 14:10:52 +0000</pubDate>
		<dc:creator>jzarate</dc:creator>
				<category><![CDATA[Siwapp]]></category>
		<category><![CDATA[instructions]]></category>
		<category><![CDATA[upgrading]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=198</guid>
		<description><![CDATA[some simple instructions on how to upgrade siwapp. not very technical but hopefully useful: http://www.siwapp.org/blog/siwapp-upgrade-guide/]]></description>
			<content:encoded><![CDATA[<p>some simple instructions on how to upgrade siwapp. not very technical but hopefully useful:<br />
<a href="http://www.siwapp.org/blog/siwapp-upgrade-guide/"> http://www.siwapp.org/blog/siwapp-upgrade-guide/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/09/new-page-siwapp-upgrade-instructions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New set of fonts. A wider range of character support</title>
		<link>http://www.siwapp.org/blog/2011/09/new-set-of-fonts-a-wider-range-of-character-support/</link>
		<comments>http://www.siwapp.org/blog/2011/09/new-set-of-fonts-a-wider-range-of-character-support/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 21:24:50 +0000</pubDate>
		<dc:creator>jzarate</dc:creator>
				<category><![CDATA[Siwapp]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=192</guid>
		<description><![CDATA[Today I just uploaded a whole new set of fonts to siwapp. These are based on the &#8220;dejavu&#8221; fonts and they have plenty of weird unicode character support. In fact, this whole thing started thanks to Braulio, from the siwapp users group, who couldn&#8217;t find the right symbol for his country&#8217;s currency (the colon). He [...]]]></description>
			<content:encoded><![CDATA[<p>Today I just uploaded a whole new set of fonts to siwapp.  These are based on the &#8220;dejavu&#8221; fonts and they have plenty of weird unicode character support.</p>
<p>In fact, this whole thing started thanks to Braulio, from the siwapp users group, who couldn&#8217;t find the right symbol for his country&#8217;s currency (the colon). He researched and pointed me to this set of fonts, which I think will came really handy.</p>
<p>among other things, we have now access to three special fonts:</p>
<ol>
<li>serif-condensed</li>
<li>sans-serif-condensed</li>
<li>sans-serif-ultralight</li>
</ol>
<p>which I think the heavy text users will appreciate.</p>
<p>also, I rearranged all the <a href="http://dev.siwapp.org/projects/siwapp/wiki/pdfFonts">pdf fonts</a> related wiki pages</p>
<p>PS: 0.4 is almost out. watch out translators!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/09/new-set-of-fonts-a-wider-range-of-character-support/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>dompdf and rowspan, our buggy buddies</title>
		<link>http://www.siwapp.org/blog/2011/02/dompdf-and-rowspan-our-buggy-buddies/</link>
		<comments>http://www.siwapp.org/blog/2011/02/dompdf-and-rowspan-our-buggy-buddies/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 22:42:50 +0000</pubDate>
		<dc:creator>jzarate</dc:creator>
				<category><![CDATA[Important]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[Siwapp]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[0.3.4]]></category>
		<category><![CDATA[dompdf]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=190</guid>
		<description><![CDATA[watch it! when rendering an html template to build a pdf, if a table cell with the &#8220;rowspan&#8221; attribute is break because a page change, the pdf engine will throw a nice &#8220;frame not found in cellmap&#8221; exception, as describe here We&#8217;ve already changed our default template to make sure it doesn&#8217;t include any rowspanned cell [...]]]></description>
			<content:encoded><![CDATA[<p>watch it!</p>
<p>when rendering an html template to build a pdf, if a table cell with the &#8220;rowspan&#8221; attribute is break because a page change, the pdf engine will throw a nice &#8220;frame not found in cellmap&#8221; exception, as describe <a href="http://code.google.com/p/dompdf/issues/detail?id=61">here</a></p>
<p>We&#8217;ve already changed our default template to make sure it doesn&#8217;t include any rowspanned cell (yes, it used to). When you <a href="http://dev.siwapp.org/projects/siwapp/wiki/templateTags">build your own invoice template</a>, please take this into account.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/02/dompdf-and-rowspan-our-buggy-buddies/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>remember, rewriting is needed</title>
		<link>http://www.siwapp.org/blog/2011/02/remember-rewriting-is-needed/</link>
		<comments>http://www.siwapp.org/blog/2011/02/remember-rewriting-is-needed/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 16:24:19 +0000</pubDate>
		<dc:creator>jzarate</dc:creator>
				<category><![CDATA[Siwapp]]></category>
		<category><![CDATA[installer]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=185</guid>
		<description><![CDATA[I just close an annoying ticket about siwapp throwing a not found error after login.  That bug has been bothering me for a long time now. It turned out it was all because of the web server not having the rewrite module ! and it&#8217;s also said so in the installation guide specs ! I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>I just close an <a href="http://dev.siwapp.org/projects/siwapp/ticket/458">annoying ticket</a> about siwapp throwing a <a href="https://groups.google.com/forum/#!topic/siwapp-users/hjPat9VcMsQ/discussion">not found error after login</a>.  That bug has been bothering me for a long time now.</p>
<p>It turned out it was all because of the web server not having the rewrite module ! and it&#8217;s also said so in the <a href="http://www.siwapp.org/blog/siwapp-installation-guide/">installation guide specs</a> !</p>
<p>I&#8217;ve added a check for that feature on the installation code, but please remember: <strong>rewriting is needed</strong></p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/02/remember-rewriting-is-needed/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Two updates in a row: siwapp 0.3.4</title>
		<link>http://www.siwapp.org/blog/2011/02/two-updates-in-a-row-siwapp-0-3-4/</link>
		<comments>http://www.siwapp.org/blog/2011/02/two-updates-in-a-row-siwapp-0-3-4/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 02:09:23 +0000</pubDate>
		<dc:creator>jzarate</dc:creator>
				<category><![CDATA[Important]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Siwapp]]></category>
		<category><![CDATA[0.3]]></category>
		<category><![CDATA[0.3.4]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=177</guid>
		<description><![CDATA[In spain, we have a saying that is &#8220;my dwarfs are growing&#8221;, meaning a circus owner complaining when everything start going inexplicably wrong with his circus , even the dwarfs are growing!! Looks like we&#8217;re putting ourselves in kind of a similar situation here. On the previous version the messaging system was broke because of [...]]]></description>
			<content:encoded><![CDATA[<p>In spain, we have a saying that is &#8220;my dwarfs are growing&#8221;, meaning a circus owner complaining when everything start going inexplicably wrong with his circus , even the dwarfs are growing!!</p>
<p>Looks like we&#8217;re putting ourselves in kind of a similar situation here. On the previous version the messaging system was broke because of some stupid small bug.</p>
<p>Anyway, that has given me a good chance to think about some design decisions that we may have to reconsider.</p>
<p>Almost forget: the packages <a href="http://www.siwapp.org/downloads/siwapp_0_3_4.beta.tar.gz">here</a> (tar.gz) and <a href="http://www.siwapp.org/downloads/siwapp_0_3_4.beta.zip">here</a> (zip). Upgrading <a href="http://dev.siwapp.org/projects/siwapp/wiki/upgradeDownloads">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/02/two-updates-in-a-row-siwapp-0-3-4/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Emergency Release: 0.3.3 is out.</title>
		<link>http://www.siwapp.org/blog/2011/02/emergency-release-0-3-3-is-out/</link>
		<comments>http://www.siwapp.org/blog/2011/02/emergency-release-0-3-3-is-out/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 13:03:57 +0000</pubDate>
		<dc:creator>jzarate</dc:creator>
				<category><![CDATA[Important]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Siwapp]]></category>
		<category><![CDATA[0.3]]></category>
		<category><![CDATA[0.3.3]]></category>
		<category><![CDATA[payment]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[upgade]]></category>

		<guid isPermaLink="false">http://www.siwapp.org/blog/?p=172</guid>
		<description><![CDATA[Regarding a blocker bug we found in the previous version , related to not being able to use the &#8220;payments&#8221; button (yeah, that&#8217;s quite a basic feature. Siwapp is just a &#8220;digital brick&#8221; without it), here is a new update (zip or tar.gz) which that bug corrected. Also upgrade packages here Please accept our apologies. [...]]]></description>
			<content:encoded><![CDATA[<p>Regarding a blocker bug we found in the previous version , related to not being able to use the &#8220;payments&#8221; button (yeah, that&#8217;s quite a basic feature. Siwapp is just a &#8220;digital brick&#8221; without it), here is a new update (<a href="http://www.siwapp.org/downloads/siwapp_0_3_3.zip">zip</a> or <a href="http://www.siwapp.org/downloads/siwapp_0_3_3.beta.tar.gz">tar.gz</a>) which that bug corrected.</p>
<p>Also upgrade packages <a href="http://dev.siwapp.org/projects/siwapp/wiki/upgradeDownloads">here</a></p>
<p>Please accept our apologies. And thank you, mcourcy , brauilio and guyfi for letting us know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siwapp.org/blog/2011/02/emergency-release-0-3-3-is-out/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

