Hi,
Can't you execute the Subversion command you want from the command
line, redirect the output to a file, then upload the file on the
create topic page? That way you can use any Subversion command you
like.
Cheers,
David
On Thu, Sep 4, 2008 at 5:40 PM, himanshu padmanabhi
<him...@gm...> wrote:
> Hi ,
>
> I am facing severe problem while using codestriker-1.9.6(with mysql
> database) with svn.
>
> I want to compare latest version of SVN with the working copy.Dont want to
> specify "start or end tag".
>
> "Default HEAD ticking" also requires start/end tag.
>
> documentation says codestriker internally fires "svn diff --non-interactive
> -r START_TAG:END_TAG --old repository_url MODULE" and generates the diff
> output which can be also done by manually firing "svn diff..." and browsing
> the diff file.
>
> So command I want is "svn diff -r HEAD $module_name".
>
> I tried many options,also changed the "Subversion.pm" file to
>
> if (defined $revision) {
> .......
> } else {
> ....
> push @args, 'diff';
> push @args, '-r';
> push @args, 'HEAD';
> push @args, $module_name;
> Codestriker::execute_command($read_stdout_fh, $stderr_fh,
> $Codestriker::svn, @args);
> ...
> }
>
> But "Codestriker::execute_command($read_stdout_fh, $stderr_fh,
> $Codestriker::svn, @args);" hangs out.
>
> Please help.
>
> --
> Regards,
> Himanshu Padmanabhi
>
>
|