<?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>Blog of Robert Kan &#187; subversion</title>
	<atom:link href="http://www.robertkan.net/blog/tag/subversion/feed" rel="self" type="application/rss+xml" />
	<link>http://www.robertkan.net/blog</link>
	<description>web and software development, cRPG</description>
	<lastBuildDate>Wed, 08 Sep 2010 18:13:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Failed to load module for FS type &#8216;bdb&#8217; in TortoiseSVN 1.6.x</title>
		<link>http://www.robertkan.net/blog/2009/05/15/failed-to-load-module-for-fs-type-bdb-in-tortoisesvn-16x</link>
		<comments>http://www.robertkan.net/blog/2009/05/15/failed-to-load-module-for-fs-type-bdb-in-tortoisesvn-16x#comments</comments>
		<pubDate>Fri, 15 May 2009 10:05:30 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.robertkan.net/blog/?p=206</guid>
		<description><![CDATA[Today I&#8217;ve met small problem with my beloved TortoiseSVN client. I was in need to access some old repository stored locally on my computer &#8211; for newer projects I&#8217;m usingdedicated Debian based SVN server. Anyway, trying to access to my local repository via TortoiseSVN has resulted with following message:
Failed to load module for FS type [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;ve met small problem with my beloved TortoiseSVN client. I was in need to access some old repository stored locally on my computer &#8211; for newer projects I&#8217;m usingdedicated Debian based SVN server. Anyway, trying to access to my local repository via TortoiseSVN has resulted with following message:</p>
<pre><code>Failed to load module for FS type 'bdb'</code></pre>
<p>After quick Googling it appeared that from branch 1.6.x, TortoiseSVN doesn&#8217;t support local file:/// repositories based on BDB and they need to be converted to new FSFS format using &#8217;svnadmin&#8217; command line tool as it is explained in <a href="http://svnbook.red-bean.com/en/1.5/svn.reposadmin.maint.html#svn.reposadmin.maint.migrate" target="_blank">SVNBook</a>. As &#8217;svnadmin&#8217; tool is not present in TortoiseSVN, some additional work is needed.</p>
<p>Finally I did in following way:</p>
<ol>
<li>download andÂ  <a href="http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=8100" target="_blank">Tigris</a> build of SVN (it was <a href="http://subversion.tigris.org/files/documents/15/45600/svn-win32-1.6.1.zip">svn-win32-1.6.1.zip</a> in my case). I&#8217;ve tried both 1.5.x and 1.6.x version of CollabNet&#8217;s SVN but apparently <a href="http://codebetter.com/blogs/james.kovacs/archive/2008/07/04/subversion-turns-1-5.aspx" target="_blank">they do not support local BDB</a> as well,</li>
<li>unpack it to any directory, and using command line enter to the bin subdirectory where the svnadmin.exe tool is stored</li>
<li>as written in the book, make dump of your repository with following command:</li>
<pre><code>svnadmin dump c:\FullPathToOldRepository &gt; dumpfile.bin</code></pre>
<li> create new repository in choosen directory, you can use TorotoiseSVN for it as well, now it won&#8217;t ask you for data storage format as BDB is disabled, so it will use FSFS.</li>
<li>import dump data into new repository:</li>
<pre><code>svnadmin load c:\FullPathToNewRepository &lt; dumpfile.bin</code></pre>
</ol>
<p>That is, it worked for me like a charm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertkan.net/blog/2009/05/15/failed-to-load-module-for-fs-type-bdb-in-tortoisesvn-16x/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Ultimate list of SVN resources</title>
		<link>http://www.robertkan.net/blog/2009/03/11/ultimate-list-of-svn-resources</link>
		<comments>http://www.robertkan.net/blog/2009/03/11/ultimate-list-of-svn-resources#comments</comments>
		<pubDate>Wed, 11 Mar 2009 08:17:19 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[vcs]]></category>

		<guid isPermaLink="false">http://www.robertkan.net/blog/?p=184</guid>
		<description><![CDATA[Smashing Magazine has published great list of Subversion related resources, including tools, books, articles links, hosting offers etc.Â  It&#8217;s definitely worth checking especially for those that still don&#8217;t use any version controlling system.
]]></description>
			<content:encoded><![CDATA[<p>Smashing Magazine <a href="http://www.smashingmagazine.com/2009/03/10/ultimate-round-up-for-version-control-with-subversion/" target="_blank">has published</a> great list of <a href="http://subversion.tigris.org/" target="_blank">Subversion</a> related resources, including tools, books, articles links, hosting offers etc.Â  It&#8217;s definitely worth checking especially for those that still don&#8217;t use any version controlling system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertkan.net/blog/2009/03/11/ultimate-list-of-svn-resources/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source versioning tools reviewed</title>
		<link>http://www.robertkan.net/blog/2008/09/19/open-source-versioning-tools-reviewed</link>
		<comments>http://www.robertkan.net/blog/2008/09/19/open-source-versioning-tools-reviewed#comments</comments>
		<pubDate>Fri, 19 Sep 2008 07:53:11 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[vcs]]></category>
		<category><![CDATA[versioning control system]]></category>

		<guid isPermaLink="false">http://www.robertkan.net/blog/?p=125</guid>
		<description><![CDATA[I&#8217;ve just read a very nice and compact review on 7 Open Source VCS tools (Versioning Control Systems). Such tool is a must have for developer and everyone who has tried it &#8211; can&#8217;t live without it anylonger. For my needs Subversion is quite enough and I use TortoiseSVN frontend as I develop on Windows [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just read a <a href="http://www.smashingmagazine.com/2008/09/18/the-top-7-open-source-version-control-systems/" target="_blank">very nice and compact review</a> on 7 Open Source VCS tools (Versioning Control Systems). Such tool is a must have for developer and everyone who has tried it &#8211; can&#8217;t live without it anylonger. For my needs Subversion is quite enough and I use <a href="http://tortoisesvn.tigris.org/" target="_blank">TortoiseSVN</a> frontend as I develop on Windows platform mainly. But it is good to know that there are quite nice alternatives growing up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertkan.net/blog/2008/09/19/open-source-versioning-tools-reviewed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
