<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/blog/templates/default/atom.css" type="text/css" ?>

<feed 
   xmlns="http://www.w3.org/2005/Atom"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <link href="http://www.klumpp.net/blog/feeds/atom.xml" rel="self" title="http://klumpp.net/blog/" type="application/atom+xml" />
    <link href="http://www.klumpp.net/blog/"                        rel="alternate"    title="http://klumpp.net/blog/" type="text/html" />
    <link href="http://www.klumpp.net/blog/rss.php?version=2.0"     rel="alternate"    title="http://klumpp.net/blog/" type="application/rss+xml" />
    <title type="html">http://klumpp.net/blog/</title>
    <subtitle type="html">Was gesagt werden muss: </subtitle>
    <icon>http://www.klumpp.net/blog/templates/default/img/s9y_banner_small.png</icon>
    <id>http://www.klumpp.net/blog/</id>
    <updated>2010-06-14T16:31:20Z</updated>
    <generator uri="http://www.s9y.org/" version="1.5.1">Serendipity 1.5.1 - http://www.s9y.org/</generator>
    <dc:language>de</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:" />

    <entry>
        <link href="http://www.klumpp.net/blog/archives/106-Let-Confluence-Edit-and-Add-Page-buttons-float-in-your-view.html" rel="alternate" title="Let Confluence Edit and Add-Page buttons float in your view" />
        <author>
            <name>Paul D. Klumpp</name>
            <email>paul@klumpp.net</email>        </author>
    
        <published>2010-06-14T00:07:16Z</published>
        <updated>2010-06-14T16:31:20Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=106</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=106</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/5-Technologie" label="Technologie" term="Technologie" />
    
        <id>http://www.klumpp.net/blog/archives/106-guid.html</id>
        <title type="html">Let Confluence Edit and Add-Page buttons float in your view</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I have been using Confluence for a long time now, running business and using it privately for organising family stuff.  Wikis are all about ease of use. <p>So, if a wiki page is full of content, it often happens that you scroll down a lot. You read, read on... And there you find a small typo or something else that you want to edit.</p>

<p>In Mediawiki, you would find the next "edit section"-button and are set to go.</p>

<p>But for Confluence (by the time of writing, 3.2 is the latest version), this means, you would have to scroll all up again or hit they Home-Key on the keyboard. You could as well press alt+e to edit the page, but in Google Chrome, alt+e is reserved for another function already. So, that toolbar needs to come to where the user is, always to the current view.</p>

<p><a class="serendipity_image_link"  href='http://www.klumpp.net/blog/uploads/Wiki-Bilder/confluence-js-editbutton.jpg' onclick="F1 = window.open('/blog/uploads/Wiki-Bilder/confluence-js-editbutton.jpg','Zoom','height=507,width=792,top=266,left=251.5,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes'); return false;"><!-- s9ymdb:8 --><img class="serendipity_image_left" width="150" height="95"  src="http://www.klumpp.net/blog/uploads/Wiki-Bilder/confluence-js-editbutton.serendipityThumb.jpg"  alt="Confluence Edit-Add-Buttons"  /></a></p>

Also, I think the "one-click-edit"-Paradigma needs to live on. Here I wrote a small Javascript that moves the Edit and Add-Page buttons down and up while you scroll!<p>This works for JS-DOM compatible browsers like Mozilla Firefox, Google Chrome.</p>

As Confluence Administrator, navigate to the "Custom HTML" section and put the following code into "At end of the HEAD".
<pre><code>&lt;script type=&quot;text/javascript&quot;&gt;

var _isDOM = (document.getElementById ? true : false);
var _isIE4 = ((document.all &amp;&amp; !isDOM) ? true : false);
var _isNS4 = (document.layers ? true : false);
var _isNS = navigator.appName == &quot;Netscape&quot;;

var _floatTimeoutNextCheck = 50;
var _floatCfgYOffset = 0;

function floaterId(idname) {
  if (_isDOM) {
    
    document.getElementById(idname).style.visibility = 'visible'; // better set it again ;-)
    document.getElementById(idname).style.position = 'relative'; // must be defined .. otherwise style.top won't function at all.

    setInterval(&quot;document.getElementById('&quot;+idname+&quot;').style.top = document.body.scrollTop + 
      _floatCfgYOffset +'px'&quot;, _floatTimeoutNextCheck)
  }
}

