<?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>No pain no gain &#187; Coding</title>
	<atom:link href="http://www.dikant.de/category/coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dikant.de</link>
	<description>Personal blog of Peter Dikant</description>
	<lastBuildDate>Sun, 23 May 2010 20:57:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Running Django 0.96.2 in Leopard</title>
		<link>http://www.dikant.de/2008/06/29/running-django-0962-in-leopard/</link>
		<comments>http://www.dikant.de/2008/06/29/running-django-0962-in-leopard/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 10:01:06 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.dikant.de/?p=47</guid>
		<description><![CDATA[The installer script for the Python based web development framework Django contains a bug on OSX 10.5 which leads to problems with the default applications &#8220;admin&#8221;, &#8220;comments&#8221; and &#8220;sitemaps&#8221;. The template and media files of these applications are copied to &#8230; <a href="http://www.dikant.de/2008/06/29/running-django-0962-in-leopard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The installer script for the <a href="http://www.python.org">Python</a> based web development framework <a href="http://www.djangoproject.com">Django</a> contains a bug on OSX 10.5 which leads to problems with the default applications &#8220;admin&#8221;, &#8220;comments&#8221; and &#8220;sitemaps&#8221;. The template and media files of these applications are copied to a wrong directory.</p>
<p>As a workaround for this bug, you can copy the files manually to the correct location:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-r</span> <span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Frameworks<span style="color: #000000; font-weight: bold;">/</span>Python.framework<span style="color: #000000; font-weight: bold;">/</span>Versions<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2.5</span><span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>python2.5<span style="color: #000000; font-weight: bold;">/</span>site-packages<span style="color: #000000; font-weight: bold;">/</span>django<span style="color: #000000; font-weight: bold;">/</span>contrib<span style="color: #000000; font-weight: bold;">/*</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Python<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2.5</span><span style="color: #000000; font-weight: bold;">/</span>site-packages<span style="color: #000000; font-weight: bold;">/</span>django<span style="color: #000000; font-weight: bold;">/</span>contrib<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2008/06/29/running-django-0962-in-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing SSL certificates into svnX</title>
		<link>http://www.dikant.de/2007/08/27/importing-ssl-certificates-into-svnx/</link>
		<comments>http://www.dikant.de/2007/08/27/importing-ssl-certificates-into-svnx/#comments</comments>
		<pubDate>Mon, 27 Aug 2007 17:26:23 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.dikant.de/2007/08/27/importing-ssl-certificates-into-svnx/</guid>
		<description><![CDATA[I just wanted to connect to my subversion repository with svnX via the https protocol. Guess what, svnX did not want to connect because it did not trust my selfsigned certificate. The only way to continue was to dismiss the &#8230; <a href="http://www.dikant.de/2007/08/27/importing-ssl-certificates-into-svnx/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just wanted to connect to my <a href="http://subversion.tigris.org/">subversion</a> repository with <a href="http://www.apple.com/downloads/macosx/development_tools/svnx.html">svnX</a> via the https protocol. Guess what, svnX did not want to connect because it did not trust my selfsigned certificate. The only way to continue was to dismiss the error message with no way to import the certificate.</p>
<p>Turns out that svnX is using the command line svn client to communicate with repositories. So you need to mark the SSL certificate as trusted in the command line client and then svnX will work automatically. To do that, fire up a terminal window and just list the contents of your repository:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">svn</span> list https:<span style="color: #000000; font-weight: bold;">//</span>whatever.server.com<span style="color: #000000; font-weight: bold;">/</span>repository<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>Now svn will print a certificate validation error and ask whether you want to dismiss or accept the cerificate. Accept it permanently to get rid of that warning. Now you can access the repository via svnX.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2007/08/27/importing-ssl-certificates-into-svnx/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
