<?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>Drop By! &#187; software</title>
	<atom:link href="http://www.rekk.de/bloggy/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rekk.de/bloggy</link>
	<description>Dropping Brain Crumbs ...</description>
	<lastBuildDate>Wed, 09 Jun 2010 16:59:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Visualizing Default Ant Task Dependencies for Netbeans build-impl.xml</title>
		<link>http://www.rekk.de/bloggy/2008/visualizing-default-ant-task-dependencies-for-netbeans-build-implxml/</link>
		<comments>http://www.rekk.de/bloggy/2008/visualizing-default-ant-task-dependencies-for-netbeans-build-implxml/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 17:49:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ant]]></category>
		<category><![CDATA[build management]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=83</guid>
		<description><![CDATA[(netbeans 6.1, external ant 1.7) There are some great tools out there to generate a visual overview of the dependencies between the tasks within an ant file. Here is an example for Netbeans build-impl.xml file using Grand: Here is the snippet from the task in my build.xml (following descriptions in Visual Documentation of Ant Dependencies [...]]]></description>
			<content:encoded><![CDATA[<p>(netbeans 6.1, external ant 1.7)</p>
<p>There are some great tools out there to generate a visual overview of the dependencies between the tasks within an ant file. Here is an example for Netbeans build-impl.xml file using <a href="http://www.ggtools.net/grand/">Grand</a>:</p>
<div id="attachment_84" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rekk.de/bloggy/wp-content/uploads/2008/12/build.png"><img src="http://www.rekk.de/bloggy/wp-content/uploads/2008/12/build-300x160.png" alt="build-impl ant task dependencies" title="build-impl ant task dependencies" width="300" height="160" class="size-medium wp-image-84" /></a><p class="wp-caption-text">build-impl ant task dependencies</p></div>
<p>Here is the snippet from the task in my build.xml (following descriptions in <a href="http://www.testearly.com/2008/07/25/visual-documentation-of-ant-dependencies-in-3-simple-steps/">Visual Documentation of Ant Dependencies in 3 Simple Steps</a>):</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;target</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;visual-ant-task-dependencies&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;typedef</span> <span style="color: #000066;">resource</span>=<span style="color: #ff0000;">&quot;net/ggtools/grand/antlib.xml&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><span style="color: #808080; font-style: italic;">&lt;!-- if its in your ants lib dir, otherwise use classpath=&quot;&quot; --&gt;</span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;grand</span> <span style="color: #000066;">output</span>=<span style="color: #ff0000;">&quot;build.dot&quot;</span> <span style="color: #000066;">buildfile</span>=<span style="color: #ff0000;">&quot;${basedir}/nbproject/build-impl.xml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
             <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;filter</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;fromnode&quot;</span> <span style="color: #000066;">node</span>=<span style="color: #ff0000;">&quot;jar&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
             <span style="color: #808080; font-style: italic;">&lt;!-- filter name=&quot;tonode&quot; node=&quot;xxxx&quot;/ --&gt;</span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/grand<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;exec</span> <span style="color: #000066;">executable</span>=<span style="color: #ff0000;">&quot;dot&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- arg line=&quot;-Tpng -Gsize=11.69,8.27 -Grotate=90 -o build.png ${basedir}/build.dot&quot; / --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;arg</span> <span style="color: #000066;">line</span>=<span style="color: #ff0000;">&quot;-Tpng -Gsize=23.39,16.54 -o build.png ${basedir}/build.dot&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/exec<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/target<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>I uploaded the <a href="http://www.ggtools.net/files/grand/">grand.jar</a> to my ant home /lib directory. Of course you will need <a href="http://www.graphviz.org/">graphviz</a> to be installed for the dot command. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/visualizing-default-ant-task-dependencies-for-netbeans-build-implxml/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Great Articles on Automation in Software Development</title>
		<link>http://www.rekk.de/bloggy/2008/great-articles-on-automation-in-software-development/</link>
		<comments>http://www.rekk.de/bloggy/2008/great-articles-on-automation-in-software-development/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 22:05:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=70</guid>
		<description><![CDATA[Automation for the people]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ibm.com/developerworks/views/java/libraryview.jsp?search_by=automation+people:">Automation for the people</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/great-articles-on-automation-in-software-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jira Default Assignee &#8211; you cannot change, but work around</title>
		<link>http://www.rekk.de/bloggy/2008/jira-default-assignee-you-cannot-change-but-work-around/</link>
		<comments>http://www.rekk.de/bloggy/2008/jira-default-assignee-you-cannot-change-but-work-around/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 12:59:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jira]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/2008/jira-default-assignee-you-cannot-change-but-work-around/</guid>
		<description><![CDATA[In Jira there is a fixed role &#8220;project lead&#8221; for each single project which is assigned in the projects configuration. The only default use of this role is as the default assigne of created issues. The problem here is that you can&#8217;t change this behaviour (see http://jira.atlassian.com/browse/JRA-3523). So if you assign &#8220;project lead&#8221; to the [...]]]></description>
			<content:encoded><![CDATA[<p>In Jira there is a fixed role &#8220;project lead&#8221; for each single project which is assigned in the projects configuration. The only default use of this role is as the default assigne of created issues. The problem here is that you can&#8217;t change this behaviour (see <a href="http://jira.atlassian.com/browse/JRA-3523">http://jira.atlassian.com/browse/JRA-3523</a>).</p>
<p>So if you assign &#8220;project lead&#8221; to the administrative project lead, the mailbox of this person will be filled up with messages on issue creation. This might not be exactly what you wanted.</p>
<p>What possibilities are there to avoid such a problem? (Some only for Jira Enterprise).</p>
<ol>
<li>Using the role &#8220;project lead&#8221; as a proxy between customers and project team members. In this case don&#8217;t use the role &#8220;project lead&#8221; in your permission scheme, define your own role like &#8220;project manager&#8221; or similiar and use this instead. And:
<ol>
<li>Assign &#8220;project lead&#8221; to a moderator or support team member.</li>
<li>Assign &#8220;project lead&#8221; to a dummy user with a catch-all IMAP mailbox.</li>
</ol>
</li>
<li>Allow unassigned issues: Check admin -> global-settings for &#8220;allow unassigned issues&#8221; and set this in the project configuration as default</li>
<li>You can configure a different default assignee for each component of a project. See <a href="http://www.atlassian.com/software/jira/docs/latest/component_management.html">http://www.atlassian.com/software/jira/docs/latest/component_management.html</a></li>
<li>
Edit you current Notification Scheme and remove Current Assignee from Notification on Issue Created.
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/jira-default-assignee-you-cannot-change-but-work-around/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Netbeans Help Browser Font Size Issue</title>
		<link>http://www.rekk.de/bloggy/2008/netbeans-help-browser-font-size-issue/</link>
		<comments>http://www.rekk.de/bloggy/2008/netbeans-help-browser-font-size-issue/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 18:15:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=43</guid>
		<description><![CDATA[Netbeans&#8217; help browser doesn&#8217;t react on font size settings (User Startup Settings ). This is an old issue which you can study here . Actually all to do is to override the default CSS settings in: netbeans-6.0/ide8/docs/org/netbeans/modules/usersguide/ide.css Download a workaround version ide.css. I had to edit this file to fit my needs (on KDE, ubuntu): [...]]]></description>
			<content:encoded><![CDATA[<p>Netbeans&#8217; help browser doesn&#8217;t react on font size settings (<a href="http://www.rekk.de/bloggy/?p=32">User Startup Settings</a> ). This is an old issue which you can study <a href="http://www.netbeans.org/issues/show_bug.cgi?id=32667">here </a>. Actually all to do is to override the default CSS settings in:<br />
<code>netbeans-6.0/ide8/docs/org/netbeans/modules/usersguide/ide.css</code><br />
Download a workaround version <a href="http://www.netbeans.org/nonav/issues/showattachment.cgi/53696/ide.css">ide.css</a>.</p>
<p>I had to edit this file to fit my needs (on KDE, ubuntu):</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">body <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15pt</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span>  Arial<span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> SansSerif<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
...</pre></div></div>

<p>To see the changes you do not need to restart the IDE or something like that. Just go to another help page.</p>
<h1>Netbeans 6.5</h1>
<p>Here you the appropriate .css file is <code>ide10/docs/org/netbeans/modules/usersguide/ide.css</code> . </p>
<p>An example for a possible adaptation:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">body  <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15pt</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> SansSerif<span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">5</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin-right</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">5</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> Black<span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> White<span style="color: #00AA00;">&#125;</span>
&nbsp;
p  <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15pt</span><span style="color: #00AA00;">;</span>
     <span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">5</span><span style="color: #00AA00;">;</span>
     <span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">5</span><span style="color: #00AA00;">&#125;</span>
&nbsp;
....</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/netbeans-help-browser-font-size-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jersey REST Web Service in Glassfish</title>
		<link>http://www.rekk.de/bloggy/2008/jersey-rest-web-service-in-glassfish/</link>
		<comments>http://www.rekk.de/bloggy/2008/jersey-rest-web-service-in-glassfish/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 19:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[glassfish]]></category>
		<category><![CDATA[jersey]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[webservice]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=40</guid>
		<description><![CDATA[It seems to me that there are basically two ways to get started with the examples of the Jersey distribution (see also Java Webservices &#8211; Relationship between JAX-WS, JAX-RS, Metro and Jersey) in Glassfish. First you can use the Glassfish&#8217;s update center executing: $path/updatecenter/bin$ ./updatetool like described for example in Japod&#8217;s blog. But currently only [...]]]></description>
			<content:encoded><![CDATA[<p>It seems to me that there are basically two ways to get started with the examples of the <a href="https://jersey.dev.java.net/">Jersey</a> distribution (see also <a href="http://www.rekk.de/bloggy/?p=37">Java Webservices &#8211; Relationship between JAX-WS, JAX-RS, Metro and Jersey</a>) in <a href="https://glassfish.dev.java.net">Glassfish</a>.</p>
<p>First you can use the Glassfish&#8217;s update center executing:<br />
<code>$path/updatecenter/bin$ ./updatetool</code><br />
like described for example in <a href="http://blogs.sun.com/japod/entry/jersey_0_2_1_available">Japod&#8217;s blog</a>.<br />
But currently only version 0.4 is available here.</p>
<p>The other way is : <a href="https://jersey.dev.java.net/servlets/ProjectDocumentList">download</a> and unzip the newest version of Jersey. In the root directory of the unzipped archive you will find an<br />
ant script, execute it like this:<br />
<code>$path/jersey-0.5-ea$ ant&nbsp;&nbsp;-f jersey-on-glassfish.xml -Dgf.home=$HOME/bin/glassfish install</code><br />
with appropriate gf.home property supplied.</p>
<p>If you get an error message similiar to this one:<br />
<pre><code>BUILD FAILED
/home/kostja/Development/jersey/jersey-0.5-ea/jersey-on-glassfish.xml:103: The following error occurred while executing this line:
/home/kostja/Development/jersey/jersey-0.5-ea/jersey-on-glassfish.xml:43: /home/kostja/Development/jersey/jersey-0.5-ea/examples/GlassfishDB not found.</code></pre><br />
which means some example is missing in the distribution, edit the jersey-on-glassfish.xml file, comment out the matching lines:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">     <span style="color: #808080; font-style: italic;">&lt;!-- copy-example example.name=&quot;GlassfishDB&quot;/&gt;</span>
<span style="color: #808080; font-style: italic;">     &lt;update-nb-prop nb.prop.file=&quot;${gf.home}/jersey/examples/GlassfishDB/nbproject/project.properties&quot;/ --&gt;</span></pre></div></div>

<p>Be aware! This procedures will only install the examples and won&#8217;t add auto-magically the jersey jars to Glassfish&#8217;s runtime classpath. So<br />
you have to take care by yourself to include the jars to the build target, see the provided examples for the jars needed:</p>
<p>glassfish/jersey/examples/SimpleServlet/nbproject/build-impl.xml:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;target</span> <span style="color: #000066;">depends</span>=<span style="color: #ff0000;">&quot;init&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;library-inclusion-in-archive&quot;</span> <span style="color: #000066;">unless</span>=<span style="color: #ff0000;">&quot;dist.ear.dir&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;copy</span> <span style="color: #000066;">file</span>=<span style="color: #ff0000;">&quot;${file.reference.activation.jar}&quot;</span> <span style="color: #000066;">todir</span>=<span style="color: #ff0000;">&quot;${build.web.dir}/WEB-INF/lib&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;copy</span> <span style="color: #000066;">file</span>=<span style="color: #ff0000;">&quot;${file.reference.jsr250-api.jar}&quot;</span> <span style="color: #000066;">todir</span>=<span style="color: #ff0000;">&quot;${build.web.dir}/WEB-INF/lib&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;copy</span> <span style="color: #000066;">file</span>=<span style="color: #ff0000;">&quot;${file.reference.persistence-api-1.0.jar}&quot;</span> <span style="color: #000066;">todir</span>=<span style="color: #ff0000;">&quot;${build.web.dir}/WEB-INF/lib&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;copy</span> <span style="color: #000066;">file</span>=<span style="color: #ff0000;">&quot;${file.reference.asm-3.1.jar}&quot;</span> <span style="color: #000066;">todir</span>=<span style="color: #ff0000;">&quot;${build.web.dir}/WEB-INF/lib&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;copy</span> <span style="color: #000066;">file</span>=<span style="color: #ff0000;">&quot;${file.reference.jsr311-api.jar}&quot;</span> <span style="color: #000066;">todir</span>=<span style="color: #ff0000;">&quot;${build.web.dir}/WEB-INF/lib&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;copy</span> <span style="color: #000066;">file</span>=<span style="color: #ff0000;">&quot;${file.reference.jersey.jar}&quot;</span> <span style="color: #000066;">todir</span>=<span style="color: #ff0000;">&quot;${build.web.dir}/WEB-INF/lib&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/target<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>glassfish/jersey/examples/SimpleServlet/nbproject/project.properties:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># some of this properties are set by jersey-on-glassfish.xml</span>
<span style="color: #666666; font-style: italic;"># during installation</span>
ashome.jersey.lib.dir=..<span style="color: #000000; font-weight: bold;">/</span>..<span style="color: #000000; font-weight: bold;">/</span>lib
ashome.lib.dir=..<span style="color: #000000; font-weight: bold;">/</span>..<span style="color: #000000; font-weight: bold;">/</span>..<span style="color: #000000; font-weight: bold;">/</span>lib
...
file.reference.jsr250-api.jar=<span style="color: #800000;">${ashome.jersey.lib.dir}</span><span style="color: #000000; font-weight: bold;">/</span>jsr250-api.jar
...
file.reference.jersey.jar=<span style="color: #800000;">${ashome.jersey.lib.dir}</span><span style="color: #000000; font-weight: bold;">/</span>jersey.jar
...
javac.classpath=<span style="color: #800000;">${file.reference.servlet.jar}</span>\:<span style="color: #800000;">${file.reference.activation.jar}</span>\:<span style="color: #800000;">${file.reference.jsr250-api.jar}</span>\:
<span style="color: #800000;">${file.reference.persistence-api-1.0.jar}</span>\:<span style="color: #800000;">${file.reference.asm-3.1.jar}</span>\:<span style="color: #800000;">${file.reference.jsr311-api.jar}</span>\:
<span style="color: #800000;">${file.reference.jersey.jar}</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/jersey-rest-web-service-in-glassfish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KDE&#8217;s integrated Subversion Client kdesvn</title>
		<link>http://www.rekk.de/bloggy/2008/kdes-build-in-subversion-client-kdesvn/</link>
		<comments>http://www.rekk.de/bloggy/2008/kdes-build-in-subversion-client-kdesvn/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 20:00:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=35</guid>
		<description><![CDATA[Command line utilities are great for one-pointed tasks or for batch processing, but sometimes you just want to browse around and quickly play with the options. For that purpose I prefer to use GUI-tools. In ubuntu you can use the svn-workbench as an GUI-Client written in python to subversion repositories. I am using KDE, so [...]]]></description>
			<content:encoded><![CDATA[<p>Command line utilities are great for one-pointed tasks or for batch processing, but sometimes you just want to browse around and quickly play with the options. For that purpose I prefer to use GUI-tools.</p>
<p>In ubuntu you can use the svn-workbench as an GUI-Client written in python to subversion repositories. I am using KDE, so installing<a href="http://kdesvn.alwins-world.de/"> kdesvn </a> (also see <a href="http://www.kde-apps.org/content/show.php?content=26589">kde-apps.org</a>) gives me a repository access and management functions right in my Konqueror file browser by using addresses like: <code> ksvn+https://rcs.somehost.de/rep1</code>. In this way you can work in repositories without explicit checkout. The only draw back appears in case you want to copy directories. Due to Konquerors way of copying/moving with KIO you will be asked for log messages for each single subdir or file recursively. To avoid being asked for log messages every time start kdesvn, go to Main Menu Settings &#8211; Configure Kdesvn &#8211; KIO/Commandline &#8211; check KIO operations use standard logmessage .</p>
<p>Kdesvn adds extra functions in Konqueror&#8217;s context menu : RightClick &#8211; Actions &#8211; Subversion . Kate and QuantaPlus Integration is also provided by kdesvn.</p>
<p>BTW: Subclipse is a good svn GUI client implementation as well, but requires an Eclipse installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/kdes-build-in-subversion-client-kdesvn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Child Process Pids in Bash Shell Scripts</title>
		<link>http://www.rekk.de/bloggy/2007/finding-child-pids-in-bash-shell-scripts/</link>
		<comments>http://www.rekk.de/bloggy/2007/finding-child-pids-in-bash-shell-scripts/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 20:35:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=33</guid>
		<description><![CDATA[To control background child processes from a shell script you want to know the PID or job-id of the child. Here are some ways to do this: First starting a background process echoes the job-id and pid of the process: $ emacs &#38;amp; [1] 15393 The PID of the last command set to run in [...]]]></description>
			<content:encoded><![CDATA[<p>To control background child processes from a shell script you want to know the PID or job-id of the child. Here are some ways to do this:</p>
<p>First starting a background process echoes the job-id and pid of the process:<br />
<pre><code>$ emacs &amp;amp;
[1] 15393</code></pre><br />
The PID of the last command set to run in the background by the current shell or script is stored in $! variable:<br />
<pre><code>$ echo $!
15393</code></pre><br />
This you could find out by using the jobs command:<br />
<code>$ PID=`jobs -l | sed -n &#039;s/^\[[0-9]*\] *+&nbsp;&nbsp;*\([0-9]*\) .*$/\1/p&#039;`; echo $PID</code><br />
using the fact that the last current (last started) job will be marked by a + in<br />
jobs -l output.<br />
To terminate the current job you don&#8217;t need the explicit job-id:<br />
<code>$ kill %+</code><br />
The exit status will be stored in the $? variable.<br />
Read more in the <a href="http://tldp.org/LDP/abs/html/x8618.html">Advanced Bash-Scripting Guide:Job Control Commands</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2007/finding-child-pids-in-bash-shell-scripts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NetBeans User Configuration Settings Location on Linux</title>
		<link>http://www.rekk.de/bloggy/2007/netbeans-user-configuration-settings-location-on-linux/</link>
		<comments>http://www.rekk.de/bloggy/2007/netbeans-user-configuration-settings-location-on-linux/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 02:28:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=32</guid>
		<description><![CDATA[To see your currently used user directory go to Help &#8211; About &#8211; Details. To override the default settings in the file netbeans-install-dir/etc/netbeans.conf you can create a directory etc/ in /home/myhome/.netbeans/6.0 ( with 6.0 being the version number of your NetBeans installation). Then use the default netbeans.conf file from netbeans-install-dir/etc/netbeans.conf as a template to create [...]]]></description>
			<content:encoded><![CDATA[<p>To see your currently used user directory go to Help &#8211; About &#8211; Details.</p>
<p>To override the default settings in the file netbeans-install-dir/etc/netbeans.conf you can create a directory etc/ in /home/myhome/.netbeans/6.0 ( with 6.0 being the version number of your NetBeans installation). Then use the default netbeans.conf file from netbeans-install-dir/etc/netbeans.conf as a template to create a user specific settings in  /home/myhome/.netbeans/6.0/etc/netbeans.conf (see <a href="http://wiki.netbeans.info/wiki/view/FaqNetbeansConf">How do I make my custom startup parameters permanent?</a> ).</p>
<p>For instance you could change you user name (used in templates):<br />
<pre><code># Options used by NetBeans launcher by default, can be overridden by explicit
# command line switches:
netbeans_default_options=&quot;-J-client -J-Xss2m -J-Xms256m -J-XX:PermSize=64m -J-XX:MaxPermSize=200m -J-Xverify:none -J-Duser.name=&#039;My Name&#039; -J-Dapple.laf.useScreenMenuBar=true -J-Dswing.aatext=true --fontsize 14&quot;</code></pre></p>
<p>(&#8230; or use Tools -&gt; Template Manager -&gt; User configuration properties .)</p>
<p>Read more about startup parameter for Netbeans IDE in <a href="http://wiki.netbeans.org/FaqStartupParameters">FaqStartupParameters</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2007/netbeans-user-configuration-settings-location-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convenient SSH on Linux (kubuntu)</title>
		<link>http://www.rekk.de/bloggy/2007/convenient-ssh-on-linux-kubuntu/</link>
		<comments>http://www.rekk.de/bloggy/2007/convenient-ssh-on-linux-kubuntu/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 17:11:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=29</guid>
		<description><![CDATA[The Problem: There are a bunch of servers I need to login almost daily using ssh, all with different login names and passwords. I also want to secure copy data between them and access one server from another. The Wish: One password for a group of servers to type in only once when I login [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Problem:</strong>  There are a bunch of servers I need to login almost daily using ssh,  all with different login names and passwords. I  also want to secure copy data between them and access one server from another.</p>
<p><strong>The Wish: </strong>One password for a group of servers  to type in only once when I login into the local X-session.</p>
<p><strong>A  Solution:</strong>  Set up passphrase protected private and public keys.   Make ssh-agent run your window manager und type the keys passphrases into a pass-phrase dialog triggered by ssh-add on window managers startup. Use the ssh-agents forwarding features to forward local ssh-identities between remote hosts. Of course you<br />
also need to configure your public key on the remote hosts.</p>
<p>So it goes:</p>
<ol>
<li>Install x11-ssh-askpass (ubuntu package ssh-askpass).</li>
<li>Create key pairs and protect them by a (hopefully) strong passphrase:<br />
<pre><code>~/.ssh$ mkdir mykeys
~/.ssh$ cd mykeys
~/.ssh/mykeys$ ssh-keygen -t dsa
Generating public/private dsa key pair.
Enter file in which to save the key (/home/me/.ssh/id_dsa): /home/me/.ssh/mykeys/gebewau_dsa
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/me/.ssh/mykeys/gebewau_dsa.
Your public key has been saved in /home/me/.ssh/mykeys/gebewau_dsa.pub.
The key fingerprint is:
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
~/.ssh/mykeys$ chmod 600 *</code></pre><br />
To use the keys it is necessary to set strict permission on the files, otherwise ssh won&#8217;t accept them.</li>
<li>Edit your .xinitrc (on ubuntu ssh-agent is running by default, see post <a href="http://www.rekk.de/bloggy/?p=58">SSH on Ubuntu , SHH-Agent Is Running per Default</a>), add this line:<br />
<pre><code>#!/bin/bash
exec ssh-agent sh -c &#039;{ for f in /home/kostja/.ssh/mykeys/*_dsa ; do ssh-add $f&nbsp;&nbsp;&amp;lt;/dev/null ; done ; } &amp;amp;&amp;amp;&nbsp;&nbsp;exec startkde&#039;</code></pre></p>
<p>This will start ssh-agent once to use in all sessions. ssh-agent will start a shell (bash in my case) which in turn executes the command enclosed within &#8216; &#8216;. Foreach private key in mykeys directory there will appear a passphrase dialog triggered by <code>ssh-add </code>. The passphrase dialog is provided by x11-ssh-askpass. For this ssh-add reads the SSH_ASKPASS environment variable (in ubuntu it seems not to be neseccary) which you can set in your ~/.bashrc file :</p>
<p><pre><code># Set the location of the x11-ssh-askpass binary
export SSH_ASKPASS=/usr/local/libexec/x11-ssh-askpass</code></pre><br />
On success &#8211; startkde will be executed. To see how to run the session independently from the success of the passphrase dialog read the description in <a href="http://www.phy.bnl.gov/computing/index.php/Simplifying_SSH_access_using_an_agent">Simplifying SSH access using an agent</a></li>
<li>Configure your ssh client to use agent forwarding by creating and editing the configuration file .ssh/config. An example:<br />
<pre><code># selfmade OpenSSH ssh client configuration file will
# override the system config file in /etc/ssh/ssh_config
#
# Config options are unioned over all matching host
# entries, first config option wins

Host xxx.gebewau.de
# with this user setting you only have to type
# ssh xxx.gebewau.de to connect
User me

Host *.gebewau.de
# don&#039;t need this if identity is added by ssh-add
#&nbsp;&nbsp;IdentityFile ~/.ssh/mykeys/gebewau_dsa
# next two settings have security issues, see man:ssh_config
ForwardAgent yes
ForwardX11 yes

Host *
CheckHostIP yes
Compression yes
StrictHostKeyChecking ask
SetupTimeOut 300
ServerAliveInterval 300
</code></pre>
</li>
<li> Install your identity.pub in a remote machine&#8217;s authorized_keys. You can use scp to copy your public key file to the remote server followed by:<br />
<code>cat gebewau_dsa.pub &amp;gt;&amp;gt; .ssh/authorized_keys</code><br />
Or you use<br />
<code>ssh-copy-id -i ~/.ssh/mykeys/gebewau_dsa.pub user@xxx.gebewau.de</code><br />
this will also set the right permissions in the servers ~/.ssh directory.</li>
</ol>
<p>To use AgentForwarding you have to use ssh -A or enable forwarding in .ssh/config for the local client and for the client on the bridge server.  The bridge servers client will try to use your username you used to log into it. So the set appropriate user names in .ssh/config or use : <code> ssh forwardeduser@over-the-bridge.gebewau.de</code> .</p>
<p><strong>Note about adding several matching identities with ssh-add:</strong><br />
If you have several identities which can access the same host then ssh will only use the first matching one added by ssh-add. Even using command line option -i won&#8217;t override it.<br />
So if you have two SSH identities valid on an SSH server, you better don&#8217;t load either identity into an agent. Otherwise, one of those identities will be unable to access that server. You may also try to set the config option IdentitiesOnly in your clients config file.</p>
<p><strong>Security remark regarding forwarding found in man:ssh_config:</strong><br />
Agent forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the agent&#8217;s Unix-domain socket) can access the local agent through the forwarded connection. An attacker cannot obtain key material from the agent, however they can perform operations on the keys that enable them to authenticate using the identities loaded into the agent.</p>
<p><strong>Links: </strong></p>
<ul>
<li><a href="http://www.ibm.com/developerworks/linux/library/l-keyc3/">OpenSSH key management, Part 3</a> &#8211; 3. Part of a good article, with a clear illustration of agent forwarding.</li>
<li><a href="http://www.phy.bnl.gov/computing/index.php/Remote_Access">Remote Access</a> &#8211; well structured SSH overview</li>
<li><a href="http://www.oreillynet.com/pub/a/oreilly/networking/news/sshtips_0101.html">Top Ten Secure Shell FAQs</a></li>
<li><a href="http://67.18.38.24/orelly/networking_2ndEd/ssh/index.htm">SSH Book</a></li>
<li><a href="http://www.linuxquestions.org/questions/slackware-14/ssh-agentssh-add-question-281964/">ssh-agent/ssh-add question</a> &#8211; useful post about configuring ssh-add/ssh-agent on X startup</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2007/convenient-ssh-on-linux-kubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Open Source Publication and Digital Object Management Infrastructure eSciDoc</title>
		<link>http://www.rekk.de/bloggy/2007/new-open-source-publication-and-digital-object-management-infrastructure-escidoc-based-on-fedora-repository/</link>
		<comments>http://www.rekk.de/bloggy/2007/new-open-source-publication-and-digital-object-management-infrastructure-escidoc-based-on-fedora-repository/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 13:04:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[digital publishing]]></category>
		<category><![CDATA[german]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=27</guid>
		<description><![CDATA[The eSciDoc Infrastructure is published now under the CDDL-Licence . eSciDoc uses the Fedora Repository as backend to store the digital objects and runs within a JBoss Application Server. Although it is still beta the main features are implemented and the install works without bigger problems now.]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.escidoc-project.de/">eSciDoc Infrastructure</a> is published now under the <a href="http://www.opensource.org/licenses/cddl1.php">CDDL-Licence</a> .</p>
<p>eSciDoc uses the <a href="http://www.fedora.info/">Fedora Repository</a> as backend to store the digital objects and runs within a JBoss Application Server. Although it is still beta the main features are implemented and the install works without bigger problems now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2007/new-open-source-publication-and-digital-object-management-infrastructure-escidoc-based-on-fedora-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