AJS.toInit(function () {
  floaterId('navigation');
});
&lt;/script&gt;</code></pre>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Let Confluence Edit and Add-Page buttons float in your view';
var flattr_dsc = 'I have been using Confluence for a long time now, running business and using it privately for organising family stuff.  Wikis are all about ease of use. So, if a wiki page is full of content, it often happens that you scroll down a lot. You read, read on... And there you find a small typo or something else that you want to edit.  In Mediawiki, you would find the next \&quot;edit section\&quot;-button and are set to go.  But for Confluence (by the time of writing, 3.2 is the latest version), this means, you would have to scroll all up again or hit they Home-Key on the keyboard. You could as well press alt+e to edit the page, but in Google Chrome, alt+e is reserved for another function already. So, that toolbar needs to come to where the user is, always to the current view.    Also, I think the \&quot;one-click-edit\&quot;-Paradigma needs to live on. Here I wrote a small Javascript that moves the Edit and Add-Page buttons down and up while you scroll!This works for JS-DOM compatible browsers like Mozilla Firefox, Google Chrome.  As Confluence Administrator, navigate to the \&quot;Custom HTML\&quot; section and put the following code into \&quot;At end of the HEAD\&quot;. &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;  var _isDOM = (document.getElementById ? true : false); var _isIE4 = ((document.all &amp;amp;&amp;amp; !isDOM) ? true : false); var _isNS4 = (document.layers ? true : false); var _isNS = navigator.appName == &amp;quot;Netscape&amp;quot;;  var _floatTimeoutNextCheck = 50; var _floatCfgYOffset = 0;  function floaterId(idname) {   if (_isDOM) {          document.getElementById(idname).style.visibility = \'visible\'; // better set it again ;-)     document.getElementById(idname).style.position = \'relative\'; // must be defined .. otherwise style.top won\'t function at all.      setInterval(&amp;quot;document.getElementById(\'&amp;quot;+idname+&amp;quot;\').style.top = document.body.scrollTop +        _floatCfgYOffset +\'px\'&amp;quot;, _floatTimeoutNextCheck)   } }  AJS.toInit(function () {   floaterId(\'navigation\'); }); &amp;lt;/script&amp;gt;  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/106-Let-Confluence-Edit-and-Add-Page-buttons-float-in-your-view.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/104-Fix-fuer-Eclipse-unter-Gentoo-Linux-Wie-man-Unsupported-major.minor-version-49.0-loswird.html" rel="alternate" title="Fix für Eclipse unter Gentoo Linux: Wie man &quot;Unsupported major.minor version 49.0&quot; loswird" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2009-12-15T21:12:38Z</published>
        <updated>2010-06-14T16:28:35Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=104</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=104</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/5-Technologie" label="Technologie" term="Technologie" />
    
        <id>http://www.klumpp.net/blog/archives/104-guid.html</id>
        <title type="html">Fix für Eclipse unter Gentoo Linux: Wie man &quot;Unsupported major.minor version 49.0&quot; loswird</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Eclipse<sup><a href="http://de.wikipedia.org/wiki/Eclipse_%28IDE%29" onclick="window.open(this.href, '_blank'); return false;">1</a></sup> ist eine mächtige Entwicklungsplattform. Sie wurde ursprünglich für Java gebaut, ist aber aufgrund ihrer Plugintechnologie inzwischen weit darüber hinaus einsetzbar.</p>

<p>Neulich hatte ich das Problem, dass Eclipse auf meinem Gentoosystem nicht starten wollte.</p>

<p>So sah das aus:</p>


<pre><code>nick@shenron ~ $ eclipse-3.4
Exception in thread &quot;main&quot; java.lang.UnsupportedClassVersionError: org/eclipse/equinox/launcher/Main (Unsupported major.minor version 49.0)
        at java.lang.ClassLoader.defineClass0(Native Method)
        at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
[..]</code></pre>

<p>Da ging es noch weiter, aber den Rest sparen wir uns.</p>

<p>Woran lag's? "Unsupported major.minor version 49.0" weißt darauf hin - irgendwas stimmt nicht mit dem installierten Java.</p>

<p>Mal nachgesehen:</p>


<pre><code>nick@shenron ~ $ java -version
java version &quot;1.4.2-03&quot;
Java(TM) 2 Runtime Environment, Standard Edition (build Blackdown-1.4.2-03)
Java HotSpot(TM) Client VM (build Blackdown-1.4.2-03, mixed mode)</code></pre>

<p>In der Tat. Neulich beim letzten Merge war mir aber aufgefallen: Ich hatte natürlich auch Suns Java-Implementierung auf dem System. Parallel zum veralteten Blackdown<sup><a href="http://de.wikipedia.org/wiki/Blackdown" onclick="window.open(this.href, '_blank'); return false;">2</a></sup>; die Frage war nur, wie komm' ich dran?</p>

<p>In solchen Fällen nie verkehrt: Ein Blick ins <em>eselect</em> (app-admin/eselect).</p>


<pre><code>nick@shenron ~ $ eselect help
Usage: eselect &lt;global options&gt; &lt;module name&gt; &lt;module options&gt;

Global options:
  --brief                   Make output shorter
  --no-color,--no-colour    Disable coloured output

Built-in modules:
  help                      Display a help message
  usage                     Display a usage message
  version                   Display version information

Extra modules:
  bashcomp                  Manage contributed bash-completion scripts
  binutils                  Manage installed versions of sys-devel/binutils
  [..]
  java-vm                   Manage the Java system and user VM
  [..]</code></pre>

<p>Üblicherweise beherrscht so ein Eselect-Modul den Dreiklang <em>show</em>, <em>list</em>, <em>set</em>.</p>

<p>Also der Reihe nach:</p>


<pre><code>nick@shenron ~ $ eselect java-vm show
Current system-vm
  blackdown-jdk-1.4.2
Current user-vm
  blackdown-jdk-1.4.2</code></pre>

<p>Das änderte ich mit:</p>


<pre><code>nick@shenron ~ $ eselect java-vm set
!!! Error: Usage [user|system] [vm]
exiting</code></pre>

<p>Gut. Da fehlte erstmal noch was. Zum einen musste ich noch aussuchen, ob ich die Änderung für den User oder das System durchführen wollte, und zum anderen wollte <em>eselect</em> noch die Nummer der Java-Implementierung haben ("vm"). An die kommt man mit list:</p>


<pre><code>nick@shenron ~ $ eselect java-vm list
Available Java Virtual Machines:
  [1]   blackdown-jdk-1.4.2  system-vm
  [2]   sun-jdk-1.5
  [3]   sun-jdk-1.6</code></pre>

