Created Codestriker topic at:
http://codestriker.sourceforge.net/cgi-bin/codestriker.pl?topic=2206279&action=view
User: sits
Date: 06/04/20 16:51:34
Modified: lib Codestriker.pm
lib/Codestriker/Action SubmitEditTopicProperties.pm
lib/Codestriker/Repository ClearCaseSnapshot.pm
Log:
No repository config supported with new repository name map functionality.
Index: Codestriker.pm
===================================================================
RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker.pm,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- Codestriker.pm 18 Apr 2006 10:45:42 -0000 1.83
+++ Codestriker.pm 20 Apr 2006 23:51:33 -0000 1.84
@@ -28,7 +28,7 @@
);
# Version of Codestriker.
-$Codestriker::VERSION = "1.9.2-alpha-4";
+$Codestriker::VERSION = "1.9.2-alpha-5";
# Default title to display on each Codestriker screen.
$Codestriker::title = "Codestriker $Codestriker::VERSION";
Index: SubmitEditTopicProperties.pm
===================================================================
RCS file:
/cvsroot/codestriker/codestriker/lib/Codestriker/Action/SubmitEditTopicProperties.pm,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- SubmitEditTopicProperties.pm 15 Jan 2006 21:20:05 -0000 1.11
+++ SubmitEditTopicProperties.pm 20 Apr 2006 23:51:34 -0000 1.12
@@ -81,10 +81,13 @@
}
# Make sure the repository value is correct.
- my $repository_url =
$Codestriker::repository_url_map->{$repository_name};
- if ($repository_url eq "") {
- $feedback .= "Repository name \"$repository_name\" is unknown.\n" .
- "Update your codestriker.conf file with this entry.\n";
+ my $repository_url = '';
+ if (defined $repository_name && $repository_name ne '') {
+ $repository_url = $Codestriker::repository_url_map->{$repository_name};
+ if ($repository_url eq "") {
+ $feedback .= "Repository name \"$repository_name\" is unknown.\n" .
+ "Update your codestriker.conf file with this entry.\n";
+ }
}
if ($feedback eq "") {
Index: ClearCaseSnapshot.pm
===================================================================
RCS file:
/cvsroot/codestriker/codestriker/lib/Codestriker/Repository/ClearCaseSnapshot.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ClearCaseSnapshot.pm 8 Jun 2004 21:26:45 -0000 1.2
+++ ClearCaseSnapshot.pm 20 Apr 2006 23:51:34 -0000 1.3
@@ -86,7 +86,7 @@
}
# If there was no error, this will be undefined
- return $error_msg
+ return $error_msg;
}
# Retrieve the "root" of this repository.
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Codestriker-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/codestriker-commits