But i can see this version available with post-review util, just to tell
you its 0.4 version of post-review.


Here are the lines of code written for file_list option


        # process diff file list
        if options.file_list:
            dfl_array = {}
            new_description = []
            for line1 in description:
                orgline1 = line1
                line1 = line1.strip()
                if not line1:
                    continue
                m = re.search(r'\.\.\. ([^#]+)#(\d+)
(add|edit|delete|integrate|branch|move/delete|move/add)', line1)
                if not m:
                    die("Unsupported line from p4 opened: %s" % line1)
                depot_path = m.group(1)
                dfl_array[depot_path] = orgline1

            dflh = open(options.file_list, "r")
            for myline in dflh.readlines():
                new_description.append(dfl_array[myline.strip()])
            dflh.close()

            description = new_description

Please help Christian

On Mon, May 14, 2012 at 12:38 PM, Christian Hammond <chip...@chipx86.com>wrote:

> Hi Nilesh,
>
> This must have been a custom version. We never supported these options.
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> Review Board - http://www.reviewboard.org
> VMware, Inc. - http://www.vmware.com
>
>
> On Sun, May 13, 2012 at 11:26 PM, Nilesh Jaiswal <nileshj...@gmail.com>wrote:
>
>> Hi,
>>
>> We were using old post-review utility which was supporting following
>> review option.
>>
>> parser.add_option("--file-list",
>>                       dest="file_list", default=None,
>>                       help="use file list instead of all files in
>> changelist")
>> parser.add_option("--ignore-diff-size",
>>                       dest="ignore_diff_size", action="store_true",
>>                       default=False,
>>                       help="ignore the diff size of the patch "
>>                            "and upload diff to reviewboard")
>>
>>
>> But now with new post-review util, we doesn't see this option available
>> hence this is effecting our work and its been ask by Dev team to provide
>> such option. Could you please help us how to make this option available,
>> Also if there are any other option supporting such feature please let us
>> know.
>>
>> Please help.
>>
>> Thanks in advance.
>>
>> Regards,
>> Nilesh J
>>
>> --
>> Want to help the Review Board project? Donate today at
>> http://www.reviewboard.org/donate/
>> Happy user? Let us know at http://www.reviewboard.org/users/
>> -~----------~----~----~----~------~----~------~--~---
>> To unsubscribe from this group, send email to
>> reviewboard+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/reviewboard?hl=en
>
>
>  --
> Want to help the Review Board project? Donate today at
> http://www.reviewboard.org/donate/
> Happy user? Let us know at http://www.reviewboard.org/users/
> -~----------~----~----~----~------~----~------~--~---
> To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~----------~----~----~----~------~----~------~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en

Reply via email to