<p>Also, nochmal:</p>


<pre><code>nick@shenron ~ $ eselect java-vm set user 3</code></pre>

<p>Alles ging gut, denn das System meldete sich gleich mit dem Kommandoprompt wieder - <em>no news are good news</em>.</p>

<p>Und tatsächlich: Eclipse startete nun ohne zu murren. Darauf einen Kaffee.</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Fix für Eclipse unter Gentoo Linux: Wie man \&quot;Unsupported major.minor version 49.0\&quot; loswird';
var flattr_dsc = 'Eclipse1 ist eine mächtige Entwicklungsplattform. Sie wurde ursprünglich für Java gebaut, ist aber aufgrund ihrer Plugintechnologie inzwischen weit darüber hinaus einsetzbar.  Neulich hatte ich das Problem, dass Eclipse auf meinem Gentoosystem nicht starten wollte.  So sah das aus:   nick@shenron ~ $ eclipse-3.4 Exception in thread &amp;quot;main&amp;quot; java.lang.UnsupportedClassVersionError: org/eclipse/equinox/launcher/Main (Unsupported major.minor version 49.0)         at java.lang.ClassLoader.defineClass0(Native Method)         at java.lang.ClassLoader.defineClass(ClassLoader.java:539) [..]  Da ging es noch weiter, aber den Rest sparen wir uns.  Woran lag\'s? \&quot;Unsupported major.minor version 49.0\&quot; weißt darauf hin - irgendwas stimmt nicht mit dem installierten Java.  Mal nachgesehen:   nick@shenron ~ $ java -version java version &amp;quot;1.4.2-03&amp;quot; Java(TM) 2 Runtime Environment, Standard Edition (build Blackdown-1.4.2-03) Java HotSpot(TM) Client VM (build Blackdown-1.4.2-03, mixed mode)  In der Tat. Neulich beim letzten Merge war mir aber aufgefallen: Ich hatte natürlich auch Suns Java-Implementierung auf dem System. Parallel zum veralteten Blackdown2; die Frage war nur, wie komm\' ich dran?  In solchen Fällen nie verkehrt: Ein Blick ins eselect (app-admin/eselect).   nick@shenron ~ $ eselect help Usage: eselect &amp;lt;global options&amp;gt; &amp;lt;module name&amp;gt; &amp;lt;module options&amp;gt;  Global options:   --brief                   Make output shorter   --no-color,--no-colour    Disable coloured output  Built-in modules:   help                      Display a help message   usage                     Display a usage message   version                   Display version information  Extra modules:   bashcomp                  Manage contributed bash-completion scripts   binutils                  Manage installed versions of sys-devel/binutils   [..]   java-vm                   Manage the Java system and user VM   [..]  Üblicherweise beherrscht so ein Eselect-Modul den Dreiklang show, list, set.  Also der Reihe nach:   nick@shenron ~ $ eselect java-vm show Current system-vm   blackdown-jdk-1.4.2 Current user-vm   blackdown-jdk-1.4.2  Das änderte ich mit:   nick@shenron ~ $ eselect java-vm set !!! Error: Usage [user|system] [vm] exiting  Gut. Da fehlte erstmal noch was. Zum einen musste ich noch aussuchen, ob ich die Änderung für den User oder das System durchführen wollte, und zum anderen wollte eselect noch die Nummer der Java-Implementierung haben (\&quot;vm\&quot;). An die kommt man mit list:   nick@shenron ~ $ eselect java-vm list Available Java Virtual Machines:   [1]   blackdown-jdk-1.4.2  system-vm   [2]   sun-jdk-1.5   [3]   sun-jdk-1.6  Also, nochmal:   nick@shenron ~ $ eselect java-vm set user 3  Alles ging gut, denn das System meldete sich gleich mit dem Kommandoprompt wieder - no news are good news.  Und tatsächlich: Eclipse startete nun ohne zu murren. Darauf einen Kaffee.  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/104-Fix-fuer-Eclipse-unter-Gentoo-Linux-Wie-man-Unsupported-major.minor-version-49.0-loswird.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/101-Ludwigshafen,-Samstag,-4.-Juli-Tag-der-offenen-Tuer-der-TWL-AG.html" rel="alternate" title="Ludwigshafen, Samstag, 4. Juli: Tag der offenen Tür der TWL AG" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2009-06-20T15:08:03Z</published>
        <updated>2009-06-20T15:27:49Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=101</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=101</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/7-Energie" label="Energie" term="Energie" />
            <category scheme="http://www.klumpp.net/blog/categories/5-Technologie" label="Technologie" term="Technologie" />
    
        <id>http://www.klumpp.net/blog/archives/101-guid.html</id>
        <title type="html">Ludwigshafen, Samstag, 4. Juli: Tag der offenen Tür der TWL AG</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Wer sich für Energiewirtschaft interessiert und zufällig am Samstag, den 4. Juli, in Südwestdeutschland unterwegs ist: Die Technischen Werke Ludwigshafen (TWL, <a href="http://www.twl.de" onclick="window.open(this.href, '_blank'); return false;">http://www.twl.de</a>) laden zum Tag der offenen Tür, 11-17 Uhr. Industriestraße 3. Das ist der Hauptsitz des Unternehmens und zugleich ein Kraftwerksstandort.</p>

<p>Ich finde, an den kombiniert kaufmännisch-technischen Standorten der Energiewirtschaft herrscht immer ein ganz besonderes Flair - so auch unzweifelhaft dort.</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Ludwigshafen, Samstag, 4. Juli: Tag der offenen Tür der TWL AG';
var flattr_dsc = 'Wer sich für Energiewirtschaft interessiert und zufällig am Samstag, den 4. Juli, in Südwestdeutschland unterwegs ist: Die Technischen Werke Ludwigshafen (TWL, http://www.twl.de) laden zum Tag der offenen Tür, 11-17 Uhr. Industriestraße 3. Das ist der Hauptsitz des Unternehmens und zugleich ein Kraftwerksstandort.  Ich finde, an den kombiniert kaufmännisch-technischen Standorten der Energiewirtschaft herrscht immer ein ganz besonderes Flair - so auch unzweifelhaft dort.  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/101-Ludwigshafen,-Samstag,-4.-Juli-Tag-der-offenen-Tuer-der-TWL-AG.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/99-Kleine-Erinnerung-zur-momentanen-Finanz-und-Wirtschaftskrise.html" rel="alternate" title="Kleine Erinnerung zur momentanen Finanz- und Wirtschaftskrise" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2009-06-13T20:29:42Z</published>
        <updated>2009-06-13T20:29:42Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=99</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=99</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/3-Gesellschaft" label="Gesellschaft" term="Gesellschaft" />
            <category scheme="http://www.klumpp.net/blog/categories/4-OEkonomie" label="Ökonomie" term="Ökonomie" />
    
        <id>http://www.klumpp.net/blog/archives/99-guid.html</id>
        <title type="html">Kleine Erinnerung zur momentanen Finanz- und Wirtschaftskrise</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                "Gewinn ist so notwendig wie die Luft zum Atmen, aber es wäre schlimm, wenn wir nur wirtschaften würden, um Gewinne zu machen, wie es schlimm wäre, wenn wir nur leben würden, um zu atmen."<p><em>- Hermann Josef Abs (1901-1994), u.a. langjähriger Sprecher des Vorstands der Deutschen Bank.</em></p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Kleine Erinnerung zur momentanen Finanz- und Wirtschaftskrise';
var flattr_dsc = '\&quot;Gewinn ist so notwendig wie die Luft zum Atmen, aber es wäre schlimm, wenn wir nur wirtschaften würden, um Gewinne zu machen, wie es schlimm wäre, wenn wir nur leben würden, um zu atmen.\&quot;- Hermann Josef Abs (1901-1994), u.a. langjähriger Sprecher des Vorstands der Deutschen Bank.  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/99-Kleine-Erinnerung-zur-momentanen-Finanz-und-Wirtschaftskrise.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/98-Etwas-wissen....html" rel="alternate" title="Etwas wissen..." />
        <author>
            <name>Paul D. Klumpp</name>
            <email>paul@klumpp.net</email>        </author>
    
        <published>2009-06-06T11:53:13Z</published>
        <updated>2009-06-06T11:53:13Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=98</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=98</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/3-Gesellschaft" label="Gesellschaft" term="Gesellschaft" />
            <category scheme="http://www.klumpp.net/blog/categories/4-OEkonomie" label="Ökonomie" term="Ökonomie" />
    
        <id>http://www.klumpp.net/blog/archives/98-guid.html</id>
        <title type="html">Etwas wissen...</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Jemand, der viel weiß, will viel wissen. Er ist nicht nur zum ausgefragt werden da.</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Etwas wissen...';
var flattr_dsc = 'Jemand, der viel weiß, will viel wissen. Er ist nicht nur zum ausgefragt werden da.  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/98-Etwas-wissen....html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/95-Gentoo-und-Zim,-das-Desktop-Wiki-Hinweis-zum-Update-auf-Version-0.27.html" rel="alternate" title="Gentoo und Zim, das Desktop-Wiki: Hinweis zum Update auf Version 0.27" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2009-03-14T12:55:16Z</published>
        <updated>2009-03-14T13:11:42Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=95</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=95</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/5-Technologie" label="Technologie" term="Technologie" />
    
        <id>http://www.klumpp.net/blog/archives/95-guid.html</id>
        <title type="html">Gentoo und Zim, das Desktop-Wiki: Hinweis zum Update auf Version 0.27</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Mein Desktopwiki der Wahl ist Zim (<a href="http://www.zim-wiki.org" onclick="window.open(this.href, '_blank'); return false;">http://www.zim-wiki.org</a>), eine schlanke, schnörkellose und quelloffene Umsetzung der Wiki-Idee. Zim wurde in Perl mit Hilfe von GTK2 implementiert, ist plattformübergreifend und unentgeltlich.</p>

<p>Wer die Linux-Distribution <em>Gentoo</em> einsetzt, darf sich freuen: Die Software befindet sich im Portage-Tree, und kann so ohne große Umstände installiert und bei Bedarf wieder entfernt werden.</p>

<p>Wer unter Gentoo von einer früheren Version auf die momentan im Tree verfügbare 0.27 aktualisiert (Mitte Februar erschien allerdings bereits 0.28), der sei auf folgendes Problem hingewiesen: <a href="http://bugs.gentoo.org/249803" onclick="window.open(this.href, '_blank'); return false;">http://bugs.gentoo.org/249803</a></p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Gentoo und Zim, das Desktop-Wiki: Hinweis zum Update auf Version 0.27';
var flattr_dsc = 'Mein Desktopwiki der Wahl ist Zim (http://www.zim-wiki.org), eine schlanke, schnörkellose und quelloffene Umsetzung der Wiki-Idee. Zim wurde in Perl mit Hilfe von GTK2 implementiert, ist plattformübergreifend und unentgeltlich.  Wer die Linux-Distribution Gentoo einsetzt, darf sich freuen: Die Software befindet sich im Portage-Tree, und kann so ohne große Umstände installiert und bei Bedarf wieder entfernt werden.  Wer unter Gentoo von einer früheren Version auf die momentan im Tree verfügbare 0.27 aktualisiert (Mitte Februar erschien allerdings bereits 0.28), der sei auf folgendes Problem hingewiesen: http://bugs.gentoo.org/249803  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/95-Gentoo-und-Zim,-das-Desktop-Wiki-Hinweis-zum-Update-auf-Version-0.27.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/93-FAIL-Musikalbum-gekauft,-kaputte-CD-bekommen..html" rel="alternate" title="FAIL: Musikalbum gekauft, kaputte CD bekommen." />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2009-02-28T21:49:52Z</published>
        <updated>2009-02-28T22:00:18Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=93</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=93</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/3-Gesellschaft" label="Gesellschaft" term="Gesellschaft" />
            <category scheme="http://www.klumpp.net/blog/categories/4-OEkonomie" label="Ökonomie" term="Ökonomie" />
    
        <id>http://www.klumpp.net/blog/archives/93-guid.html</id>
        <title type="html">FAIL: Musikalbum gekauft, kaputte CD bekommen.</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>.. und das, obwohl ich wie immer vor dem Kauf auf den Datenträger gesehen habe, ob der auch wirklich kratzerfrei ist.</p>

<p>Was hatte ich denn übersehen? Ganz genau: Den Kopierschutz.</p>

Das Teil hat also einen Kopierschutz.. und funktioniert somit nicht im DVD-Kombilaufwerk meines Laptops. <p>Nicht weiter schlimm, würden die Jungs von der Musikindustrie sagen, spiels doch damit ab, wofür's gedacht war: Mit einem Audio-CD-Player.</p>

<p>Sorry. Hab' ich nicht. Dafür habe ich aber einen MP3-Player. Der ist unterwegs ein klein wenig handlicher als so ein CD-Player. Irgendwie. Finde ich.</p>

<p>Und nun? Zurückgeben kann ich die CD ja nicht. Offene Verpackung und so.</p>

<p>Vielleicht betätige ich mich künstlerisch. Genau! Ich lass die zusammen mit den ollen AOL-CDs zu einem hübschen Mobile wieder auferstehen. Oder so. Alternativvorschläge werden gerne aufgenommen.</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'FAIL: Musikalbum gekauft, kaputte CD bekommen.';
var flattr_dsc = '.. und das, obwohl ich wie immer vor dem Kauf auf den Datenträger gesehen habe, ob der auch wirklich kratzerfrei ist.  Was hatte ich denn übersehen? Ganz genau: Den Kopierschutz.  Das Teil hat also einen Kopierschutz.. und funktioniert somit nicht im DVD-Kombilaufwerk meines Laptops. Nicht weiter schlimm, würden die Jungs von der Musikindustrie sagen, spiels doch damit ab, wofür\'s gedacht war: Mit einem Audio-CD-Player.  Sorry. Hab\' ich nicht. Dafür habe ich aber einen MP3-Player. Der ist unterwegs ein klein wenig handlicher als so ein CD-Player. Irgendwie. Finde ich.  Und nun? Zurückgeben kann ich die CD ja nicht. Offene Verpackung und so.  Vielleicht betätige ich mich künstlerisch. Genau! Ich lass die zusammen mit den ollen AOL-CDs zu einem hübschen Mobile wieder auferstehen. Oder so. Alternativvorschläge werden gerne aufgenommen.  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/93-FAIL-Musikalbum-gekauft,-kaputte-CD-bekommen..html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/90-How-to-de-uglificate-Firefox-and-other-GTK-applications-on-Gentoo.html" rel="alternate" title="How to de-uglificate Firefox and other GTK applications on Gentoo" />
        <author>
            <name>Paul D. Klumpp</name>
            <email>paul@klumpp.net</email>        </author>
    
        <published>2009-01-14T23:53:11Z</published>
        <updated>2009-01-15T00:09:36Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=90</wfw:comment>
    
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=90</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/5-Technologie" label="Technologie" term="Technologie" />
    
        <id>http://www.klumpp.net/blog/archives/90-guid.html</id>
        <title type="html">How to de-uglificate Firefox and other GTK applications on Gentoo</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>If you use KDE or any other nice and nifty desktop you are used to good looking menus and widgets. But once you installed Mozilla Firefox things may look like a silly and ugly GTK application. So ... how to get out of this?</p>

<p>In Gentoo, things are easy. As root do:</p>


<ul>
    <li><tt># emerge -av gtk-engines-qtcurve gtk-chtheme``</tt></li>
    <li>Confirm the emerge with yes if it's alright with you :)</li>
</ul>

You now have the QtCurve theme for GTK and the theme switcher for GTK installed. <p>Lets switch the GTK part of our desktop to the new theme:</p>


<ul>
    <li>Open up a shell while inside your graphical desktop. <strong>Note:</strong> In the shell, don't be root or you will be changing the GTK theme for the root user. Be the user for who you want to change the theme. :) Most likely, yourself!</li>
    <li><tt>$ gtk-chtheme</tt></li>
</ul>

<p>A window should appear where you can chose QTCurve as a theme.</p>


<ul>
    <li>Select QtCurve and press OK.</li>
</ul>

<p>Start up Firefox again and be happy with the nice outfit the buttons now have.</p>

<p>Paul</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'How to de-uglificate Firefox and other GTK applications on Gentoo';
var flattr_dsc = 'If you use KDE or any other nice and nifty desktop you are used to good looking menus and widgets. But once you installed Mozilla Firefox things may look like a silly and ugly GTK application. So ... how to get out of this?  In Gentoo, things are easy. As root do:        # emerge -av gtk-engines-qtcurve gtk-chtheme``     Confirm the emerge with yes if it\'s alright with you :)   You now have the QtCurve theme for GTK and the theme switcher for GTK installed. Lets switch the GTK part of our desktop to the new theme:        Open up a shell while inside your graphical desktop. Note: In the shell, don\'t be root or you will be changing the GTK theme for the root user. Be the user for who you want to change the theme. :) Most likely, yourself!     $ gtk-chtheme   A window should appear where you can chose QTCurve as a theme.        Select QtCurve and press OK.   Start up Firefox again and be happy with the nice outfit the buttons now have.  Paul  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/90-How-to-de-uglificate-Firefox-and-other-GTK-applications-on-Gentoo.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/87-JSpell-Evolution-Spellchecker-with-Confluence-2.10.html" rel="alternate" title="JSpell Evolution Spellchecker with Confluence 2.10" />
        <author>
            <name>Paul D. Klumpp</name>
            <email>paul@klumpp.net</email>        </author>
    
        <published>2009-01-08T12:23:07Z</published>
        <updated>2009-01-09T13:15:09Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=87</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=87</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/5-Technologie" label="Technologie" term="Technologie" />
    
        <id>http://www.klumpp.net/blog/archives/87-guid.html</id>
        <title type="html">JSpell Evolution Spellchecker with Confluence 2.10</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I have been trying to integrate the "JSpell Evolution" AJAX Spellchecker with the wiki software Confluence (Version 2.10) this morning. And, finally, it works. <a class='serendipity_image_link' href='http://www.klumpp.net/blog/uploads/Wiki-Bilder/jspell-conf210.png' onclick="F1 = window.open('/blog/uploads/Wiki-Bilder/jspell-conf210.png','Zoom','height=410,width=1080,top=202.5,left=107.5,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes'); return false;"><!-- s9ymdb:7 --><img class="serendipity_image_right" width="150" height="56" style="float: right; border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.klumpp.net/blog/uploads/Wiki-Bilder/jspell-conf210.serendipityThumb.png" alt=""  /></a><p>With a little help (<a href="http://techtime.co.nz/display/TECHTIME/2008/12/15/Integrating+JSpell+into+Confluence+2.9.2" onclick="window.open(this.href, '_blank'); return false;">http://techtime.co.nz/display/TECHTIME/2008/12/15/Integrating+JSpell+into+Confluence+2.9.2</a>) my braincells began working.</p>

<p>Similarily to the above resource, I made up another step by step procedure for you folks..</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'JSpell Evolution Spellchecker with Confluence 2.10';
var flattr_dsc = 'I have been trying to integrate the \&quot;JSpell Evolution\&quot; AJAX Spellchecker with the wiki software Confluence (Version 2.10) this morning. And, finally, it works. With a little help (http://techtime.co.nz/display/TECHTIME/2008/12/15/Integrating+JSpell+into+Confluence+2.9.2) my braincells began working.  Similarily to the above resource, I made up another step by step procedure for you folks..  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/87-JSpell-Evolution-Spellchecker-with-Confluence-2.10.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 <br /><a href="http://www.klumpp.net/blog/archives/87-JSpell-Evolution-Spellchecker-with-Confluence-2.10.html#extended">"JSpell Evolution Spellchecker with Confluence 2.10" vollständig lesen</a>
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/86-Kommt-gut-ins-neue-Jahr!.html" rel="alternate" title="Kommt gut ins neue Jahr!" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2008-12-30T21:28:07Z</published>
        <updated>2008-12-30T21:28:07Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=86</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=86</wfw:commentRss>
    
    
        <id>http://www.klumpp.net/blog/archives/86-guid.html</id>
        <title type="html">Kommt gut ins neue Jahr!</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Feiert schön und lasst es krachen! :-)</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Kommt gut ins neue Jahr!';
var flattr_dsc = 'Feiert schön und lasst es krachen! :-)  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/86-Kommt-gut-ins-neue-Jahr!.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/85-Frohe-Weihnachten!.html" rel="alternate" title="Frohe Weihnachten!" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2008-12-24T07:34:36Z</published>
        <updated>2008-12-24T07:37:05Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=85</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=85</wfw:commentRss>
    
    
        <id>http://www.klumpp.net/blog/archives/85-guid.html</id>
        <title type="html">Frohe Weihnachten!</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Wir wünschen Euch allen ein paar ruhige Festtage! <p>Genießt die Zeit, wenn auch der Schnee wohl noch auf sich warten lässt.</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Frohe Weihnachten!';
var flattr_dsc = 'Wir wünschen Euch allen ein paar ruhige Festtage! Genießt die Zeit, wenn auch der Schnee wohl noch auf sich warten lässt.  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/85-Frohe-Weihnachten!.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/84-Oh,-eine-Sache-noch...html" rel="alternate" title="&quot;Oh, eine Sache noch..&quot;" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2008-05-26T20:41:20Z</published>
        <updated>2008-05-26T21:03:59Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=84</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=84</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/6-Szene" label="Szene" term="Szene" />
            <category scheme="http://www.klumpp.net/blog/categories/5-Technologie" label="Technologie" term="Technologie" />
    
        <id>http://www.klumpp.net/blog/archives/84-guid.html</id>
        <title type="html">&quot;Oh, eine Sache noch..&quot;</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Ok, ich bin tatsächlich nicht Steve Jobs. Trotzdem stelle ich an dieser Stelle was Interessantes vor: <a href="http://www.b4r.org" onclick="window.open(this.href, '_blank'); return false;">http://www.b4r.org</a>. Gewissermaßen ein kleines Soziales Netzwerk, ähnlich wie die allseits beliebten Netzwerke von Holtzbrinck oder Fox. Der wesentliche Unterschied: Läuft hier auf dem Server - mit Hilfe freier Software.</p>

<p>Die Engine hierfür heißt "elgg", ist an sich recht unkompliziert, relativ annehmbar kodiert und unter der GPL-2 verfügbar. Hab' ein paar Kleinigkeiten dran gespengelt, schon vor ein paar Wochen. Hatte mich damit zur Fingerübung beschäftigt.</p>

<p>"There's just one catch..": Ich kann mich in den nächsten Wochen nicht <em>aktiv</em> um b4r.org kümmern, das Ding könnte also implodieren oder gar einen Riss im Raum-Zeit-Kontinuum verursachen. Wer dennoch Lust drauf hat, kann sich ruhig mal anmelden und umsehen.</p>

<p>Viel Spaß!</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = '\&quot;Oh, eine Sache noch..\&quot;';
var flattr_dsc = 'Ok, ich bin tatsächlich nicht Steve Jobs. Trotzdem stelle ich an dieser Stelle was Interessantes vor: http://www.b4r.org. Gewissermaßen ein kleines Soziales Netzwerk, ähnlich wie die allseits beliebten Netzwerke von Holtzbrinck oder Fox. Der wesentliche Unterschied: Läuft hier auf dem Server - mit Hilfe freier Software.  Die Engine hierfür heißt \&quot;elgg\&quot;, ist an sich recht unkompliziert, relativ annehmbar kodiert und unter der GPL-2 verfügbar. Hab\' ein paar Kleinigkeiten dran gespengelt, schon vor ein paar Wochen. Hatte mich damit zur Fingerübung beschäftigt.  \&quot;There\'s just one catch..\&quot;: Ich kann mich in den nächsten Wochen nicht aktiv um b4r.org kümmern, das Ding könnte also implodieren oder gar einen Riss im Raum-Zeit-Kontinuum verursachen. Wer dennoch Lust drauf hat, kann sich ruhig mal anmelden und umsehen.  Viel Spaß!  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/84-Oh,-eine-Sache-noch...html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/83-Tabellen-aus-OpenOffice-nach-LyX-TeX-LaTeX-exportieren.html" rel="alternate" title="Tabellen aus OpenOffice nach LyX / TeX / LaTeX exportieren" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2008-05-26T00:20:01Z</published>
        <updated>2008-05-26T19:26:00Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=83</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=83</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/5-Technologie" label="Technologie" term="Technologie" />
    
        <id>http://www.klumpp.net/blog/archives/83-guid.html</id>
        <title type="html">Tabellen aus OpenOffice nach LyX / TeX / LaTeX exportieren</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                LyX (<a href="http://www.lyx.org/" onclick="window.open(this.href, '_blank'); return false;">http://www.lyx.org/</a>) ist schon eine knorke Sache: Die Mächtigkeit von TeX gepaart mit leichtgängiger Präsentation, vereint unter einer angenehmen Oberfläche. Genau jene aber versagt, wenn es um Tabellen geht - nichtmal so sehr bei der <em>Bearbeitung</em> von Tabellen, sondern beim <em>Import</em>: Aus Tabellenkalkulationen, wie z.B. OpenOffice Calc. Nun ist es aber so, dass man bei wissenschaftlichen Arbeiten die eine oder andere Kleinigkeit zu berechnen hat, und es doch ein wenig mühsam ist, die mitunter zahlreichen Ergebnisse aus der Tabellenkalkulation quasi per Hand Stück für Stück in eine LyX-Tabelle zu übertragen.<p>Eine pragmatische Abhilfe schafft hier das Makro "calc2latex" (<a href="http://calc2latex.sourceforge.net/" onclick="window.open(this.href, '_blank'); return false;">http://calc2latex.sourceforge.net/</a>) von Shohei Abe. Es ist zwar offiziell nur bis OpenOffice 2.0 getestet, tut aber auch ganz gut unter Version 2.4.</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Tabellen aus OpenOffice nach LyX / TeX / LaTeX exportieren';
var flattr_dsc = 'LyX (http://www.lyx.org/) ist schon eine knorke Sache: Die Mächtigkeit von TeX gepaart mit leichtgängiger Präsentation, vereint unter einer angenehmen Oberfläche. Genau jene aber versagt, wenn es um Tabellen geht - nichtmal so sehr bei der Bearbeitung von Tabellen, sondern beim Import: Aus Tabellenkalkulationen, wie z.B. OpenOffice Calc. Nun ist es aber so, dass man bei wissenschaftlichen Arbeiten die eine oder andere Kleinigkeit zu berechnen hat, und es doch ein wenig mühsam ist, die mitunter zahlreichen Ergebnisse aus der Tabellenkalkulation quasi per Hand Stück für Stück in eine LyX-Tabelle zu übertragen.Eine pragmatische Abhilfe schafft hier das Makro \&quot;calc2latex\&quot; (http://calc2latex.sourceforge.net/) von Shohei Abe. Es ist zwar offiziell nur bis OpenOffice 2.0 getestet, tut aber auch ganz gut unter Version 2.4.  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/83-Tabellen-aus-OpenOffice-nach-LyX-TeX-LaTeX-exportieren.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/82-31,50-USD.html" rel="alternate" title="31,50 USD" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2008-05-22T22:36:33Z</published>
        <updated>2008-05-22T22:41:46Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=82</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=82</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/7-Energie" label="Energie" term="Energie" />
            <category scheme="http://www.klumpp.net/blog/categories/3-Gesellschaft" label="Gesellschaft" term="Gesellschaft" />
            <category scheme="http://www.klumpp.net/blog/categories/4-OEkonomie" label="Ökonomie" term="Ökonomie" />
    
        <id>http://www.klumpp.net/blog/archives/82-guid.html</id>
        <title type="html">31,50 USD</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Soviel verlangt ScienceDirect für das PDF eines wissenschaftlichen Artikels, der unter Umständen interessant für meine momentane Arbeit wäre.</p>

<p>Schon krass: Öffentlich geförderte Wissenschaft hinter einer Mauer von Geld versteckt.</p>

<p>Falls mich der Artikel in den nächsten Tagen noch immer interessieren sollte, werde ich mal sehen, ob ich nicht über eine der Bibliotheksdatenbanken der Uni oder Hs drankomme.</p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = '31,50 USD';
var flattr_dsc = 'Soviel verlangt ScienceDirect für das PDF eines wissenschaftlichen Artikels, der unter Umständen interessant für meine momentane Arbeit wäre.  Schon krass: Öffentlich geförderte Wissenschaft hinter einer Mauer von Geld versteckt.  Falls mich der Artikel in den nächsten Tagen noch immer interessieren sollte, werde ich mal sehen, ob ich nicht über eine der Bibliotheksdatenbanken der Uni oder Hs drankomme.  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/82-31,50-USD.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.klumpp.net/blog/archives/81-Der-EU-Energiekommissar-bloggt!.html" rel="alternate" title="Der EU-Energiekommissar bloggt!" />
        <author>
            <name>Nikolaus Klumpp</name>
            <email>nick@klumpp.net</email>        </author>
    
        <published>2008-05-15T16:30:07Z</published>
        <updated>2008-05-15T17:25:51Z</updated>
        <wfw:comment>http://www.klumpp.net/blog/wfwcomment.php?cid=81</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.klumpp.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=81</wfw:commentRss>
    
            <category scheme="http://www.klumpp.net/blog/categories/7-Energie" label="Energie" term="Energie" />
            <category scheme="http://www.klumpp.net/blog/categories/3-Gesellschaft" label="Gesellschaft" term="Gesellschaft" />
            <category scheme="http://www.klumpp.net/blog/categories/4-OEkonomie" label="Ökonomie" term="Ökonomie" />
    
        <id>http://www.klumpp.net/blog/archives/81-guid.html</id>
        <title type="html">Der EU-Energiekommissar bloggt!</title>
        <content type="xhtml" xml:base="http://www.klumpp.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                .. Das aber nimmt nicht wirklich Wunder, wenn man bedenkt, dass Andris Piebalgs (<a href="http://de.wikipedia.org/wiki/Andris_Piebalgs" onclick="window.open(this.href, '_blank'); return false;">http://de.wikipedia.org/wiki/Andris_Piebalgs</a>) aus Lettland stammt. Das Baltikum gilt ja gemeinhin als Vorreiter im Bereich des "eGovernment" -- was genau auch immer man sich darunter vorzustellen hat. <p>Hier in diesem Fall den einen oder anderen Einblick in die Gedanken- und Politikwelt eines der wichtigsten Kommissionsmitglieder: <a href="http://blogs.ec.europa.eu/piebalgs/" onclick="window.open(this.href, '_blank'); return false;">http://blogs.ec.europa.eu/piebalgs/</a></p>


&lt;script type=&quot;text/javascript&quot;&gt;
var flattr_uid = '25640';
var flattr_tle = 'Der EU-Energiekommissar bloggt!';
var flattr_dsc = '.. Das aber nimmt nicht wirklich Wunder, wenn man bedenkt, dass Andris Piebalgs (http://de.wikipedia.org/wiki/Andris_Piebalgs) aus Lettland stammt. Das Baltikum gilt ja gemeinhin als Vorreiter im Bereich des \&quot;eGovernment\&quot; -- was genau auch immer man sich darunter vorzustellen hat. Hier in diesem Fall den einen oder anderen Einblick in die Gedanken- und Politikwelt eines der wichtigsten Kommissionsmitglieder: http://blogs.ec.europa.eu/piebalgs/  ';
var flattr_cat = 'text';
var flattr_lng = 'de_DE';
var flattr_tag = '';
var flattr_url = 'http://www.klumpp.net/blog/archives/81-Der-EU-Energiekommissar-bloggt!.html';
var flattr_btn = 'compact';
&lt;/script&gt;
&lt;script src=&quot;http://api.flattr.com/button/load.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 
            </div>
        </content>
        
    </entry>

</feed>