<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to patches</title><link>https://sourceforge.net/p/codestriker/patches/</link><description>Recent changes to patches</description><atom:link href="https://sourceforge.net/p/codestriker/patches/feed.rss" rel="self"/><language>en</language><lastBuildDate>Mon, 05 Sep 2016 14:41:00 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/codestriker/patches/feed.rss" rel="self" type="application/rss+xml"/><item><title>Patch for TFS Support</title><link>https://sourceforge.net/p/codestriker/patches/30/</link><description>&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;as discussed, here the proposed patch for TFS support&lt;/li&gt;
&lt;li&gt;changelog and documentation have been updated&lt;/li&gt;
&lt;li&gt;version number incremented tentatively&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Christian Eitner</dc:creator><pubDate>Mon, 05 Sep 2016 14:41:00 -0000</pubDate><guid>https://sourceforge.net4bb5ac0fa7ad8afd940911f324f95571513678ea</guid></item><item><title>Mysql Socket Problem </title><link>https://sourceforge.net/p/codestriker/patches/29/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I am trying to get a codestriker server up using with mysql as database.&lt;br /&gt;
The mysql repository is in custom path instead of the standard path. I have modified the /etc/my.conf to read&lt;br /&gt;
&amp;lt;snip&amp;gt;&lt;br /&gt;
[client]&lt;br /&gt;
socket=/srv/mysql/mysql.sock&lt;/p&gt;
&lt;p&gt;[mysqld]&lt;br /&gt;
datadir=/srv/mysql&lt;br /&gt;
socket=/srv/mysql/mysql.sock&lt;br /&gt;
&amp;lt;/snip&amp;gt;&lt;/p&gt;
&lt;p&gt;It works fine with the local mysql client.&lt;/p&gt;
&lt;p&gt;However when I try to run install.pl in codestriker I get the following error:&lt;/p&gt;
&lt;p&gt;DBI connect('dbname=codestrikerdb','codestriker',...) failed: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (13) at /var/www/codestriker/codestriker-1.9.10/lib/Codestriker/DB/Database.pm line 61&lt;/p&gt;
&lt;p&gt;I am not able to proceed further due to this error.&lt;/p&gt;
&lt;p&gt;Expected behavior: Codestriker should try to connect to any mysql socket instead of the default one.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hemant</dc:creator><pubDate>Fri, 09 Sep 2011 05:22:59 -0000</pubDate><guid>https://sourceforge.net5fa7210f797f21eb8e41fa7ae9fbb2a301cdfa81</guid></item><item><title>ClearCaseSerialDiff.pm repository matching function</title><link>https://sourceforge.net/p/codestriker/patches/28/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;fixed the simple repository matching function in ClearCaseSerialDiff.pm&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lee Ballard</dc:creator><pubDate>Wed, 08 Dec 2010 19:21:58 -0000</pubDate><guid>https://sourceforge.netda4852e086b7008dcb836536ec7d3632b56d029b</guid></item><item><title>parallel view using clearcase snapshot on linux broken</title><link>https://sourceforge.net/p/codestriker/patches/27/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;for Bug ID 3111991&lt;/p&gt;
&lt;p&gt;using clearcase snapshot view on RHEL4.8 I see the following error when I click on parallel links:&lt;/p&gt;
&lt;p&gt;Can't close(): Bad file descriptor at /var/www/codestriker/codestriker-1.9.10/lib/Codestriker/Action/ViewTopicFile.pm line 66&lt;/p&gt;
&lt;p&gt;Here is the source of the problem. After making this change it works fine&lt;/p&gt;
&lt;p&gt;--------------- lib/Codestriker/Repository/ClearCaseSnapshot.pm ---------------&lt;br /&gt;
index 42e530d..3c74341 100644&lt;br /&gt;
@@ -59,13 +59,14 @@ sub retrieve ($$$\$) {&lt;br /&gt;
push @ctArgs, $full_element_name;&lt;br /&gt;
Codestriker::execute_command(\*STDERR, \*STDERR, $Codestriker::cleartool, @ctArgs);&lt;/p&gt;
&lt;p&gt;+ my $input_fh = new FileHandle;&lt;br /&gt;
open(my $input_fh, "&amp;lt;", $tempfile);&lt;br /&gt;
for (my $i = 1; &amp;lt;$input_fh&amp;gt;; $i++) {&lt;br /&gt;
$_ = Codestriker::decode_topic_text($_);&lt;br /&gt;
chop;&lt;br /&gt;
$$content_array_ref[$i] = $_;&lt;br /&gt;
}&lt;br /&gt;
- close &amp;lt;$input_fh&amp;gt;;&lt;br /&gt;
+ close $input_fh;&lt;/p&gt;
&lt;p&gt;if (defined($tempdir)) {&lt;br /&gt;
unlink $errorfile;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lee Ballard</dc:creator><pubDate>Wed, 08 Dec 2010 19:15:51 -0000</pubDate><guid>https://sourceforge.net99ceaef11d95092e40aefa62a0356ce7651c3811</guid></item><item><title>Improved ClearCase dynamic view support </title><link>https://sourceforge.net/p/codestriker/patches/26/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;As i have already suggest in my yesterdays comment, the current (1.9.10) ClearCaseDynamic.pm has some issues.&lt;/p&gt;
&lt;p&gt;1.) getDiff() in ClearCaseDynamic.pm should use CodeStriker::isWindows()&lt;br /&gt;
in order to determine if its running on windows, because CtCmd::setview&lt;br /&gt;
doesn't work on windows (see retrieve() on how it is done there)&lt;/p&gt;
&lt;p&gt;2.) if only one tag is specified the getDiff() method should not return a&lt;br /&gt;
diff to the elements predecessor instead it should pull the entire element&lt;br /&gt;
from clearcase (this guarantees the same behaviour as in the Subversion.pm for&lt;br /&gt;
example)&lt;/p&gt;
&lt;p&gt;Therefore i have slightly adjusted the ClearCaseDynamic.pm file and added support for retrieval by a single tag and fixed that path issue.&lt;/p&gt;
&lt;p&gt;Tobias&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tobias Mieth</dc:creator><pubDate>Thu, 05 Nov 2009 10:33:10 -0000</pubDate><guid>https://sourceforge.net74b1d404092612278b3b3737850f3b4b90863f12</guid></item><item><title>Tag support for Clearcase dynamic view</title><link>https://sourceforge.net/p/codestriker/patches/25/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The Tag support clearcase dynamic view support has been added.&lt;br /&gt;
The start-tag and end-tag can be provided to fetch the file info directly from clearcase.&lt;br /&gt;
No need for getting the diff of two version and then uploading it while creating Topic.&lt;/p&gt;
&lt;p&gt;Changes done: ClearCaseDynamic.pm&lt;br /&gt;
Added functionality for getDiff()&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lakshmivaragan</dc:creator><pubDate>Wed, 22 Jul 2009 12:10:21 -0000</pubDate><guid>https://sourceforge.net66715f9950281b30d2861851ca665ac15954a3b0</guid></item><item><title>Allow using URLs with parameters as viewers</title><link>https://sourceforge.net/p/codestriker/patches/24/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This is similar to patch 1710760 except that this allows to use URLs with parameters for svn repositories. A typical example (and why I needed this):&lt;/p&gt;
&lt;p&gt;$file_viewer =&lt;br /&gt;
{&lt;br /&gt;
'svn:file:///var/svn/project/trunk' =&amp;gt; 'http://some.whe.re/cgi-bin/viewvc.cgi/trunk/?root=Project&amp;amp;view=markup',&lt;br /&gt;
};&lt;/p&gt;
&lt;p&gt;The patch is attached but here it is also inline for ease of review:&lt;/p&gt;
&lt;p&gt;--- codestriker-1.9.6-orig/lib/Codestriker/Repository/Subversion.pm     2008-08-16 22:00:29.000000000 +0200&lt;br /&gt;
+++ codestriker/lib/Codestriker/Repository/Subversion.pm        2008-08-16 22:22:26.000000000 +0200&lt;br /&gt;
@@ -103,5 +103,16 @@&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;-    return (defined $viewer) ? $viewer . "/" . $filename : "";&lt;br /&gt;
+    return "" unless defined $viewer;&lt;br /&gt;
+&lt;br /&gt;
+    # check for parameters in the URL: if we have them, the file name must be&lt;br /&gt;
+    # inserted before them; otherwise we simply append it to the end&lt;br /&gt;
+    if ( $viewer =~ /^([^?]+)(\?.*)$/ ) {&lt;br /&gt;
+ $viewer = $1 . $filename . $2;&lt;br /&gt;
+    }&lt;br /&gt;
+    else {&lt;br /&gt;
+ $viewer .= '/' . $filename;&lt;br /&gt;
+    }&lt;br /&gt;
+&lt;br /&gt;
+    return $viewer;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Vadim Zeitlin</dc:creator><pubDate>Sat, 16 Aug 2008 20:27:45 -0000</pubDate><guid>https://sourceforge.net8d2b09d8d8ab5850efa250bf63aaae1696eb309c</guid></item><item><title>Use filename@REV when using SVN 1.5</title><link>https://sourceforge.net/p/codestriker/patches/23/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This patch detects SVN version in Subversion.pm and if using SVN 1.5, we use&lt;/p&gt;
&lt;p&gt;svn cat filename@REV&lt;/p&gt;
&lt;p&gt;instead of&lt;/p&gt;
&lt;p&gt;svn cat --revision REV filename&lt;/p&gt;
&lt;p&gt;This seems to work in all cases and there are cases where the latter doesn't work (particularly in cases where the file's path has been moved/deleted at some later point in the repository's lifetime).&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Charles Lechasseur</dc:creator><pubDate>Fri, 01 Aug 2008 16:40:29 -0000</pubDate><guid>https://sourceforge.netaa3f9f1f28cf388465ab0c903525e1983e1d44f1</guid></item><item><title>Patch to view comments bound to non-deltas with context</title><link>https://sourceforge.net/p/codestriker/patches/22/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This patch allows comments bound to a line that isn't part of a delta to be viewable with context in the Topic Comments screen (context is pulled from the file's content in the repository). In particular, binding a comment to a line that was before the first delta in a file broke CodeStriker when trying to view topic comments with context; fixed with this patch also.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Charles Lechasseur</dc:creator><pubDate>Thu, 31 Jul 2008 20:08:36 -0000</pubDate><guid>https://sourceforge.netd6b64bbee56f83e937bf4113bb2c398dfcddf9f4</guid></item><item><title>Fix "use of uninitialized variable" when accessing SVN</title><link>https://sourceforge.net/p/codestriker/patches/21/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Generating topics using SVN used to print some "use of uninitialized variable" warnings at the top of the page... I fixed it by initializing a variable... thought I'd post this patch in case you want to merge it.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Charles Lechasseur</dc:creator><pubDate>Thu, 31 Jul 2008 20:03:50 -0000</pubDate><guid>https://sourceforge.net760d274c369f912283e96463d1b9146c47d9bc4a</guid></item></channel></rss>