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

New issue 1937 by martingboyle: Intellij patch cannot be uploaded into reviewboard
http://code.google.com/p/reviewboard/issues/detail?id=1937

*NOTE: Do not post confidential information in this bug report.*

What version are you running?

1.5

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



What steps will reproduce the problem?
1. create a patch file with Intellij
2. create a new review request and attempt to upload patch file

What is the expected output? What do you see instead?

review should be created. Instead page shows unexpected error message.



What operating system are you using? What browser?

effects all browsers. server side issue

Please provide any additional information below.

Problem is that the format of the patch created by intellij is not supported by review board

i.e. the working copy is denoted as '(revision )'

Index: src/resources/SqlMapConfig.xml
===================================================================
--- src/resources/SqlMapConfig.xml      (revision 178443)
+++ src/resources/SqlMapConfig.xml      (revision )

temporary local fix by modifying  reviewboard/scmtools/svn.py

  def parse_diff_revision(self, file_str, revision_str):
        if revision_str == "(working copy)":
            return file_str, HEAD

        if revision_str == "(revision )":
            return file_str, HEAD




--
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To post to this group, send email to reviewboard-iss...@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.

Reply via email to