<?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>flattermann.net &#187; Calc</title>
	<atom:link href="http://www.flattermann.net/tag/calc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flattermann.net</link>
	<description>flattermann&#039;s developer blog</description>
	<lastBuildDate>Tue, 03 May 2011 00:22:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>OpenOffice.org Extension Development with Eclipse (ooeclipse)</title>
		<link>http://www.flattermann.net/2009/06/openofficeorg-extension-development-with-eclipse-ooeclipse/</link>
		<comments>http://www.flattermann.net/2009/06/openofficeorg-extension-development-with-eclipse-ooeclipse/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 16:01:51 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=369</guid>
		<description><![CDATA[How to create a OOo Java Extension using Eclipse as IDE Recently, I tried to create an OpenOffice.org Extension (.oxt) with Java. I&#8217;m using Eclipse as Java IDE for all my projects, so I wanted to use Eclipse for this task as well. There is an Eclipse plugin to help you with this task, but [...]]]></description>
			<content:encoded><![CDATA[<h3>How to create a OOo Java Extension using Eclipse as IDE</h3>
<p>Recently, I tried to create an <strong>OpenOffice.org Extension (.oxt) with Java</strong>.  I&#8217;m using <a href="http://www.eclipse.org" target="_blank">Eclipse</a> as Java IDE for all my projects, so I wanted to use Eclipse for this task as well.</p>
<p>There is an Eclipse plugin to help you with this task, but there are come caveats. The old versions of this plugin do not work with the current OpenOffice.org version (3.0+).</p>
<p>You will probably get an error message when trying to specify the SDK (<em>&#8220;SDK version has to be at least 2.0.4&#8243;</em>) or the OOo location (<em>&#8220;Invalid OOo path&#8221;</em>)  in the plugin.  <strong></strong></p>
<p><strong>Eventually, after some time searching the web, I  found a working solution!</strong> <span id="more-369"></span>There is a tutorial about this issue at the OpenOffice.org Wiki:</p>
<p><a href="http://wiki.services.openoffice.org/wiki/JavaEclipseTuto" target="_blank">http://wiki.services.openoffice.org/wiki/JavaEclipseTuto</a> <strong></strong></p>
<p><strong>Unfortunately, the mentioned Eclipse plugin update site link does not exist anymore and the mentioned CVS version of the plugin does not work with OpenOffice.org 3.0.</strong></p>
<p>After searching the web, I found the new GIT Source Repository of the Eclipse plugin here:</p>
<p>git://anongit.freedesktop.org/git/ooo-build/contrib/ooeclipse</p>
<p>It is administrated by <strong>Cédric Bosdonnat</strong> &lt;cedricbosdo [AT] openoffice [DOT] org&gt;, the author of the ooeclipse plugin.</p>
<h3>Working Eclipse plugin update site</h3>
<p>Because I could not find an Eclipse update site hosting this version of the plugin, I&#8217;ve taken the source and created a plugin update site with the most current version of the plugin on my own:</p>
<p><a href="http://drake79.users.sourceforge.net/ooeclipse/site" target="_blank">http://drake79.users.sourceforge.net/ooeclipse/site</a> <strong></strong></p>
<p><strong>Do not try to download the plugin from this URL with your internet browser. This will not work!</strong></p>
<p><strong> </strong> <strong>Instead, Eclipse will do it for you when you do the following steps:</strong></p>
<p>In Eclipse, select <strong>Help &gt; Software updates &gt; Available software &gt; Add Site</strong> and enter the mentioned URL.</p>
<p>Below the new site, select <strong>OpenOffice.org</strong>, click on <strong>Install</strong> and follow the instructions on your screen.</p>
<p>After you&#8217;ve installed the plugin, follow the <strong>Tutorial from the OOo Wiki</strong> to create your first HelloWorld extension:</p>
<p><a href="http://wiki.services.openoffice.org/wiki/JavaEclipseTuto" target="_blank">http://wiki.services.openoffice.org/wiki/JavaEclipseTuto</a></p>
<p>I will try to keep the update site up-to-date.</p>
<hr />
<h4>Update (2009-07-01):</h4>
<p>Cédric&#8217;s page seems to be working again:</p>
<p><a href="http://cedric.bosdonnat.free.fr/wordpress/?page_id=11&amp;lp_lang_view=en" target="_blank">http://cedric.bosdonnat.free.fr/wordpress/?page_id=11&amp;lp_lang_view=en</a></p>
<p>You may probably use one of his plugin update sites, again:</p>
<ul>
<li><a href="http://cedric.bosdonnat.free.fr/ooeclipseintegration">http://cedric.bosdonnat.free.fr/ooeclipseintegration</a> (stable, but maybe old)</li>
<li><a href="http://cedric.bosdonnat.free.fr/ooeclipseintegration-dev">http://cedric.bosdonnat.free.fr/ooeclipseintegration-dev</a> (dev version)</li>
</ul>
<hr />If you want to compile the plugin on your own, here are are the necessary steps:</p>
<h3>How to build from source</h3>
<ul>
<li>Check-out the source from the repository:
<ul>
<li>git clone git://anongit.freedesktop.org/git/ooo-build/contrib/ooeclipse ooeclipse</li>
</ul>
</li>
<li>Change to the new directory:
<ul>
<li>cd ooeclipse</li>
</ul>
</li>
<li>Build the plugin:
<ul>
<li>ant -Dopenoffice.home=/usr/lib/openoffice -Declipse.home=/opt/eclipse -f build/build.xml</li>
<li>(adjust the two properties according to your setup)</li>
</ul>
</li>
</ul>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for OpenOffice.org Extension Development with Eclipse (ooeclipse)" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+OpenOffice.org+Extension+Development+with+Eclipse+(ooeclipse)" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2009/06/openofficeorg-extension-development-with-eclipse-ooeclipse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OpenTableTrick 0.7.2 released</title>
		<link>http://www.flattermann.net/2009/05/opentabletrick-072-released/</link>
		<comments>http://www.flattermann.net/2009/05/opentabletrick-072-released/#comments</comments>
		<pubDate>Tue, 19 May 2009 11:52:22 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[OpenTableTrick]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[Hattrick]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=295</guid>
		<description><![CDATA[OpenTableTrick 0.7.2 is available: http://extensions.services.openoffice.org/project/OpenTableTrick Changes in 0.7.2: This is just a bugfix release, because the 0.7.1 release was incomplete (some announced features were missing). If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )]]></description>
			<content:encoded><![CDATA[<p>OpenTableTrick 0.7.2 is available:</p>
<p><a href="http://extensions.services.openoffice.org/project/OpenTableTrick" target="_blank">http://extensions.services.openoffice.org/project/OpenTableTrick</a></p>
<p><span id="more-295"></span></p>
<p><strong>Changes in 0.7.2:</strong></p>
<p>This is just a bugfix release, because the 0.7.1 release was incomplete (some announced features were missing).</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for OpenTableTrick 0.7.2 released" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+OpenTableTrick+0.7.2+released" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2009/05/opentabletrick-072-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>OpenTableTrick 0.7.1 released</title>
		<link>http://www.flattermann.net/2009/05/opentabletrick-071-released/</link>
		<comments>http://www.flattermann.net/2009/05/opentabletrick-071-released/#comments</comments>
		<pubDate>Mon, 18 May 2009 17:08:14 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[OpenTableTrick]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[Hattrick]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=290</guid>
		<description><![CDATA[OpenTableTrick 0.7.1 is available: http://extensions.services.openoffice.org/project/OpenTableTrick Changes in 0.7.1: New features for HT internal tables: Underlined text does work now Cell backgrounds will be taken into account (if you manually set the background of a cell, the cell will look &#8220;dark&#8221; when posted in the conference) Text color will be taken into account (if you manually [...]]]></description>
			<content:encoded><![CDATA[<p>OpenTableTrick 0.7.1 is available:</p>
<p><a href="http://extensions.services.openoffice.org/project/OpenTableTrick" target="_blank">http://extensions.services.openoffice.org/project/OpenTableTrick</a></p>
<p><span id="more-290"></span><br />
<strong>Changes in 0.7.1:</strong></p>
<p>New features for HT internal tables:</p>
<ul>
<li>Underlined text does work now</li>
<li>Cell backgrounds will be taken into account (if you manually set the background of a cell, the cell will look &#8220;dark&#8221; when posted in the conference)</li>
<li>Text color will be taken into account (if you manually set the text color, the text will be surrounded by a &#8220;[ q ] quote tag&#8221; when posted in the conference)</li>
</ul>
<p>The default table style is set to the new HT internal tables.</p>
<p>If you would like to use the old &#8220;fake-tables&#8221; as default, please go (in OpenOffice.org) to<br />
Tools / Macros / Organize Macros / OpenOffice.org Basic<br />
navigate to &#8220;My Macros&#8221; and edit the OpenTableTrick library.</p>
<p>One of the first lines contains the text:<br />
const DEFAULT_TABLESTYLE = USE_HTTABLES<br />
set this to USE_FAKETABLES to change the default style to fake-tables.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for OpenTableTrick 0.7.1 released" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+OpenTableTrick+0.7.1+released" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2009/05/opentabletrick-071-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenTableTrick 0.7.0 released</title>
		<link>http://www.flattermann.net/2009/05/opentabletrick-070-released/</link>
		<comments>http://www.flattermann.net/2009/05/opentabletrick-070-released/#comments</comments>
		<pubDate>Wed, 13 May 2009 16:58:33 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[OpenTableTrick]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[Hattrick]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=275</guid>
		<description><![CDATA[OpenTableTrick 0.7.0 is available: http://extensions.services.openoffice.org/project/OpenTableTrick Changes in 0.7.0: Merged cells (horizontal and vertical!) now work with Hattrick internal tables ([ TABLE ], [ TR ], [ TD ]) Cell alignment now works with Hattrick internal tables Notes: If you use these &#8220;old&#8221; table style (i.e. not the &#8220;HT internal tables&#8221;), you cannot use vertical merged [...]]]></description>
			<content:encoded><![CDATA[<p>OpenTableTrick 0.7.0 is available:</p>
<p><a href="http://extensions.services.openoffice.org/project/OpenTableTrick" target="_blank">http://extensions.services.openoffice.org/project/OpenTableTrick</a><br />
<span id="more-275"></span><br />
<strong>Changes in 0.7.0:</strong></p>
<ul>
<li>Merged cells (horizontal and vertical!) now work with Hattrick internal tables ([ TABLE ], [ TR ], [ TD ])</li>
<li>Cell alignment now works with Hattrick internal tables</li>
</ul>
<p>Notes:</p>
<ul>
<li>If you use these &#8220;old&#8221; table style (i.e. <strong>not</strong> the &#8220;HT internal tables&#8221;), you cannot use vertical merged cells</li>
<li>HT internal tables do not support changing the borders/padding</li>
</ul>
<p>Have fun!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for OpenTableTrick 0.7.0 released" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+OpenTableTrick+0.7.0+released" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2009/05/opentabletrick-070-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OpenTableTrick 0.6.1 released</title>
		<link>http://www.flattermann.net/2009/05/opentabletrick-061-released/</link>
		<comments>http://www.flattermann.net/2009/05/opentabletrick-061-released/#comments</comments>
		<pubDate>Mon, 04 May 2009 14:28:08 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[OpenTableTrick]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[Hattrick]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=263</guid>
		<description><![CDATA[OpenTableTrick 0.6.1 is available: http://extensions.services.openoffice.org/project/OpenTableTrick Changes in 0.6.1: Fixed an issue with the new (stricter) HT-ML (Hattrick MarkupLanguage) Added an option to align HT internal tables (non-aligned HT internal tables will use less characters) Optimized the output a bit to consume less characters Have fun! If you like my work, buy me a beer. (Suggested: [...]]]></description>
			<content:encoded><![CDATA[<p>OpenTableTrick 0.6.1 is available:</p>
<p><a href="http://extensions.services.openoffice.org/project/OpenTableTrick" target="_blank">http://extensions.services.openoffice.org/project/OpenTableTrick</a></p>
<p><span id="more-263"></span><strong>Changes in 0.6.1:</strong></p>
<ul>
<li>Fixed an issue with the new (stricter) HT-ML (Hattrick MarkupLanguage)</li>
<li>Added an option to align HT internal tables (non-aligned HT internal tables will use less characters)</li>
<li>Optimized the output a bit to consume less characters</li>
</ul>
<p>Have fun!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for OpenTableTrick 0.6.1 released" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+OpenTableTrick+0.6.1+released" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2009/05/opentabletrick-061-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New training speed tools for Hattrick.org (Update 2009-04-02)</title>
		<link>http://www.flattermann.net/2009/02/new-training-speed-tools-for-hattrickorg/</link>
		<comments>http://www.flattermann.net/2009/02/new-training-speed-tools-for-hattrickorg/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 10:00:43 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[Hattrick]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=190</guid>
		<description><![CDATA[There are two three new online training speed tools for Hattrick.org based on my training speed formula research. The formula is based on the datasets uploaded by the Hattrick Organizer users using the HO feedback plugin. Hattrick Organizer uses this training speed formula since version 1.422. Manager Kurdy_Malloy has created a Flash based online training [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-193" title="hts_kurdy" src="http://www.flattermann.net/wp-content/uploads/2009/02/hts_kurdy.png" alt="hts_kurdy" width="200" height="178" />There are <span style="text-decoration: line-through;">two</span> three new online training speed tools for Hattrick.org based on <a href="/downloads/">my training speed formula research</a>.</p>
<p>The formula is based on the datasets uploaded by the <a href="http://www.hattrickorganizer.net" target="_blank">Hattrick Organizer</a> users using the HO feedback plugin.</p>
<p><a href="http://www.hattrickorganizer.net" target="_blank">Hattrick Organizer</a> uses this training speed formula since version 1.422.</p>
<p><span id="more-190"></span>Manager <strong>Kurdy_Malloy</strong> has created a <strong>Flash based</strong> online training speed tool.<br />
It&#8217;s nice pretty nice eye candy:</p>
<p><a href="http://trainingspeed.freehostia.com/" target="_blank">http://trainingspeed.freehostia.com/</a></p>
<p><img class="alignright size-full wp-image-194" title="hts_illi" src="http://www.flattermann.net/wp-content/uploads/2009/02/hts_illi.png" alt="hts_illi" width="250" height="108" /></p>
<p>Manager <strong>Illi-Noize</strong> has created a <strong>HTML based</strong> online training speed tool:</p>
<p><a href="http://www.ht-links.de/Hattrick/TrainingsSpeedChecker.html" target="_blank">http://www.ht-links.de/Hattrick/TrainingsSpeedChecker.html</a><br />
(in german)</p>
<p><a href="http://www.ht-links.de/Hattrick/TrainingsSpeedCheckerE.html" target="_blank">http://www.ht-links.de/Hattrick/TrainingsSpeedCheckerE.html</a><br />
(in english)</p>
<p><strong>Update 2009-04-02:</strong></p>
<p><img class="alignright size-full wp-image-244" title="hts-melloncharles" src="http://www.flattermann.net/wp-content/uploads/2009/02/hts-melloncharles.png" alt="hts-melloncharles" width="250" height="148" />Manager <strong>Mellon-Charles</strong> has created an online Google spreadsheet with my formulas:</p>
<p><a href="http://spreadsheets.google.com/ccc?key=p18W-9_bKWJmFAzfgMullPw" target="_blank">http://spreadsheets.google.com/ccc?key=p18W-9_bKWJmFAzfgMullPw</a> (english and french)</p>
<p>You can download my original offline training speed tool as spreadsheet for <a href="http://www.openoffice.org" target="_blank">OpenOffice.org Calc</a> or MS Excel (TrainingspeedFormula.xls) in the <a href="/downloads/">downloads section</a>.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for New training speed tools for Hattrick.org (Update 2009-04-02)" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+New+training+speed+tools+for+Hattrick.org+(Update+2009-04-02)" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2009/02/new-training-speed-tools-for-hattrickorg/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>OpenTableTrick 0.6.0 released</title>
		<link>http://www.flattermann.net/2009/02/opentabletrick-060-released/</link>
		<comments>http://www.flattermann.net/2009/02/opentabletrick-060-released/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 17:19:35 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[OpenTableTrick]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[Hattrick]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=140</guid>
		<description><![CDATA[OpenTableTrick 0.6.0 is available: http://extensions.services.openoffice.org/project/OpenTableTrick Changes in 0.6.0: Added (optional) support for the new Hattrick internal tables ([TABLE], [TR], [TD]) Note: If you use these new &#8220;HT internal tables&#8221;, you cannot use table borders and merged cells because these features are not yet supported by HT Have fun! If you like my work, buy me [...]]]></description>
			<content:encoded><![CDATA[<p>OpenTableTrick 0.6.0 is available:</p>
<p><a href="http://extensions.services.openoffice.org/project/OpenTableTrick" target="_blank">http://extensions.services.openoffice.org/project/OpenTableTrick</a></p>
<p><span id="more-140"></span><strong>Changes in 0.6.0:</strong></p>
<p>Added (optional) support for the new Hattrick internal tables ([TABLE], [TR], [TD])</p>
<p>Note:<br />
If you use these new &#8220;HT internal tables&#8221;, you cannot use table borders and merged cells because these features are not yet supported by HT</p>
<p>Have fun!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for OpenTableTrick 0.6.0 released" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+OpenTableTrick+0.6.0+released" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2009/02/opentabletrick-060-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenTableTrick 0.5.8 released</title>
		<link>http://www.flattermann.net/2009/01/opentabletrick-058-released/</link>
		<comments>http://www.flattermann.net/2009/01/opentabletrick-058-released/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 16:53:21 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[OpenTableTrick]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[Hattrick]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=134</guid>
		<description><![CDATA[OpenTableTrick 0.5.8 is available: http://extensions.services.openoffice.org/project/OpenTableTrick Changes in 0.5.8: Small bugfixes added new characters: missing extended ASCII chars: @´¢£¤¥¦¨©ª«¬­®¯¶·¸¹º»¼½¾ÀÃÈÊËÌÏÐÒÔÕ×ÙÛÝÞàãèêëìïðòôõ÷ùûýþÿ other characters: Σş Have fun! If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )]]></description>
			<content:encoded><![CDATA[<p>OpenTableTrick 0.5.8 is available:</p>
<p><a href="http://extensions.services.openoffice.org/project/OpenTableTrick" target="_blank">http://extensions.services.openoffice.org/project/OpenTableTrick</a></p>
<p><span id="more-134"></span>Changes in 0.5.8:</p>
<ul>
<li>Small bugfixes</li>
<li>added new characters:
<ul>
<li>missing extended ASCII chars: @´¢£¤¥¦¨©ª«¬­®¯¶·¸¹º»¼½¾ÀÃÈÊËÌÏÐÒÔÕ×ÙÛÝÞàãèêëìïðòôõ÷ùûýþÿ</li>
<li>other characters: Σş</li>
</ul>
</li>
<p>Have fun!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for OpenTableTrick 0.5.8 released" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+OpenTableTrick+0.5.8+released" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2009/01/opentabletrick-058-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenTableTrick 0.5.7 released</title>
		<link>http://www.flattermann.net/2009/01/opentabletrick-057-released/</link>
		<comments>http://www.flattermann.net/2009/01/opentabletrick-057-released/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 23:47:56 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[OpenTableTrick]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[Hattrick]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=97</guid>
		<description><![CDATA[OpenTableTrick 0.5.7 is available: http://extensions.services.openoffice.org/project/OpenTableTrick Changes in 0.5.7: Small bugfixes added Cyrillic chars: ЁЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ and ёйцукенгшщзхъфывапролджэячсмитьбю, thx to Aleksandr Have fun! If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )]]></description>
			<content:encoded><![CDATA[<p>OpenTableTrick 0.5.7 is available:</p>
<p><a href="http://extensions.services.openoffice.org/project/OpenTableTrick" target="_blank">http://extensions.services.openoffice.org/project/OpenTableTrick</a></p>
<p><span id="more-97"></span>Changes in 0.5.7:</p>
<ul>
<li>Small bugfixes</li>
<li>added Cyrillic chars:
<ul>
<li>ЁЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ and</li>
<li>ёйцукенгшщзхъфывапролджэячсмитьбю, thx to Aleksandr</li>
</ul>
</li>
</ul>
<p>Have fun!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for OpenTableTrick 0.5.7 released" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+OpenTableTrick+0.5.7+released" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2009/01/opentabletrick-057-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenTableTrick 0.5.6 released</title>
		<link>http://www.flattermann.net/2008/12/opentabletrick-056-released/</link>
		<comments>http://www.flattermann.net/2008/12/opentabletrick-056-released/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 10:45:32 +0000</pubDate>
		<dc:creator>flattermann</dc:creator>
				<category><![CDATA[OpenTableTrick]]></category>
		<category><![CDATA[Calc]]></category>
		<category><![CDATA[Hattrick]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.flattermann.net/?p=57</guid>
		<description><![CDATA[OpenTableTrick 0.5.6 is available: http://extensions.services.openoffice.org/project/OpenTableTrick Changes in 0.5.6: Small bugfixes Some code cleanup added Latvian chars, āčēģīķļņōŗšūžĀČĒĢĪĶĻŅŌŖŠŪŽ, thx to Mod-Hakerpaps added Spanish chars, áéíóúñÑÁÉÍÓÚüÜçÇ, thx to eyanez added Serbian chars, čćžđš, thx to rajto Have fun! If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer [...]]]></description>
			<content:encoded><![CDATA[<p>OpenTableTrick 0.5.6 is available:</p>
<p><a href="http://extensions.services.openoffice.org/project/OpenTableTrick" target="_blank">http://extensions.services.openoffice.org/project/OpenTableTrick</a></p>
<p><span id="more-57"></span>Changes in 0.5.6:</p>
<ul>
<li>Small bugfixes</li>
<li>Some code cleanup</li>
<li>added Latvian chars, āčēģīķļņōŗšūžĀČĒĢĪĶĻŅŌŖŠŪŽ, thx to Mod-Hakerpaps</li>
<li>added Spanish chars, áéíóúñÑÁÉÍÓÚüÜçÇ, thx to eyanez</li>
<li>added Serbian chars, čćžđš, thx to rajto</li>
</ul>
<p>Have fun!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="donation@flattermann.net" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donation for OpenTableTrick 0.5.6 released" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.flattermann.net/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy me a beer" title="Buy me a beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donation@flattermann.net&amp;currency_code=EUR&amp;amount=&amp;return=&amp;item_name=Donation+for+OpenTableTrick+0.5.6+released" target="paypal">If you like my work, buy me a beer. (Suggested: 3€ for a beer, or more for more beer ;-) )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.flattermann.net/2008/12/opentabletrick-056-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

