<?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: Integrating Mantis and Subversion</title>
	<atom:link href="http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/</link>
	<description>Thoughts on everything from education and politics to internet usability, and programming.</description>
	<lastBuildDate>Fri, 03 Sep 2010 03:32:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Integrating Mantis and SVN &#171; &#60;chatter&#62;</title>
		<link>http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/comment-page-3/#comment-35119</link>
		<dc:creator>Integrating Mantis and SVN &#171; &#60;chatter&#62;</dc:creator>
		<pubDate>Fri, 03 Sep 2010 03:32:48 +0000</pubDate>
		<guid isPermaLink="false">http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/#comment-35119</guid>
		<description>[...] Not so hard when you follow easy instructions like from this article on alt-tag.com: http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Not so hard when you follow easy instructions like from this article on alt-tag.com: <a href="http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/" rel="nofollow">http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abdul Mannan</title>
		<link>http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/comment-page-3/#comment-35118</link>
		<dc:creator>Abdul Mannan</dc:creator>
		<pubDate>Fri, 30 Jul 2010 13:08:51 +0000</pubDate>
		<guid isPermaLink="false">http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/#comment-35118</guid>
		<description>Hi how are you. I wanted to know that in my case on commit i need the issue to be set to feedback status and also to assign it to a different user. I have been able to change the status to feedback but I cant assign it to a different guy. please help</description>
		<content:encoded><![CDATA[<p>Hi how are you. I wanted to know that in my case on commit i need the issue to be set to feedback status and also to assign it to a different user. I have been able to change the status to feedback but I cant assign it to a different guy. please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cthrall.com &#187; Blog Archive &#187; Subversion and Mantis Integration on Windows</title>
		<link>http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/comment-page-3/#comment-35117</link>
		<dc:creator>cthrall.com &#187; Blog Archive &#187; Subversion and Mantis Integration on Windows</dc:creator>
		<pubDate>Mon, 26 Jul 2010 14:50:11 +0000</pubDate>
		<guid isPermaLink="false">http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/#comment-35117</guid>
		<description>[...] and Mantis on Windows. I wanted to allow developers to resolve issues via commit comment. I read this great page about it, and used it as a starting point for Windows [...]</description>
		<content:encoded><![CDATA[<p>[...] and Mantis on Windows. I wanted to allow developers to resolve issues via commit comment. I read this great page about it, and used it as a starting point for Windows [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Leal</title>
		<link>http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/comment-page-3/#comment-35113</link>
		<dc:creator>Antonio Leal</dc:creator>
		<pubDate>Sun, 04 Jul 2010 18:48:04 +0000</pubDate>
		<guid isPermaLink="false">http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/#comment-35113</guid>
		<description>Workaround for portuguese, spanish, french et. al. accented charecters.

I had to add the post-commit like this:
------------------------------------------
#!/bin/bash
export LANG=&quot;en_US.UTF-8&quot;
 
REPOS=&quot;$1&quot;
REV=&quot;$2&quot;
 
auth=$(svnlook author -r $REV $REPOS)
dt=$(svnlook date -r $REV $REPOS)
changed=$(svnlook changed -r $REV $REPOS)
log=$(svnlook log -r $REV $REPOS)
n=$&#039;\n&#039;


/usr/bin/php -q /var/www/mantis/scripts/checkin.php &lt;&lt;&lt;  &quot;Changes to /rail01/pmi/projects/neasden [rev${REV}] by $auth, $dt$n$log$n$changed&quot;

----------------------------------------

otherwise tou get posts on mantis like this

ora c?\195?\161 est?\195?\161 o c?\195?\163o d&#039;?\195?\161gua em ora?\195?\167?\195?\163o n?\195?\169?

The workaround is to add export LANG=&quot;en_US.UTF-8&quot; to the post-commit script

my setup:
- debian 4.0 etch (all defaults for lamp)
- mantis-1.2.1
- svnserve</description>
		<content:encoded><![CDATA[<p>Workaround for portuguese, spanish, french et. al. accented charecters.</p>
<p>I had to add the post-commit like this:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
#!/bin/bash<br />
export LANG=&#8221;en_US.UTF-8&#8243;</p>
<p>REPOS=&#8221;$1&#8243;<br />
REV=&#8221;$2&#8243;</p>
<p>auth=$(svnlook author -r $REV $REPOS)<br />
dt=$(svnlook date -r $REV $REPOS)<br />
changed=$(svnlook changed -r $REV $REPOS)<br />
log=$(svnlook log -r $REV $REPOS)<br />
n=$&#8217;\n&#8217;</p>
<p>/usr/bin/php -q /var/www/mantis/scripts/checkin.php &lt;&lt;&lt;  &quot;Changes to /rail01/pmi/projects/neasden [rev${REV}] by $auth, $dt$n$log$n$changed&quot;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>otherwise tou get posts on mantis like this</p>
<p>ora c?\195?\161 est?\195?\161 o c?\195?\163o d&#039;?\195?\161gua em ora?\195?\167?\195?\163o n?\195?\169?</p>
<p>The workaround is to add export LANG=&quot;en_US.UTF-8&quot; to the post-commit script</p>
<p>my setup:<br />
- debian 4.0 etch (all defaults for lamp)<br />
- mantis-1.2.1<br />
- svnserve</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Crayon</title>
		<link>http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/comment-page-3/#comment-35106</link>
		<dc:creator>Crayon</dc:creator>
		<pubDate>Fri, 07 May 2010 18:18:56 +0000</pubDate>
		<guid isPermaLink="false">http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/#comment-35106</guid>
		<description>Thanks a lot, I was able to add an hook to Subversion 1.6.3 installed on Windows Server 2003 with Mantis 1.2.0rc1.

With the help of this site (http://www.codeproject.com/KB/threads/redir.aspx) I was able to code my own post-commit.exe hook in C++.</description>
		<content:encoded><![CDATA[<p>Thanks a lot, I was able to add an hook to Subversion 1.6.3 installed on Windows Server 2003 with Mantis 1.2.0rc1.</p>
<p>With the help of this site (<a href="http://www.codeproject.com/KB/threads/redir.aspx" rel="nofollow">http://www.codeproject.com/KB/threads/redir.aspx</a>) I was able to code my own post-commit.exe hook in C++.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mantis / subversion 連携 &#8211; 千客万来亭::技術文書</title>
		<link>http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/comment-page-3/#comment-35103</link>
		<dc:creator>mantis / subversion 連携 &#8211; 千客万来亭::技術文書</dc:creator>
		<pubDate>Sat, 10 Apr 2010 00:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/#comment-35103</guid>
		<description>[...] Integrating Mantis and Subversion [...]</description>
		<content:encoded><![CDATA[<p>[...] Integrating Mantis and Subversion [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: standpy &#187;OT: Bugtracking mit Mantis und Mercurial</title>
		<link>http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/comment-page-3/#comment-35102</link>
		<dc:creator>standpy &#187;OT: Bugtracking mit Mantis und Mercurial</dc:creator>
		<pubDate>Wed, 24 Mar 2010 16:10:40 +0000</pubDate>
		<guid isPermaLink="false">http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/#comment-35102</guid>
		<description>[...] der Platte des Servers schlummerte &#8212; damit war das in fünf Minuten erledigt. Inspiriert von diesem Blog-Post, der das Verfahren mit SVN beschreibt, habe ich das ganze als [...]</description>
		<content:encoded><![CDATA[<p>[...] der Platte des Servers schlummerte &mdash; damit war das in fünf Minuten erledigt. Inspiriert von diesem Blog-Post, der das Verfahren mit SVN beschreibt, habe ich das ganze als [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/comment-page-3/#comment-35100</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Fri, 12 Mar 2010 09:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/#comment-35100</guid>
		<description>Hi,

When I execute this command:

/path/to/php /path/to/mantis/core/checkin.php &lt;&lt;&lt; &quot;My web monkey fixed issue #1337 by accident.&quot;

It will show error message like these:

APPLICATION ERROR #400APPLICATION ERROR #400Database connection failed. Error received from database was #0: PHP Support for database is not enabled.Please use the &quot;Back&quot; button in your web browser to return to the previous page. There you can correct whatever problems were identified in this error or select another action. You can also click an option from the menu bar to go directly to a new section.

Would you tell me how to do this ?

Thank you very very much.

Best regards,
Tony.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>When I execute this command:</p>
<p>/path/to/php /path/to/mantis/core/checkin.php &lt;&lt;&lt; &quot;My web monkey fixed issue #1337 by accident.&quot;</p>
<p>It will show error message like these:</p>
<p>APPLICATION ERROR #400APPLICATION ERROR #400Database connection failed. Error received from database was #0: PHP Support for database is not enabled.Please use the &#8220;Back&#8221; button in your web browser to return to the previous page. There you can correct whatever problems were identified in this error or select another action. You can also click an option from the menu bar to go directly to a new section.</p>
<p>Would you tell me how to do this ?</p>
<p>Thank you very very much.</p>
<p>Best regards,<br />
Tony.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
