<?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>Ian McShane &#187; Trac</title>
	<atom:link href="http://www.ianmcshane.org/tag/trac/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ianmcshane.org</link>
	<description>All my stuff in one place</description>
	<lastBuildDate>Wed, 26 Jan 2011 04:20:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Free Trac and SVN hosting</title>
		<link>http://www.ianmcshane.org/2007/12/14/free-trac-and-svn-hosting/</link>
		<comments>http://www.ianmcshane.org/2007/12/14/free-trac-and-svn-hosting/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 13:20:23 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Trac]]></category>
		<category><![CDATA[Version Control]]></category>

		<guid isPermaLink="false">http://blog.maccarocks.com/2007/12/14/free-trac-and-svn-hosting/</guid>
		<description><![CDATA[I&#8217;ve been getting really pissed off trying to install Trac to my Dreamhost shared server, to the extent that i&#8217;m contemplating moving hosts. In the interim, DevJaVu have just started to offer free Personal accounts that include integrate Trac and SVN. All you need to do is sign up using the referal code johnny5. I [...]


Related posts:<ol><li><a href='http://www.ianmcshane.org/2007/02/14/versioning-a-web-development-project/' rel='bookmark' title='Permanent Link: Versioning a web development project'>Versioning a web development project</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been getting really pissed off trying to install Trac to my Dreamhost shared server, to the extent that i&#8217;m contemplating moving hosts.</p>
<p>In the interim, <a href="http://www.devjavu.com">DevJaVu</a> have just started to offer free Personal accounts that include integrate Trac and SVN.<br />
All you need to do is sign up using the referal code <strong>johnny5</strong>.  I don&#8217;t know how long that code is valid for so get on it.</p>


<p>Related posts:<ol><li><a href='http://www.ianmcshane.org/2007/02/14/versioning-a-web-development-project/' rel='bookmark' title='Permanent Link: Versioning a web development project'>Versioning a web development project</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ianmcshane.org/2007/12/14/free-trac-and-svn-hosting/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Versioning a web development project</title>
		<link>http://www.ianmcshane.org/2007/02/14/versioning-a-web-development-project/</link>
		<comments>http://www.ianmcshane.org/2007/02/14/versioning-a-web-development-project/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 12:07:12 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Trac]]></category>

		<guid isPermaLink="false">http://blog.maccarocks.com/2007/02/14/versioning-a-web-development-project/</guid>
		<description><![CDATA[This week, i&#8217;ve been trying to get my head around workflow using SVN. As i&#8217;ve mentioned before, i have a Ruby/Rails project on the go at the moment and at the start I decided to use SVN for version control &#8211; Mostly because DreamHost provide SVN as a one-click-setup job. Here is a list of [...]


Related posts:<ol><li><a href='http://www.ianmcshane.org/2007/12/22/project-euler/' rel='bookmark' title='Permanent Link: Project Euler'>Project Euler</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This week, i&#8217;ve been trying to get my head around workflow using <a href="http://subversion.tigris.org/" target="_blank">SVN</a>.<br />
As i&#8217;ve mentioned before, i have a Ruby/Rails project on the go at the moment and at the start I decided to use SVN for version control &#8211; Mostly because DreamHost provide SVN as a one-click-setup job.<br />
Here is a list of what I wanted to achieve, in order:</p>
<p>1.  Backup in case I lose my local working copy.<br />
2.  Automatic publishing to webserver.<br />
3.  A nice way to track changes throughout the project.<br />
4.  Be able to publish the changes dynamically to a webpage.</p>
<p>I use TortoiseSVN on my XP installation to manage my working copy.<br />
The first requirement was easy to achieve, so long as I check in regularly I have a nice shiny copy on the SVN server (obviously).<br />
The second was fairly simple.  I just checked out the latest version to the root directory for the webserver and run &#8220;SVN update&#8221; when I want to refresh it.</p>
<p>When I started, I didn&#8217;t really have much comprehension of source control from a developer perspective so I just had the root of the SVN repository as my working copy.<br />
I have since read up a bit, taking in the concept of trunk, branches and tags.<br />
Today I spent a couple of hours working out how my folder structure should be and moving everything around using TortoiseSVN to the following structure:</p>
<p><a href="http://u.r.l/ProjectName/trunk">http://U.R.L/ProjectName/trunk</a><br />
<a href="http://u.r.l/ProjectName/branches">http://U.R.L/ProjectName/branches</a><br />
<a href="http://u.r.l/ProjectName/tags">http://U.R.L/ProjectName/tags</a></p>
<p>I also changed the web version to use the latest release version using SVN switch %URL_TO_RELEASE_VERSION_IN_TAGS_FOLDER%.</p>
<p>My idea of the workflow is that I make changes to the working copy (a subfolder of branches, i.e /branches/0.1.x) and check in as required.<br />
Once I am happy with the changes, I transfer the changes to the /trunk/ version which can then be accessed via the web for any remote testing I may rope people into.<br />
Once the trunk version has been tested against I can go ahead and make a copy of that into the tags version as the next release, do a SVN switch in the web directory and all is done (along with any config changes to the app&#8217;s db of course).</p>
<p>I&#8217;m not sure if that is a &#8216;best practice&#8217; way of running an SVN linked project but it makes sense to me and would seem to work out in an environment where there was more than one developer working on it.</p>
<p>Like I said, it makes sense to me but maybe I have missed the point and made some fundemental error somewhere?<br />
For example, I still don&#8217;t get the &#8216;Patch&#8217; part of SVN, would it be possible to just update the web directory using a patch from the latest release rather than running SVN update?</p>
<p>I&#8217;ve also been looking been looking into a product called <a href="http://trac.edgewall.org/" target="_blank">Trac</a> which appears to be a good project management/defect tracking application,  anyone had any dealings with it?  From <a href="http://wiki.dreamhost.com/index.php/DreamTracInstall" target="_blank">research</a> it looks like a pain in the ass to install (to Dreamhost at least)</p>


<p>Related posts:<ol><li><a href='http://www.ianmcshane.org/2007/12/22/project-euler/' rel='bookmark' title='Permanent Link: Project Euler'>Project Euler</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ianmcshane.org/2007/02/14/versioning-a-web-development-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

