Issue 646 in reviewboard: postreview script diff command options "-urNp" do not work on Solaris. gdiff required

2009-07-25 Thread codesite-noreply

Updates:
Status: Fixed

Comment #2 on issue 646 by trowbrds: postreview script diff command  
options "-urNp" do not work on Solaris.  gdiff required
http://code.google.com/p/reviewboard/issues/detail?id=646

Fixed in SVN r2060. Thanks!

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To post to this group, send email to reviewboard-issues@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en
-~--~~~~--~~--~--~---



Issue 646 in reviewboard: postreview script diff command options "-urNp" do not work on Solaris. gdiff required

2008-09-14 Thread codesite-noreply

Issue 646: postreview script diff command options "-urNp" do not work on  
Solaris.  gdiff required
http://code.google.com/p/reviewboard/issues/detail?id=646

Comment #1 by threebredagardens:
Slight modification required in my suggested code

ostype = execute ('uname -s').strip()

need to use -s parameter on uname, and strip the return char.





-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To post to this group, send email to reviewboard-issues@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en
-~--~~~~--~~--~--~---



Issue 646 in reviewboard: postreview script diff command options "-urNp" do not work on Solaris. gdiff required

2008-09-13 Thread codesite-noreply

Issue 646: postreview script diff command options "-urNp" do not work on  
Solaris.  gdiff required
http://code.google.com/p/reviewboard/issues/detail?id=646

New issue report by threebredagardens:
*NOTE: Do not post confidential information in this bug report.*

What's the URL of the page containing the problem?
postrevew script

What steps will reproduce the problem?
1. Execute postreview on a Solaris system

The script will fail executing the diff command.

What is the expected output? What do you see instead?
Script does not work.

What operating system are you using? What browser?
Postreview -- command line.

Please provide any additional information below.

The diff command used in the postreview script to find the changes between
two versions of a file uses the command options "-urNp".  These options are
valid in GNU diff available on Linux, but not the diff command supplied by
default on Solaris.  Instead on Solaris gdiff should be used.

The following code change can work a round this problem:

ostype = execute ('uname -a')

if ostype == 'SunOS':
diff_cmd = 'gdiff -urNp "%s" "%s"' % (old_file, new_file)
else:
 diff_cmd = 'diff -urNp "%s" "%s"' % (old_file, new_file)



Issue attributes:
Status: New
Owner: 
Labels: Type-Defect Priority-Medium

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To post to this group, send email to reviewboard-issues@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en
-~--~~~~--~~--~--~---