<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Subversion properties for integrating TortoiseSVN with Trac</title>
	<atom:link href="http://www.ghidinelli.com/2007/10/10/subversion-properties-for-integrating-tortoisesvn-with-trac/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ghidinelli.com/2007/10/10/subversion-properties-for-integrating-tortoisesvn-with-trac</link>
	<description></description>
	<lastBuildDate>Thu, 01 Jun 2017 18:51:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Cristi Harjoi</title>
		<link>http://www.ghidinelli.com/2007/10/10/subversion-properties-for-integrating-tortoisesvn-with-trac/comment-page-1#comment-44498</link>
		<dc:creator>Cristi Harjoi</dc:creator>
		<pubDate>Wed, 20 Feb 2008 16:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghidinelli.com/2007/10/10/subversion-properties-for-integrating-tortoisesvn-with-trac/#comment-44498</guid>
		<description>Thank you both! :)

I&#039;ve managed to integrate trac and subversion running on SME server with the following batch file (takes local path and trac project name as variables)

@echo off
svn propset -R bugtraq:label &quot;Ticket #:&quot; %1
svn propset -R bugtraq:url &quot;https://127.0.0.1/%2/%%BUGID%%&quot; %1
svn propset -R bugtraq:message &quot;Ticket #%%BUGID%%&quot; %1
svn propset -R bugtraq:number &quot;true&quot; %1

example: integrare.bat d:\testsvn test_svn

takes the pain out of right-clicking in tortoisesvn :)</description>
		<content:encoded><![CDATA[<p>Thank you both! <img src='http://www.ghidinelli.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve managed to integrate trac and subversion running on SME server with the following batch file (takes local path and trac project name as variables)</p>
<p>@echo off<br />
svn propset -R bugtraq:label &#8220;Ticket #:&#8221; %1<br />
svn propset -R bugtraq:url &#8220;https://127.0.0.1/%2/%%BUGID%%&#8221; %1<br />
svn propset -R bugtraq:message &#8220;Ticket #%%BUGID%%&#8221; %1<br />
svn propset -R bugtraq:number &#8220;true&#8221; %1</p>
<p>example: integrare.bat d:\testsvn test_svn</p>
<p>takes the pain out of right-clicking in tortoisesvn <img src='http://www.ghidinelli.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Corey Trager</title>
		<link>http://www.ghidinelli.com/2007/10/10/subversion-properties-for-integrating-tortoisesvn-with-trac/comment-page-1#comment-41408</link>
		<dc:creator>Corey Trager</dc:creator>
		<pubDate>Sat, 17 Nov 2007 17:43:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghidinelli.com/2007/10/10/subversion-properties-for-integrating-tortoisesvn-with-trac/#comment-41408</guid>
		<description>Here&#039;s some more documentation on this, from the TortoiseSVN folks:
http://tortoisesvn.net/issuetracker_integration

I happen to be the author of a free open source&lt;a href=&quot;http://www.ifdefined.com/doc_bug_tracker_subversion.html&quot; rel=&quot;nofollow&quot;&gt;issue tracker with Subversion integration&lt;/a&gt; like Trac&#039;s integration, &lt;a href=&quot;http://ifdefined.com/bugtrackernet.html&quot; rel=&quot;nofollow&quot;&gt;BugTracker.NET&lt;/a&gt;

I include with my distribution a Windows batch file that sets the &quot;bugtraq&quot; properties:

svn propset -R bugtraq:label &quot;BugTracker.NET ID:&quot; .
svn propset -R bugtraq:url &quot;http://127.0.0.1/btnet/edit_bug.aspx?id=%%BUGID%%&quot; .
svn propset -R bugtraq:message &quot;bugid: %%BUGID%%&quot; .
svn propset -R bugtraq:number &quot;true&quot; .
svn propset -R bugtraq:warnifnoissue &quot;true&quot; .
svn commit -q -m &quot;Added BugTracker.NET properties to the repository&quot;</description>
		<content:encoded><![CDATA[<p>Here&#8217;s some more documentation on this, from the TortoiseSVN folks:<br />
<a href="http://tortoisesvn.net/issuetracker_integration" rel="nofollow">http://tortoisesvn.net/issuetracker_integration</a></p>
<p>I happen to be the author of a free open source<a href="http://www.ifdefined.com/doc_bug_tracker_subversion.html" rel="nofollow">issue tracker with Subversion integration</a> like Trac&#8217;s integration, <a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">BugTracker.NET</a></p>
<p>I include with my distribution a Windows batch file that sets the &#8220;bugtraq&#8221; properties:</p>
<p>svn propset -R bugtraq:label &#8220;BugTracker.NET ID:&#8221; .<br />
svn propset -R bugtraq:url &#8220;http://127.0.0.1/btnet/edit_bug.aspx?id=%%BUGID%%&#8221; .<br />
svn propset -R bugtraq:message &#8220;bugid: %%BUGID%%&#8221; .<br />
svn propset -R bugtraq:number &#8220;true&#8221; .<br />
svn propset -R bugtraq:warnifnoissue &#8220;true&#8221; .<br />
svn commit -q -m &#8220;Added BugTracker.NET properties to the repository&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Orange is my favorite color &#187; Blog Archive &#187; Managing third-party software with Subversion</title>
		<link>http://www.ghidinelli.com/2007/10/10/subversion-properties-for-integrating-tortoisesvn-with-trac/comment-page-1#comment-40220</link>
		<dc:creator>Orange is my favorite color &#187; Blog Archive &#187; Managing third-party software with Subversion</dc:creator>
		<pubDate>Fri, 12 Oct 2007 20:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghidinelli.com/2007/10/10/subversion-properties-for-integrating-tortoisesvn-with-trac/#comment-40220</guid>
		<description>[...] the heels of my post yesterday, I want to share a strategy I&#8217;ve recently started using to manage third party [...]</description>
		<content:encoded><![CDATA[<p>[...] the heels of my post yesterday, I want to share a strategy I&#8217;ve recently started using to manage third party [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
