codestriker-user Mailing List for Codestriker: collaborative code reviewer (Page 12)
Brought to you by:
sits
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(12) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
|
Feb
|
Mar
(1) |
Apr
(6) |
May
(3) |
Jun
(1) |
Jul
|
Aug
(9) |
Sep
(2) |
Oct
(2) |
Nov
(8) |
Dec
(6) |
| 2004 |
Jan
(12) |
Feb
(19) |
Mar
(2) |
Apr
(2) |
May
(4) |
Jun
(11) |
Jul
|
Aug
(14) |
Sep
(4) |
Oct
(27) |
Nov
(4) |
Dec
(22) |
| 2005 |
Jan
(14) |
Feb
(2) |
Mar
(11) |
Apr
(3) |
May
(14) |
Jun
(60) |
Jul
(58) |
Aug
(76) |
Sep
(72) |
Oct
(59) |
Nov
|
Dec
(4) |
| 2006 |
Jan
(1) |
Feb
(5) |
Mar
(13) |
Apr
(11) |
May
(30) |
Jun
(17) |
Jul
(18) |
Aug
(39) |
Sep
|
Oct
|
Nov
|
Dec
(17) |
| 2007 |
Jan
(18) |
Feb
(5) |
Mar
(20) |
Apr
(2) |
May
(3) |
Jun
(13) |
Jul
(11) |
Aug
(4) |
Sep
(6) |
Oct
(9) |
Nov
(3) |
Dec
|
| 2008 |
Jan
(10) |
Feb
|
Mar
(5) |
Apr
|
May
|
Jun
(9) |
Jul
(10) |
Aug
(10) |
Sep
(13) |
Oct
(34) |
Nov
(12) |
Dec
(8) |
| 2009 |
Jan
(4) |
Feb
(11) |
Mar
(12) |
Apr
(3) |
May
(36) |
Jun
(4) |
Jul
(11) |
Aug
(12) |
Sep
(25) |
Oct
(13) |
Nov
(9) |
Dec
|
| 2010 |
Jan
|
Feb
(12) |
Mar
(6) |
Apr
(10) |
May
(12) |
Jun
|
Jul
(4) |
Aug
(9) |
Sep
(12) |
Oct
(3) |
Nov
(6) |
Dec
(3) |
| 2011 |
Jan
(2) |
Feb
(1) |
Mar
(3) |
Apr
(5) |
May
(3) |
Jun
(8) |
Jul
|
Aug
(14) |
Sep
|
Oct
(3) |
Nov
(1) |
Dec
|
| 2012 |
Jan
(2) |
Feb
(10) |
Mar
(4) |
Apr
(3) |
May
(2) |
Jun
(5) |
Jul
|
Aug
(3) |
Sep
|
Oct
(2) |
Nov
(4) |
Dec
(2) |
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(1) |
Nov
|
Dec
(2) |
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: David S. <dav...@gm...> - 2009-03-02 06:27:25
|
> 1. Does the tool have the ability to have multiple people code review the > code? Yes. > 2. Can this tool act as a gatekeeper before the code check in? Sort of - but this is more of a policy / agreement with your software team. People of course can still check in code outside of Codestriker. I have used it in the past as a pre-commit step before commits. Cheers, David |
|
From: David S. <dav...@gm...> - 2009-03-01 22:21:40
|
Well I think I just embarrassed myself... pop/push actually do work on the end of the list, not the start! My bad. I must admit, I actually haven't used subversion-post-commit.pl in a while. I have been using commit-email-codestriker.pl instead, which is based off Subversion's post-commit script. This is why this script is currently broken. I actually prefer the other script, as it sends an email out with the diff text, and a link to the new topic. So yes - those "pop" calls should really be "shift". And you are right, we need 'topic_state > => "Open"' now in the CodestrikerClient call, as that was added recently. Thanks for the report, I'll fix up this old script. Cheers, David On Mon, Mar 2, 2009 at 8:26 AM, Eugene Gill <mi...@ke...> wrote: > Hi. > > Far be it for me, to contradict you on this, I'm no perl expert. but I can > only tell you my experience of trying to set this up earlier today. > > If I call the script directly, like below, I get the following: > > sunny-jim bin # ./subversion-post-commit.pl > /var/svn/svn.keergill.com/jetbyte 17 > > ... > <title>Codestriker error</title> > ... > <body bgcolor="white"> > <p /><FONT COLOR='red'>Input parameter email has invalid value: > ./subversion-post-commit.pl: `/usr/bin/svnlook info 17 -r > /var/svn/svn.keergill.com/jetbyte' failed with this > output:@keergill.com</FONT><p /> > </body> > ... > > Clearly from the error message its trying to apply the repository value to > the revision number parameter because its pulling off the parameters in the > reverse order to that expected by the code. > > If I then reverse the parameters, I get the following > > sunny-jim bin # ./subversion-post-commit.pl 17 > /var/svn/svn.keergill.com/jetbyte > > ... > <title>Codestriker error</title> > ... > <body bgcolor="white"> > <p /><FONT COLOR='red'>Topic state unrecognised</FONT><p /> > </body> > ... > > So now I find that the call to CodestrikerClient::create_topic is failing > because the topic_state parameter is not initialised. If I add 'topic_state > => "Open"' to the parameter list on the call to create_topic everything > works hunky dory (at least on first inspection, I haven't tried the script > in the subversion post-commit hook again yet. > > Regards > > Eugene Gill > > > > 2009/3/1 David Sitsky <dav...@gm...> >> >> Hi Eugene, >> >> I use this scripts at my work, so they work fine. >> >> The push and pop operators in perl work more in the metaphor of a >> stack, not a list. So pop removes the first element from the list, not >> the last. >> >> Cheers, >> David >> >> On Mon, Mar 2, 2009 at 2:10 AM, Eugene Gill <mi...@ke...> wrote: >> > Hi. >> > >> > I'm just in the process of trying to set up Codestriker to automatically >> > generate reviews for SVN commits and am looking at this script. Has it >> > actually been tested? >> > >> > The following lines pop the command line arguments off from the end of >> > the >> > list and therefore in the opposite order to that suggested in the >> > comment >> > and the documentation. >> > >> > # First argument is the repository followed by the revision number. >> > my $repository = pop @ARGV; >> > my $revision = pop @ARGV; >> > >> > Apologies if I'm being somehow stupid, but it surprises me that this has >> > gone unspotted until now. >> > >> > Eugene >> > >> > >> > >> > >> > >> > >> > >> > ------------------------------------------------------------------------------ >> > Open Source Business Conference (OSBC), March 24-25, 2009, San >> > Francisco, CA >> > -OSBC tackles the biggest issue in open source: Open Sourcing the >> > Enterprise >> > -Strategies to boost innovation and cut costs with open source >> > participation >> > -Receive a $600 discount off the registration fee with the source code: >> > SFAD >> > http://p.sf.net/sfu/XcvMzF8H >> > _______________________________________________ >> > Codestriker-user mailing list >> > Cod...@li... >> > https://lists.sourceforge.net/lists/listinfo/codestriker-user >> > >> > > > |
|
From: Eugene G. <mi...@ke...> - 2009-03-01 21:26:58
|
Hi. Far be it for me, to contradict you on this, I'm no perl expert. but I can only tell you my experience of trying to set this up earlier today. If I call the script directly, like below, I get the following: sunny-jim bin # ./subversion-post-commit.pl /var/svn/ svn.keergill.com/jetbyte 17 ... <title>Codestriker error</title> ... <body bgcolor="white"> <p /><FONT COLOR='red'>Input parameter email has invalid value: ./subversion-post-commit.pl: `/usr/bin/svnlook info 17 -r /var/svn/ svn.keergill.com/jetbyte' failed with this output:@keergill.com<output%3A...@ke...></FONT><p /> </body> ... Clearly from the error message its trying to apply the repository value to the revision number parameter because its pulling off the parameters in the reverse order to that expected by the code. If I then reverse the parameters, I get the following sunny-jim bin # ./subversion-post-commit.pl 17 /var/svn/ svn.keergill.com/jetbyte ... <title>Codestriker error</title> ... <body bgcolor="white"> <p /><FONT COLOR='red'>Topic state unrecognised</FONT><p /> </body> ... So now I find that the call to CodestrikerClient::create_topic is failing because the topic_state parameter is not initialised. If I add 'topic_state => "Open"' to the parameter list on the call to create_topic everything works hunky dory (at least on first inspection, I haven't tried the script in the subversion post-commit hook again yet. Regards Eugene Gill 2009/3/1 David Sitsky <dav...@gm...> > Hi Eugene, > > I use this scripts at my work, so they work fine. > > The push and pop operators in perl work more in the metaphor of a > stack, not a list. So pop removes the first element from the list, not > the last. > > Cheers, > David > > On Mon, Mar 2, 2009 at 2:10 AM, Eugene Gill <mi...@ke...> wrote: > > Hi. > > > > I'm just in the process of trying to set up Codestriker to automatically > > generate reviews for SVN commits and am looking at this script. Has it > > actually been tested? > > > > The following lines pop the command line arguments off from the end of > the > > list and therefore in the opposite order to that suggested in the comment > > and the documentation. > > > > # First argument is the repository followed by the revision number. > > my $repository = pop @ARGV; > > my $revision = pop @ARGV; > > > > Apologies if I'm being somehow stupid, but it surprises me that this has > > gone unspotted until now. > > > > Eugene > > > > > > > > > > > > > > > ------------------------------------------------------------------------------ > > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, > CA > > -OSBC tackles the biggest issue in open source: Open Sourcing the > Enterprise > > -Strategies to boost innovation and cut costs with open source > participation > > -Receive a $600 discount off the registration fee with the source code: > SFAD > > http://p.sf.net/sfu/XcvMzF8H > > _______________________________________________ > > Codestriker-user mailing list > > Cod...@li... > > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > > > > |
|
From: David S. <dav...@gm...> - 2009-03-01 20:20:37
|
Hi Eugene, I use this scripts at my work, so they work fine. The push and pop operators in perl work more in the metaphor of a stack, not a list. So pop removes the first element from the list, not the last. Cheers, David On Mon, Mar 2, 2009 at 2:10 AM, Eugene Gill <mi...@ke...> wrote: > Hi. > > I'm just in the process of trying to set up Codestriker to automatically > generate reviews for SVN commits and am looking at this script. Has it > actually been tested? > > The following lines pop the command line arguments off from the end of the > list and therefore in the opposite order to that suggested in the comment > and the documentation. > > # First argument is the repository followed by the revision number. > my $repository = pop @ARGV; > my $revision = pop @ARGV; > > Apologies if I'm being somehow stupid, but it surprises me that this has > gone unspotted until now. > > Eugene > > > > > > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA > -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise > -Strategies to boost innovation and cut costs with open source participation > -Receive a $600 discount off the registration fee with the source code: SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Codestriker-user mailing list > Cod...@li... > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > |
|
From: Eugene G. <mi...@ke...> - 2009-03-01 15:38:46
|
Hi. I'm just in the process of trying to set up Codestriker to automatically generate reviews for SVN commits and am looking at this script. Has it actually been tested? The following lines pop the command line arguments off from the end of the list and therefore in the opposite order to that suggested in the comment and the documentation. # First argument is the repository followed by the revision number. my $repository = pop @ARGV; my $revision = pop @ARGV; Apologies if I'm being somehow stupid, but it surprises me that this has gone unspotted until now. Eugene |
|
From: Eugene G. <mi...@ke...> - 2009-03-01 15:22:33
|
Hi. I'm just in the process of trying to set up Codestriker to automatically generate reviews for SVN commits and am looking at this script. Has it actually been tested? The following lines pop the command line arguments off from the end of the list and therefore in the opposite order to that suggested in the comment and the documentation. # First argument is the repository followed by the revision number. my $repository = pop @ARGV; my $revision = pop @ARGV; Apologies if I'm being somehow stupid, but it surprises me that this has gone unspotted until now. Eugene |
|
From: David S. <dav...@gm...> - 2009-02-16 00:11:17
|
Click on the link "I forgot my password" so that it can send you a new one. Cheers, David On Mon, Feb 16, 2009 at 11:05 AM, Rimar Fausto <rf...@te...> wrote: > What is the default password to login in code striker? > > > > It seems it would not permit me to login using my email address. > > > > Regards, > > Rimar > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA > -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise > -Strategies to boost innovation and cut costs with open source participation > -Receive a $600 discount off the registration fee with the source code: SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Codestriker-user mailing list > Cod...@li... > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > |
|
From: Rimar F. <rf...@te...> - 2009-02-16 00:05:58
|
What is the default password to login in code striker? It seems it would not permit me to login using my email address. Regards, Rimar |
|
From: David S. <dav...@gm...> - 2009-02-13 21:17:40
|
Hi David, > I agree Apache is the way to go. I was avoiding it because my poor > laptop is starting to creek under all the stuff it runs, and IIS is > required by some other software that I already use. Certainly some strange stuff going on between IIS and CGI.pm. > My next problem is that when I create a new topic there is no repository > list to choose from. I expect my Perforce settings in codestriker.conf > are to blame, so I'll get stuck in and work it out. If you only have one repository defined, then the list is not shown, since there is no choice. Cheers, David |
|
From: David B. <dav...@ce...> - 2009-02-13 11:08:30
|
Hi David,
Thanks for the speedy reply. Really appreciated.
I agree Apache is the way to go. I was avoiding it because my poor
laptop is starting to creek under all the stuff it runs, and IIS is
required by some other software that I already use.
In the meantime, I applied your patch to Method.pm and that nearly got
me there. The URLs were now formed like
"http://localhost/?action=search". To get around this I made the very
unsightly hack of replacing
$self->{url_prefix} = $query->url();
with
$self->{url_prefix} = "codestriker.pl";
Which probably highlights my ignorance of the code, but has got things
working for now.
My next problem is that when I create a new topic there is no repository
list to choose from. I expect my Perforce settings in codestriker.conf
are to blame, so I'll get stuck in and work it out.
Thanks again,
David
-----Original Message-----
From: David Sitsky [mailto:dav...@gm...]
Sent: 12 February 2009 20:56
To: David Ball
Cc: cod...@li...
Subject: Re: [Codestriker-user] Hyperlink URLs not properly formed in
Topic List screen. No other Codestriker screens will open.
Hi David,
Yes - this is annoying - some strange interaction between specific
versions of CGI.pm and IIS returning wrong results.
Someday, if I ever get time, I need to install IIS to see this for
myself.
I'd either recommend using Apache, or going to
lib/Codestriker/Http/Method.pm, and near the top, change this code:
# Determine what style URLs are being used.
if (defined $cgi_style) {
$self->{cgi_style} = $cgi_style;
} else {
$self->{cgi_style} = $query->url() =~ /codestriker.pl/ ? 1 : 0;
}
to just:
$self->{cgi_style} = 1;
Cheers,
David
On Fri, Feb 13, 2009 at 12:30 AM, David Ball <dav...@ce...>
wrote:
> Hi all,
>
> I have installed Codestriker and can open the Topic List screen as
> described in the Introduction of the User Guide
> (http://cer00447/codestriker/codestriker.pl in my case), but that is
> as far as I can get because every link on the page just generates a
> "The page cannot be found" error. Looking closely at the screenshots
> in the User's Guide versus what I have in my browser, it appears the
> hyperlink URLs are not being correctly formed. Some examples:
>
> Create New Topic : http://cer00447/topics/create
> Search : http://cer00447/topics/search
>
> I think these should be something like
> http://cer00447/codestriker/codestriker.pl?action=create and
> http://cer00447/codestriker/codestriker.pl?action=search
>
> I've tried entering the correct search URL (as I have guessed it
> above) directly into the browser address bar, but I just get back the
> Topic List screen again.
>
> I've had a quick look around the Perl code but I'm no expert in this
> language so didn't get far.
>
> I have not been able to find references to this problem in the mailing
> list archive or Google. The closest I could find was
> http://sourceforge.net/mailarchive/message.php?msg_id=45EC9147.3000608
> %40users.sourceforge.net which is not quite the same as the issue I
have.
>
> My set-up is:
>
> Windows XP Pro (SP3)
> IIS (5.1)
> Codestriker (1.9.7)
> ActivePerl (5.8.9.825)
> MySQL (5.1.30)
> Browsers : Firefox 3.0.6 and IE6
>
>
> My codestriker.conf file (with comments and sensitive info removed)
follows.
> I realise there are some settings in here that still need tweaking -
> at the moment I'm just trying to get the basics running.
>
> $db = 'DBI:mysql:dbname=codestrikerdb'; $dbuser = 'codestriker';
> $dbpasswd = '*'; $daemon_email_address = '*********@***********';
> $mailhost = '*******.********.com'; $use_compression = 0; $gzip =
> '/bin/gzip';
> $p4 = 'C:\Program Files\Perforce\p4.exe'; $highlighter = '';
> $codestriker_css = 'http://cer00447/codestrikerhtml/codestriker.css';
> @valid_repositories =
> (
> 'perforce:balld@perforce:1666'
> );
> $repository_name_map =
> {
> 'perforce:balld@perforce:1666' => 'Cerillion Perforce'
> };
> $file_viewer =
> {
> '/home/sits/cvs' => 'http://localhost/cgi-bin/cvsweb.cgi',
> 'svn:file:///var/svn/project/trunk' =>
>
>
'http://some.whe.re/cgi-bin/viewvc.cgi/trunk/?root=Project&view=markup'
> };
> @exclude_file_types = ('rtf', 'doc', 'gif', 'bmp', 'jpeg', 'jpg',
'mdb',
> 'ppt', 'vsd', 'xls', 'zip', 'tgz', 'tar', 'gz',
> 'opt', 'aps', 'ncb', 'a', 'so', 'dll', 'lib',
> 'exe', 'png', 'pdf', 'bin', 'out', 'ld', 'fm',
> 'indd', 'wav', 'o', 'obj', 'mpp', 'vsw', 'jfif',
> 'tif', 'tiff', 'xbm', 'fnt', 'ttf', 'pfm', 'pfb',
> 'eps', 'wpj', 'sxi');
> $maximum_topic_size_lines = '';
> $suggested_topic_size_lines = '';
> $NORMAL_MODE = 0;
> $COLOURED_MODE = 1;
> $COLOURED_MONO_MODE = 2;
> $default_topic_create_mode = $COLOURED_MODE; $default_file_to_view =
> -1; @topic_states = ('Open', 'Closed', 'Committed', 'Obsoleted',
> 'Deleted'); @readonly_states = ('Closed', 'Committed', 'Obsoleted',
> 'Deleted'); $allow_searchlist = 1; @project_states = ('Open');
> $antispam_email = 0; $email_send_options =
> {
> comments_sent_to_topic_author => 1,
> comments_sent_to_commenter => 0,
> topic_state_change_sent_to_reviewers => 0
> };
> $default_tabwidth = 8;
> $sort_diffs_by_filename = 1;
> $bug_db = '';
> $bug_db = 'noconnection';
> $bugtracker = 'http://jira/secure/QuickSearch.jspa?searchString=';
> $lxr_map =
> {
> };
> $topic_text_encoding = 'utf8';
> $comment_state_metrics =
> [
> { name => 'Status',
> values => ['Submitted', 'Invalid', 'Completed'],
> default_value => 'Submitted',
> show_on_mainpage => ['Submitted' ]
> }
> ];
> $metric_config = "all";
>
> Many thanks
> David
>
> ____________________________
> David Ball
> Cerillion Technologies Limited
> Mobile: +44 (0) 7748 306 667
> Tel: +44 (0) 20 7812 7708
> Email: dav...@ce...
> Web: www.cerillion.com
> Address: 27th Floor, Centre Point, London, WC1A 1DU
>
>
> ______________________________________________________________________
>
> Cerillion Technologies Limited is a limited liability company
> registered in England No. 3849601 with Registered Office at The
> Quadrant, 118 London Road, Kingston, Surrey, KT2 6QJ. VAT registration
> No. 743 8054 29. Website - http://www.cerillion.com
>
> This email and any attachments with it are intended for the addressee
only.
> It is confidential and may be the subject of legal and/or professional
> privilege. If you have received this email in error please notify the
> sender, destroy any copies and delete from your computer systems as
> any use, disclosure, dissemination, forwarding, printing or copying is
> strictly prohibited.
>
> The content may be personal or contain personal opinions and cannot be
> taken as an expression of Cerillion's position. Internet
> communications cannot be guaranteed to be timely, secure, error or
> virus-free. The sender does not accept liability for any errors or
omissions.
>
> Cerillion reserves the right to monitor all incoming and outgoing
mail.
> Whilst every care has been taken to check this outgoing email for
> viruses, it is your responsibility to carry out any checks upon
receipt.
> ______________________________________________________________________
>
> ----------------------------------------------------------------------
> -------- Create and Deploy Rich Internet Apps outside the browser with
> Adobe(R)AIR(TM)
> software. With Adobe AIR, Ajax developers can use existing skills and
> code to build responsive, highly engaging applications that combine
> the power of local resources and data with the reach of the web.
> Download the Adobe AIR SDK and Ajax docs to start building
> applications today-http://p.sf.net/sfu/adobe-com
> _______________________________________________
> Codestriker-user mailing list
> Cod...@li...
> https://lists.sourceforge.net/lists/listinfo/codestriker-user
>
>
______________________________________________________________________
Cerillion Technologies Limited is a limited liability company registered in England No. 3849601 with Registered Office at The Quadrant, 118 London Road, Kingston, Surrey, KT2 6QJ. VAT registration No. 743 8054 29. Website http://www.cerillion.com
This email and any attachments with it are intended for the addressee only. It is confidential and may be the subject of legal and/or professional privilege. If you have received this email in error please notify the sender, destroy any copies and delete from your computer systems as any use, disclosure, dissemination, forwarding, printing or copying is strictly prohibited.
The content may be personal or contain personal opinions and cannot be taken as an expression of Cerillion's position. Internet communications cannot be guaranteed to be timely, secure, error or virus-free. The sender does not accept liability for any errors or omissions.
Cerillion reserves the right to monitor all incoming and outgoing mail. Whilst every care has been taken to check this outgoing email for viruses, it is your responsibility to carry out any checks upon receipt.
______________________________________________________________________
|
|
From: David S. <dav...@gm...> - 2009-02-12 20:56:03
|
Hi David,
Yes - this is annoying - some strange interaction between specific
versions of CGI.pm and IIS returning wrong results.
Someday, if I ever get time, I need to install IIS to see this for myself.
I'd either recommend using Apache, or going to
lib/Codestriker/Http/Method.pm, and near the top, change this code:
# Determine what style URLs are being used.
if (defined $cgi_style) {
$self->{cgi_style} = $cgi_style;
} else {
$self->{cgi_style} = $query->url() =~ /codestriker.pl/ ? 1 : 0;
}
to just:
$self->{cgi_style} = 1;
Cheers,
David
On Fri, Feb 13, 2009 at 12:30 AM, David Ball <dav...@ce...> wrote:
> Hi all,
>
> I have installed Codestriker and can open the Topic List screen as described
> in the Introduction of the User Guide
> (http://cer00447/codestriker/codestriker.pl in my case), but that is as far
> as I can get because every link on the page just generates a "The page
> cannot be found" error. Looking closely at the screenshots in the User's
> Guide versus what I have in my browser, it appears the hyperlink URLs are
> not being correctly formed. Some examples:
>
> Create New Topic : http://cer00447/topics/create
> Search : http://cer00447/topics/search
>
> I think these should be something like
> http://cer00447/codestriker/codestriker.pl?action=create and
> http://cer00447/codestriker/codestriker.pl?action=search
>
> I've tried entering the correct search URL (as I have guessed it above)
> directly into the browser address bar, but I just get back the Topic List
> screen again.
>
> I've had a quick look around the Perl code but I'm no expert in this
> language so didn't get far.
>
> I have not been able to find references to this problem in the mailing
> list archive or Google. The closest I could find was
> http://sourceforge.net/mailarchive/message.php?msg_id=45EC9147.3000608%40users.sourceforge.net which
> is not quite the same as the issue I have.
>
> My set-up is:
>
> Windows XP Pro (SP3)
> IIS (5.1)
> Codestriker (1.9.7)
> ActivePerl (5.8.9.825)
> MySQL (5.1.30)
> Browsers : Firefox 3.0.6 and IE6
>
>
> My codestriker.conf file (with comments and sensitive info removed) follows.
> I realise there are some settings in here that still need tweaking - at the
> moment I'm just trying to get the basics running.
>
> $db = 'DBI:mysql:dbname=codestrikerdb';
> $dbuser = 'codestriker';
> $dbpasswd = '*';
> $daemon_email_address = '*********@***********';
> $mailhost = '*******.********.com';
> $use_compression = 0;
> $gzip = '/bin/gzip';
> $p4 = 'C:\Program Files\Perforce\p4.exe';
> $highlighter = '';
> $codestriker_css = 'http://cer00447/codestrikerhtml/codestriker.css';
> @valid_repositories =
> (
> 'perforce:balld@perforce:1666'
> );
> $repository_name_map =
> {
> 'perforce:balld@perforce:1666' => 'Cerillion Perforce'
> };
> $file_viewer =
> {
> '/home/sits/cvs' => 'http://localhost/cgi-bin/cvsweb.cgi',
> 'svn:file:///var/svn/project/trunk' =>
>
> 'http://some.whe.re/cgi-bin/viewvc.cgi/trunk/?root=Project&view=markup'
> };
> @exclude_file_types = ('rtf', 'doc', 'gif', 'bmp', 'jpeg', 'jpg', 'mdb',
> 'ppt', 'vsd', 'xls', 'zip', 'tgz', 'tar', 'gz',
> 'opt', 'aps', 'ncb', 'a', 'so', 'dll', 'lib',
> 'exe', 'png', 'pdf', 'bin', 'out', 'ld', 'fm',
> 'indd', 'wav', 'o', 'obj', 'mpp', 'vsw', 'jfif',
> 'tif', 'tiff', 'xbm', 'fnt', 'ttf', 'pfm', 'pfb',
> 'eps', 'wpj', 'sxi');
> $maximum_topic_size_lines = '';
> $suggested_topic_size_lines = '';
> $NORMAL_MODE = 0;
> $COLOURED_MODE = 1;
> $COLOURED_MONO_MODE = 2;
> $default_topic_create_mode = $COLOURED_MODE;
> $default_file_to_view = -1;
> @topic_states = ('Open', 'Closed', 'Committed', 'Obsoleted', 'Deleted');
> @readonly_states = ('Closed', 'Committed', 'Obsoleted', 'Deleted');
> $allow_searchlist = 1;
> @project_states = ('Open');
> $antispam_email = 0;
> $email_send_options =
> {
> comments_sent_to_topic_author => 1,
> comments_sent_to_commenter => 0,
> topic_state_change_sent_to_reviewers => 0
> };
> $default_tabwidth = 8;
> $sort_diffs_by_filename = 1;
> $bug_db = '';
> $bug_db = 'noconnection';
> $bugtracker = 'http://jira/secure/QuickSearch.jspa?searchString=';
> $lxr_map =
> {
> };
> $topic_text_encoding = 'utf8';
> $comment_state_metrics =
> [
> { name => 'Status',
> values => ['Submitted', 'Invalid', 'Completed'],
> default_value => 'Submitted',
> show_on_mainpage => ['Submitted' ]
> }
> ];
> $metric_config = "all";
>
> Many thanks
> David
>
> ____________________________
> David Ball
> Cerillion Technologies Limited
> Mobile: +44 (0) 7748 306 667
> Tel: +44 (0) 20 7812 7708
> Email: dav...@ce...
> Web: www.cerillion.com
> Address: 27th Floor, Centre Point, London, WC1A 1DU
>
>
> ______________________________________________________________________
>
> Cerillion Technologies Limited is a limited liability company registered in
> England No. 3849601 with Registered Office at The Quadrant, 118 London Road,
> Kingston, Surrey, KT2 6QJ. VAT registration No. 743 8054 29. Website –
> http://www.cerillion.com
>
> This email and any attachments with it are intended for the addressee only.
> It is confidential and may be the subject of legal and/or professional
> privilege. If you have received this email in error please notify the
> sender, destroy any copies and delete from your computer systems as any use,
> disclosure, dissemination, forwarding, printing or copying is strictly
> prohibited.
>
> The content may be personal or contain personal opinions and cannot be taken
> as an expression of Cerillion's position. Internet communications cannot be
> guaranteed to be timely, secure, error or virus-free. The sender does not
> accept liability for any errors or omissions.
>
> Cerillion reserves the right to monitor all incoming and outgoing mail.
> Whilst every care has been taken to check this outgoing email for viruses,
> it is your responsibility to carry out any checks upon receipt.
> ______________________________________________________________________
>
> ------------------------------------------------------------------------------
> Create and Deploy Rich Internet Apps outside the browser with
> Adobe(R)AIR(TM)
> software. With Adobe AIR, Ajax developers can use existing skills and code
> to
> build responsive, highly engaging applications that combine the power of
> local
> resources and data with the reach of the web. Download the Adobe AIR SDK and
> Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
> _______________________________________________
> Codestriker-user mailing list
> Cod...@li...
> https://lists.sourceforge.net/lists/listinfo/codestriker-user
>
>
|
|
From: David B. <dav...@ce...> - 2009-02-12 13:58:34
|
Hi all, I have installed Codestriker and can open the Topic List screen as described in the Introduction of the User Guide (http://cer00447/codestriker/codestriker.pl in my case), but that is as far as I can get because every link on the page just generates a "The page cannot be found" error. Looking closely at the screenshots in the User's Guide versus what I have in my browser, it appears the hyperlink URLs are not being correctly formed. Some examples: Create New Topic : http://cer00447/topics/create Search : http://cer00447/topics/search I think these should be something like http://cer00447/codestriker/codestriker.pl?action=create and http://cer00447/codestriker/codestriker.pl?action=search I've tried entering the correct search URL (as I have guessed it above) directly into the browser address bar, but I just get back the Topic List screen again. I've had a quick look around the Perl code but I'm no expert in this language so didn't get far. I have not been able to find references to this problem in the mailing list archive or Google. The closest I could find was http://sourceforge.net/mailarchive/message.php?msg_id=45EC9147.3000608%4 0users.sourceforge.net which is not quite the same as the issue I have. My set-up is: Windows XP Pro (SP3) IIS (5.1) Codestriker (1.9.7) ActivePerl (5.8.9.825) MySQL (5.1.30) Browsers : Firefox 3.0.6 and IE6 My codestriker.conf file (with comments and sensitive info removed) follows. I realise there are some settings in here that still need tweaking - at the moment I'm just trying to get the basics running. $db = 'DBI:mysql:dbname=codestrikerdb'; $dbuser = 'codestriker'; $dbpasswd = '*'; $daemon_email_address = '*********@***********'; $mailhost = '*******.********.com'; $use_compression = 0; $gzip = '/bin/gzip'; $p4 = 'C:\Program Files\Perforce\p4.exe'; $highlighter = ''; $codestriker_css = 'http://cer00447/codestrikerhtml/codestriker.css'; @valid_repositories = ( 'perforce:balld@perforce:1666' ); $repository_name_map = { 'perforce:balld@perforce:1666' => 'Cerillion Perforce' }; $file_viewer = { '/home/sits/cvs' => 'http://localhost/cgi-bin/cvsweb.cgi', 'svn:file:///var/svn/project/trunk' => 'http://some.whe.re/cgi-bin/viewvc.cgi/trunk/?root=Project&view=markup' }; @exclude_file_types = ('rtf', 'doc', 'gif', 'bmp', 'jpeg', 'jpg', 'mdb', 'ppt', 'vsd', 'xls', 'zip', 'tgz', 'tar', 'gz', 'opt', 'aps', 'ncb', 'a', 'so', 'dll', 'lib', 'exe', 'png', 'pdf', 'bin', 'out', 'ld', 'fm', 'indd', 'wav', 'o', 'obj', 'mpp', 'vsw', 'jfif', 'tif', 'tiff', 'xbm', 'fnt', 'ttf', 'pfm', 'pfb', 'eps', 'wpj', 'sxi'); $maximum_topic_size_lines = ''; $suggested_topic_size_lines = ''; $NORMAL_MODE = 0; $COLOURED_MODE = 1; $COLOURED_MONO_MODE = 2; $default_topic_create_mode = $COLOURED_MODE; $default_file_to_view = -1; @topic_states = ('Open', 'Closed', 'Committed', 'Obsoleted', 'Deleted'); @readonly_states = ('Closed', 'Committed', 'Obsoleted', 'Deleted'); $allow_searchlist = 1; @project_states = ('Open'); $antispam_email = 0; $email_send_options = { comments_sent_to_topic_author => 1, comments_sent_to_commenter => 0, topic_state_change_sent_to_reviewers => 0 }; $default_tabwidth = 8; $sort_diffs_by_filename = 1; $bug_db = ''; $bug_db = 'noconnection'; $bugtracker = 'http://jira/secure/QuickSearch.jspa?searchString='; $lxr_map = { }; $topic_text_encoding = 'utf8'; $comment_state_metrics = [ { name => 'Status', values => ['Submitted', 'Invalid', 'Completed'], default_value => 'Submitted', show_on_mainpage => ['Submitted' ] } ]; $metric_config = "all"; Many thanks David ____________________________ David Ball Cerillion Technologies Limited Mobile: +44 (0) 7748 306 667 Tel: +44 (0) 20 7812 7708 Email: dav...@ce... Web: www.cerillion.com Address: 27th Floor, Centre Point, London, WC1A 1DU ______________________________________________________________________ Cerillion Technologies Limited is a limited liability company registered in England No. 3849601 with Registered Office at The Quadrant, 118 London Road, Kingston, Surrey, KT2 6QJ. VAT registration No. 743 8054 29. Website http://www.cerillion.com This email and any attachments with it are intended for the addressee only. It is confidential and may be the subject of legal and/or professional privilege. If you have received this email in error please notify the sender, destroy any copies and delete from your computer systems as any use, disclosure, dissemination, forwarding, printing or copying is strictly prohibited. The content may be personal or contain personal opinions and cannot be taken as an expression of Cerillion's position. Internet communications cannot be guaranteed to be timely, secure, error or virus-free. The sender does not accept liability for any errors or omissions. Cerillion reserves the right to monitor all incoming and outgoing mail. Whilst every care has been taken to check this outgoing email for viruses, it is your responsibility to carry out any checks upon receipt. ______________________________________________________________________ |
|
From: <Ahu...@em...> - 2009-02-11 15:56:27
|
Winnie, We use cvs, so we use cvs diff -uN >/some/file from the top level directory. In your case, I suspect it will be svn diff. Upload the file in the Create new topic page. As David said, Codestriker handles that very well. You can also have a Perl script which establishes an http session with the Codestriker and creates the review, and you might think about doing that for the future. We have done that here, and it serves users really well. Thanks, Neeta -----Original Message----- From: David Sitsky [mailto:dav...@gm...] Sent: Wednesday, February 11, 2009 3:01 AM To: Wong, Winnie Cc: cod...@li... Subject: Re: [Codestriker-user] Diffs of different files with differentpaths in CodeStriker Hi Winnie, Your best best is to not use the Codestriker UI for generating the topic text, but to manually create the diff you need using several svn diff commands, and concatenating all the files into one, then upload the file. Codestriker will handle that fine. Cheers, David On Wed, Feb 11, 2009 at 8:37 AM, Wong, Winnie <wi...@im...> wrote: > Hello David, > > Thank you for your help the past few weeks. We have installed CodeStriker successfully and overall, our team has been more productive utilizing CodeStriker to do code reviews compared to svn diffs. > > We are continually looking for ways to optimize our code review process, and one thing that we would like to have very much is the ability to enter different files in different paths, each with its own start and end revision tags, into one topic. For example, for a feature request or a bug fix, we may have to modify a viewer file, a model file and a config file. It will be nice to be able to enter all of these files separately in the module field in one topic as opposed to enter their parent directory. > > Is this something that is already available with CodeStriker 1.9.7, or foreseeable in an upcoming release? > > Thank you so much. > > > > Winnie Wong > Software Development Engineer > IMDb > wi...@im... > > > > > > ------------------------------------------------------------------------ ------ Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software. With Adobe AIR, Ajax developers can use existing skills and code to build responsive, highly engaging applications that combine the power of local resources and data with the reach of the web. Download the Adobe AIR SDK and Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com _______________________________________________ Codestriker-user mailing list Cod...@li... https://lists.sourceforge.net/lists/listinfo/codestriker-user |
|
From: David S. <dav...@gm...> - 2009-02-11 08:01:09
|
Hi Winnie, Your best best is to not use the Codestriker UI for generating the topic text, but to manually create the diff you need using several svn diff commands, and concatenating all the files into one, then upload the file. Codestriker will handle that fine. Cheers, David On Wed, Feb 11, 2009 at 8:37 AM, Wong, Winnie <wi...@im...> wrote: > Hello David, > > Thank you for your help the past few weeks. We have installed CodeStriker successfully and overall, our team has been more productive utilizing CodeStriker to do code reviews compared to svn diffs. > > We are continually looking for ways to optimize our code review process, and one thing that we would like to have very much is the ability to enter different files in different paths, each with its own start and end revision tags, into one topic. For example, for a feature request or a bug fix, we may have to modify a viewer file, a model file and a config file. It will be nice to be able to enter all of these files separately in the module field in one topic as opposed to enter their parent directory. > > Is this something that is already available with CodeStriker 1.9.7, or foreseeable in an upcoming release? > > Thank you so much. > > > > Winnie Wong > Software Development Engineer > IMDb > wi...@im... > > > > > > |
|
From: Moretti, L. (GE Healthcare) <Luc...@ge...> - 2009-02-03 22:39:46
|
After completing the install instructions and entering the web page specified to start (http://REDACTED.com/codestriker/codestriker.pl), I get the following: Error message: Usage: Apache::RequestRec::BINMODE(r) at /var/www/codestriker/codestriker-1.9.7/lib/Codestriker/Http/Response.pm line 200. Any help would be appreciated, as google is less than helpful with this error message. The best I can figure is it has to do with my mod_perl version (1.99) Am I correct? Thank you, Luciano D Moretti |
|
From: David S. <dav...@gm...> - 2009-02-02 23:58:43
|
Hi Luciano, > I've tried CtCmd v1.06 & 1.04 with the same results. > -------------------- > I'm trying to evaluate CodeStriker, but am having the following issue: > I get failures when I try to do a "make test" for the CtCmd module. I > cannot get CodeStriker working with our repository without this module, but > it does not appear that IBM/Rational are activly supporting the module. I know nothing about this module, however it does appear most of the tests have passed. We only use the fairly basic functions from this module anyway. Perhaps you can try "force" installing the module and seeing if all is well? Cheers, David |
|
From: Moretti, L. (GE Healthcare) <Luc...@ge...> - 2009-02-02 16:12:37
|
Subscribed now, so hopefully the message will go to the list:
I've tried CtCmd v1.06 & 1.04 with the same results.
--------------------
I'm trying to evaluate CodeStriker, but am having the following issue:
I get failures when I try to do a "make test" for the CtCmd module. I
cannot get CodeStriker working with our repository without this module,
but it does not appear that IBM/Rational are activly supporting the
module.
Below is the text from the build. I'm trying to install the module on a
Linux box with Perl 5.8.0 installed.
Thank you,
Luciano Moretti
------------------------
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e"
"test_harness(1, 'blib/lib', 'blib/arch')" t/*.t
t/t1_createArch....1..27
# Running under perl version 5.008 for linux
# Current time local: Fri Jan 30 14:49:43 2009
# Current time GMT: Fri Jan 30 20:49:43 2009
# Using Test.pm version 1.23
ok 1
ok 2
ok 3
ok 4
ok 5
ok 6
ok 7
ok 8
ok 9
ok 10
ok 11
ok 12
ok 13
ok 14
ok 15
ok 16
ok 17
ok 18
ok 19
ok 20
ok 21
ok 22
ok 23
ok 24
ok 25
ok 26
ok 27
ok
t/t2_tstArch.......1..66
# Running under perl version 5.008 for linux
# Current time local: Fri Jan 30 14:50:02 2009
# Current time GMT: Fri Jan 30 20:50:02 2009
# Using Test.pm version 1.23
ok 1
ok 2
The view tag of the current view is: Unix11712CtCmdDevView
==================================================
=================UCM Arch Testing 1 ==============
==================================================
The vob object is /var/tmp/Unix11712_tmp_vob/dump.c
ok 3
New attribute: /var/tmp/Unix11712_tmp_vob/dump.c@@/main/0
ok 4
ok 5
ok 6
ok 7
ok 8
ok 9
ok 10
ok 11
Listing Components in Project Vob:
original: component 1B"Unix11712_tmp_vob"0B
Unix11712_tmp_vob
ok 12
ok 13
fd_1 Folder
fd_2 Folder
fd_1_1 Folder
fd_1_2 Folder
fd_1_2_1 Folder
Unix11712projCtCmd Project
Unix11712CtCmd_int1Str Integration Stream
Development Streams:
Unix11712CtCmd_dev1Str Development Stream
View: Unix11712CtCmdDevView
Unix11712CtCmdAct Activity
Unix11712CtCmdAct The Chosen Activity
ok 14
The Foundation Baseline's Component Root Directory path is:
/var/tmp/Unix11712_tmp_vob/
/var/tmp/Unix11712_tmp_vob/dump.c
We just picked a Version:/var/tmp/Unix11712_tmp_vob/dump.c@@/main/0
Number of activities in changeset: 0
Unix11712CtCmdAct Changeset
/var/tmp/Unix11712_tmp_vob/.@@/main/Unix11712CtCmd_dev1Str/1
ok 15
ok 16
Checked in: Checked in "/var/tmp/Unix11712_tmp_vob/dump.c" version
"/main/Unix11712CtCmd_dev1Str/1".
Attached activities:
activity:Unix11712CtCmdAct@/var/tmp/Unix11712_tmp_pvob
"Unix11712CtCmdAct"
ok 17
Components and some baselines in Activity Unix11712CtCmdAct -
Project Unix11712projCtCmd
ok 18
==================================================
=================UCM Arch Tested 1 ==============
==================================================
==================================================
=================UCM Arch Testing 2 ==============
==================================================
The vob object is /var/tmp/Unix11712_tmp_vob/dump.c
ok 19
Existing attribute: /var/tmp/Unix11712_tmp_vob/dump.c@@/main/0
Has an attribute Tested
ok 20
ok 21
ok 22
ok 23
ok 24
ok 25
ok 26
ok 27
original: component 1B"Unix11712_tmp_vob"0B
Unix11712_tmp_vob
ok 28
ok 29
Unix11712CtCmdAct The Chosen Activity
ok 30
The Foundation Baseline's Component Root Directory path is:
/var/tmp/Unix11712_tmp_vob/
/var/tmp/Unix11712_tmp_vob/dump.c
We just picked a
Version:/var/tmp/Unix11712_tmp_vob/dump.c@@/main/Unix11712CtCmd_dev1Str/
1
Number of activities in changeset: 1
Unix11712CtCmdAct Changeset
/var/tmp/Unix11712_tmp_vob/dump.c@@/main/Unix11712CtCmd_dev1Str/1
/var/tmp/Unix11712_tmp_vob/.@@/main/Unix11712CtCmd_dev1Str/1
ok 31
ok 32
Checked in: Checked in "/var/tmp/Unix11712_tmp_vob/dump.c" version
"/main/Unix11712CtCmd_dev1Str/2".
Attached activities:
activity:Unix11712CtCmdAct@/var/tmp/Unix11712_tmp_pvob
"Unix11712CtCmdAct"
ok 33
Components and some baselines in Activity Unix11712CtCmdAct -
Project Unix11712projCtCmd
ok 34
==================================================
=================UCM Arch Tested 2 ==============
==================================================
==================================================
=================UCM Arch Testing 3 ==============
==================================================
The vob object is /var/tmp/Unix11712_tmp_vob/dump.c
ok 35
Existing attribute: /var/tmp/Unix11712_tmp_vob/dump.c@@/main/0
Has an attribute Tested
ok 36
ok 37
ok 38
ok 39
ok 40
ok 41
ok 42
ok 43
original: component 1B"Unix11712_tmp_vob"0B
Unix11712_tmp_vob
ok 44
ok 45
Unix11712CtCmdAct The Chosen Activity
ok 46
The Foundation Baseline's Component Root Directory path is:
/var/tmp/Unix11712_tmp_vob/
/var/tmp/Unix11712_tmp_vob/dump.c
We just picked a
Version:/var/tmp/Unix11712_tmp_vob/dump.c@@/main/Unix11712CtCmd_dev1Str/
2
Number of activities in changeset: 2
Unix11712CtCmdAct Changeset
/var/tmp/Unix11712_tmp_vob/dump.c@@/main/Unix11712CtCmd_dev1Str/2
/var/tmp/Unix11712_tmp_vob/dump.c@@/main/Unix11712CtCmd_dev1Str/1
/var/tmp/Unix11712_tmp_vob/.@@/main/Unix11712CtCmd_dev1Str/1
Delivering to Unix11712CtCmd_int1Str The Integration Stream of
Unix11712CtCmdAct
deliver.Unix11712CtCmd_dev1Str.20090130.145005 Delivery succeeded
returning this activity
ok 47
ok 48
Checked in: Checked in "/var/tmp/Unix11712_tmp_vob/dump.c" version
"/main/Unix11712CtCmd_dev1Str/3".
Attached activities:
activity:Unix11712CtCmdAct@/var/tmp/Unix11712_tmp_pvob
"Unix11712CtCmdAct"
ok 49
Components and some baselines in Activity Unix11712CtCmdAct -
Project Unix11712projCtCmd
ok 50
==================================================
=================UCM Arch Tested 3 ==============
==================================================
==================================================
=================UCM Arch Testing 4 ==============
==================================================
The vob object is /var/tmp/Unix11712_tmp_vob/dump.c
ok 51
Existing attribute: /var/tmp/Unix11712_tmp_vob/dump.c@@/main/0
Has an attribute Tested
ok 52
ok 53
ok 54
ok 55
ok 56
ok 57
ok 58
ok 59
original: component 1B"Unix11712_tmp_vob"0B
Unix11712_tmp_vob
ok 60
ok 61
Unix11712CtCmdAct The Chosen Activity
ok 62
The Foundation Baseline's Component Root Directory path is:
/var/tmp/Unix11712_tmp_vob/
/var/tmp/Unix11712_tmp_vob/dump.c
We just picked a
Version:/var/tmp/Unix11712_tmp_vob/dump.c@@/main/Unix11712CtCmd_dev1Str/
3
Number of activities in changeset: 3
Unix11712CtCmdAct Changeset
/var/tmp/Unix11712_tmp_vob/dump.c@@/main/Unix11712CtCmd_dev1Str/3
/var/tmp/Unix11712_tmp_vob/dump.c@@/main/Unix11712CtCmd_dev1Str/2
/var/tmp/Unix11712_tmp_vob/dump.c@@/main/Unix11712CtCmd_dev1Str/1
/var/tmp/Unix11712_tmp_vob/.@@/main/Unix11712CtCmd_dev1Str/1
Delivering to Unix11712CtCmd_int1Str The Integration Stream of
Unix11712CtCmdAct
deliver.Unix11712CtCmd_dev1Str.20090130.145008 Delivery succeeded
returning this activity
ok 63
ok 64
Checked in: Checked in "/var/tmp/Unix11712_tmp_vob/dump.c" version
"/main/Unix11712CtCmd_dev1Str/4".
Attached activities:
activity:Unix11712CtCmdAct@/var/tmp/Unix11712_tmp_pvob
"Unix11712CtCmdAct"
ok 65
Components and some baselines in Activity Unix11712CtCmdAct -
Project Unix11712projCtCmd
ok 66
==================================================
=================UCM Arch Tested 4 ==============
==================================================
ok
t/t3_cleanArch.....1..8
# Running under perl version 5.008 for linux
# Current time local: Fri Jan 30 14:50:10 2009
# Current time GMT: Fri Jan 30 20:50:10 2009
# Using Test.pm version 1.23
not ok 1
not ok 2
not ok 3
ok 4
ok 5
ok 6
ok 7
ok 8
FAILED tests 1-3
Failed 3/8 tests, 62.50% okay
Failed Test Stat Wstat Total Fail Failed List of Failed
------------------------------------------------------------------------
-------
t/t3_cleanArch.t 8 3 37.50% 1-3
|
|
From: David S. <dav...@gm...> - 2009-01-14 22:51:05
|
Hi Winnie, Can you not click on a line and add a comment? Or do you mean something else? Maybe you need to send me a screenshot as I don't understand what you mean. Cheers, David On Thu, Jan 15, 2009 at 6:46 AM, Wong, Winnie <wi...@im...> wrote: > Hi David, > > It works. Thank you so much. > > One more question - I don't see line by line annotation capability (excuse me if I'm blind). Is there any plan in the near future to have this feature? > > > Winnie Wong > wi...@im... > > IMDb > 10920 Ventura Blvd > Studio City, CA 91604 > > http://imdb.com > > > -----Original Message----- > From: David Sitsky [mailto:dav...@gm...] > Sent: Tuesday, January 13, 2009 11:12 PM > To: Wong, Winnie > Cc: cod...@li... > Subject: Re: Codestiker supoprting svn+ssh protocol? > > Hi Winne, > >> Does Codestriker support svn+ssh protocol? If so, how to properly configure >> it? > > I haven't tried this myself, partly because it would be a bit of a > pain. You need to create the appropriate ssh pub/priv keys for the > user running your web-server, and make sure the appropriate subversion > commands can be run without any password prompts as that user. > > For this reason, its usually easier just to go via svnserver or http. > > That said - try setting a repository string like: > > svn:svn+ssh://my.subversion.server/repos/product/trunk > > Cheers, > David > |
|
From: David S. <dav...@gm...> - 2009-01-14 07:12:19
|
Hi Winne, > Does Codestriker support svn+ssh protocol? If so, how to properly configure > it? I haven't tried this myself, partly because it would be a bit of a pain. You need to create the appropriate ssh pub/priv keys for the user running your web-server, and make sure the appropriate subversion commands can be run without any password prompts as that user. For this reason, its usually easier just to go via svnserver or http. That said - try setting a repository string like: svn:svn+ssh://my.subversion.server/repos/product/trunk Cheers, David |
|
From: David S. <dav...@gm...> - 2009-01-06 06:15:26
|
Many thanks for that Alberto - I'll add it to my list of things to apply for the next release. Cheers, David On Tue, Jan 6, 2009 at 5:28 AM, Alberto Meza <am...@de...> wrote: > I have been working with codestriker for a couple of months. Great tool! I > had some trouble getting work with Perforce, finally I identified that what > I was trying to do, it was something unsupported. So I look for a way to add > it. It wasn't that complex. > > I'll like to contribute with this to the source code maybe someone else is > looking for it too. > > I'm attaching a diff. I hope that is enough. > > > > - Alberto > > ------------------------------------------------------------------------------ > > _______________________________________________ > Codestriker-user mailing list > Cod...@li... > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > |
|
From: David S. <dav...@gm...> - 2008-12-03 22:20:11
|
Please send the diff to me. I'd ideally like to add it as a unit test, so if you can sanitize it too, that would be good. Cheers, David On Thu, Dec 4, 2008 at 7:57 AM, David Carson <dcc...@gm...> wrote: > I have a user who created his diff text using "cvs diff -uN" in various > slightly different ways. The results are always that Codestriker shows the > diff text as if it did not know it was a valid diff -- just shows as a plain > diff file. > > The first time, he did "cvs diff -uN <dir>" and then he cd-ed to the <dir> > and did it without arguments, etc. I have looked at the diff and it > certainly looks correct to me. I have compared it to diffs of topics that > display the diff correctly and cannot see any obvious differences. > > How might I go about debugging this? Maybe this is a known issue? > > (David S., I could send you the diff directly, or perhaps I could sanitize > it so that the proprietary issue is avoided.) > > David > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Codestriker-user mailing list > Cod...@li... > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > |
|
From: David C. <dcc...@gm...> - 2008-12-03 20:57:30
|
I have a user who created his diff text using "cvs diff -uN" in various slightly different ways. The results are always that Codestriker shows the diff text as if it did not know it was a valid diff -- just shows as a plain diff file. The first time, he did "cvs diff -uN <dir>" and then he cd-ed to the <dir> and did it without arguments, etc. I have looked at the diff and it certainly looks correct to me. I have compared it to diffs of topics that display the diff correctly and cannot see any obvious differences. How might I go about debugging this? Maybe this is a known issue? (David S., I could send you the diff directly, or perhaps I could sanitize it so that the proprietary issue is avoided.) David |
|
From: David S. <dav...@gm...> - 2008-12-03 03:58:39
|
There used to be an option on the view topic page to view the topic with "minimal width". This got taken out temporarily because of the syntax highlighting work. In theory, this could be put in again. Would you mind adding in a feature request for this? Cheers, David On Mon, Dec 1, 2008 at 11:20 PM, himanshu padmanabhi <him...@gm...> wrote: > How to 'wrap text' in codestriker because if even my one line is long,I have > to scroll a lot. > It is fine if text splits on multiple lines. > > -- > Regards, > Himanshu Padmanabhi > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Codestriker-user mailing list > Cod...@li... > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > |
|
From: David S. <dav...@gm...> - 2008-12-02 09:49:00
|
I must admit I haven't tried it myself, but does the "Download all metric data as a tabbed delimited text file" from the metrics report screen not show this? Cheers, David On Tue, Dec 2, 2008 at 12:29 AM, Akshay <aks...@gm...> wrote: > Is it possible to download custom added per topic metrics in CSV format ? > > -- > > George Bernard Shaw - "Youth is a wonderful thing. What a crime to waste it > on children." > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Codestriker-user mailing list > Cod...@li... > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > |
|
From: David S. <dav...@gm...> - 2008-12-01 22:54:37
|
Looking at your screenshot - something isn't setup right, as the URL is: http://fm6swww012/codestriker?topic=7466430&action=view&mode=0&brmode=1&fview=0 It should look something like: http://fm6swww012/codestriker/codestriker.pl?topic=7466430&action=view&mode=0&brmode=1&fview=0 I can only guess something is mis-configured in IIS. Can you re-check the instructions from the manual and make sure you have set this up correctly? I am assuming you are using Codestriker 1.9.7? Can you browse to the following URL to see all the topics? http://fm6swww012/codestriker/codestriker.pl Cheers, David On Tue, Dec 2, 2008 at 6:37 AM, Contreras, Rick <ric...@in...> wrote: > I forgot to answer your question, we have IE 7.0.5730.13. I have another > working Codestriker on another server, but the last one I'm setting up isn't > quite working as I noted. > > > > > > > > I also replied to your email before asking if you can rename the file so I > can try the one you attached. You can try renaming to txt file. Thanks > David! Hope you had a great holiday weekend! > > > > Regards, > > Rick > > > > -----Original Message----- > From: David Sitsky [mailto:dav...@gm...] > Sent: Wednesday, November 26, 2008 10:11 PM > To: Contreras, Rick > Cc: cod...@li... > Subject: Re: Codestriker error > > > > Hi Rick, > > > > Can you try the attached codestriker.js file, replacing what you have > > in your install? This fixed an issue I had with IE on a system where > > authentication was enabled, but I couldn't reproduce the issue you are > > having. What version of IE are you using? > > > > Cheer,s > > David > > > > On Tue, Nov 25, 2008 at 3:29 AM, Contreras, Rick > > <ric...@in...> wrote: > >> Thanks David! Hope you had a great weekend! Here's what I get when I >> attempt > >> to go to the link you inquired about: > >> > >> > >> > >> > >> > >> The actual output of the html is as attached. Thanks David and have a >> great > >> week! Thank you for your support and help! > >> > >> > >> > >> Regards, > >> > >> Rick > >> > >> > >> > >> > >> > >> -----Original Message----- > >> From: David Sitsky [mailto:dav...@gm...] > >> Sent: Sunday, November 23, 2008 9:24 PM > >> To: Contreras, Rick > >> Cc: cod...@li... > >> Subject: Re: Codestriker error > >> > >> > >> > >> You should have the following javascript files in that directory: > >> > >> > >> > >> codestriker.js overlib_centerpopup.js overlib_draggable.js > >> > >> overlib.js xbdhtml.js > >> > >> > >> > >> Can you access the following URL from your browser? > >> > >> > >> > >> http://fm6swww012/codestrikerhtml/xbdhtml.js > >> > >> > >> > >> Does the same issue happen with firefox? > >> > >> > >> > >> Maybe if you can send me the html output from the main page as an > >> > >> attachment, I might be able to see an issue in the html itself. > >> > >> > >> > >> Cheersd, > >> > >> David > >> > >> > >> > >> On Sat, Nov 22, 2008 at 3:51 AM, Contreras, Rick > >> > >> <ric...@in...> wrote: > >> > >>> Thanks David for the reply! I am using IIS. The files I have on my >>> install > >>> directory (D:\Applications\codestrikernew\html\) are: > >> > >>> > >> > >>> Overlib.js > >> > >>> Overlib_centerpopup.js > >> > >>> Overlib_drggable.js > >> > >>> > >> > >>> When you say properly accessible from the web-server, do you mean the > >>> share is accessible to the account running the website? > >> > >>> > >> > >>> Thanks David for your help and input on this! > >> > >>> > >> > >>> Regards, > >> > >>> Rick > >> > >>> > >> > >>> > >> > >>> -----Original Message----- > >> > >>> From: David Sitsky [mailto:dav...@gm...] > >> > >>> Sent: Wednesday, November 19, 2008 7:04 PM > >> > >>> To: Contreras, Rick > >> > >>> Cc: cod...@li... > >> > >>> Subject: Re: Codestriker error > >> > >>> > >> > >>> Hi Rick, > >> > >>> > >> > >>> That sounds strange. Do you get the same issue if you use firefox? > >> > >>> > >> > >>> The STICKY flag comes from one of those overlib*.js files in the html > >> > >>> directory. I take it they are all properly accessible from the > >> > >>> web-server? > >> > >>> > >> > >>> Are you using apache or IIS? I wonder if the web-server log files > >> > >>> might tell us something more. Certainly nobody else has reported an > >> > >>> issue like this. I wonder if one of those files is missing? > >> > >>> > >> > >>> Cheers, > >> > >>> David > >> > >>> > >> > >>> On Thu, Nov 20, 2008 at 11:05 AM, Contreras, Rick > >> > >>> <ric...@in...> wrote: > >> > >>>> Ok, so I've got everything pretty much in working condition. However, >>>> the > >> > >>>> one piece of the puzzle that I'm unable to figure out is the links used > >>>> to > >> > >>>> add comments to topics that have been posted. That said, here's the >>>> error > >>>> I > >> > >>>> get: > >> > >>>> > >> > >>>> > >> > >>>> > >> > >>>> > >> > >>>> > >> > >>>> I click on the Add General Comment link or any of the other links that > >>>> are > >> > >>>> supposed to display the sticky where you post any comments, but nothing > >> > >>>> happens. Then I go to the bottom left corner and click on the error to > >>>> get > >> > >>>> more info and the above is what I see. Any suggestions? Is STICKY > >>>> supposed > >> > >>>> to be initialized? I did a search and didn't see any initialization. >>>> Then > >> > >>>> again, I'm not that familiar with javascript and not sure if that's >>>> valid > >>>> or > >> > >>>> not. > >> > >>>> > >> > >>>> > >> > >>>> > >> > >>>> Thanks for any help or suggestions! > >> > >>>> > >> > >>>> > >> > >>>> > >> > >>>> Rick Contreras > >> > >>>> 1900 Prairie City Rd > >> > >>>> Folsom, CA 95630 > >> > >>>> 916.356.2472 > >> > >>>> ric...@in... > >> > >>>> http://www.intel.com > >> > >>>> > >> > >>>> > >> > >>> |