Issue 660 in reviewboard: RFE: Eclipse plugin for ReviewBoard

2009-09-02 Thread codesite-noreply

Updates:
Status: Fixed

Comment #7 on issue 660 by trowbrds: RFE: Eclipse plugin for ReviewBoard
http://code.google.com/p/reviewboard/issues/detail?id=660

I think at this point, the eclipse plugin is a living entity, so I'm going  
to close
this out.

--
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 660 in reviewboard: RFE: Eclipse plugin for ReviewBoard

2009-01-08 Thread codesite-noreply


Comment #4 on issue 660 by jefflamb: RFE: Eclipse plugin for ReviewBoard
http://code.google.com/p/reviewboard/issues/detail?id=660

There I go posting without thinking again.

The directory structure is as follows:
The top level project includes any number of externals, which have to be  
included
manually in the batch script.  This is because svn diff doesn't diff  
externals by
default.
The batch script is in a directory that's included as an external resource,
reviewboard, in the following example:
/toplevelproject/reviewboard/post-review.bat
/toplevelproject/reviewboard/post-review.py


--
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 660 in reviewboard: RFE: Eclipse plugin for ReviewBoard

2009-01-08 Thread codesite-noreply


Comment #3 on issue 660 by jefflamb: RFE: Eclipse plugin for ReviewBoard
http://code.google.com/p/reviewboard/issues/detail?id=660

We have the same problem.  We'd love it if we could have the same  
integration as SVN+Eclipse
(Subversive).  Right now, ctrl-alt-c on a folder creates a new commit  
dialog for all files
in and below that top-level folder.  It allows you to enter descriptions  
and select which
files you want to include in the commit.  It's awesome, and could probably  
be duplicated
nearly verbatim if you can still use post-review.py as the back-end:
http://dev.eclipse.org/svnroot/technology/org.eclipse.subversive/

Here's our crude solution that works moderately well in WindowsXP.  It  
automates the review
submission, but doesn't allow you to select individual files or add  
descriptions/testing
from eclipse.

post-review.bat
~

@echo off
cls
SET ReviewNum=""
SET ProjectsToCheck=.
SET Reviewers=
cd %~dp0
cd ..

REM Get our list of reviewers based on who is logged in (winXP)
IF NOT %USERNAME%==firstname1.lastname1 SET  
Reviewers=%Reviewers%firstname1.lastname1
IF NOT %USERNAME%==firstname2.lastname2 SET  
Reviewers=%Reviewers%firstname2.lastname2
IF NOT %USERNAME%==firstname3.lastname3 SET  
Reviewers=%Reviewers%firstname3.lastname3

REM This is a list of all externals we check for in a review submission
IF EXIST ./external1   SET ProjectsToCheck=%ProjectsToCheck% external1
IF EXIST ./external2   SET ProjectsToCheck=%ProjectsToCheck% external2
IF EXIST ./external3   SET ProjectsToCheck=%ProjectsToCheck% external3

:needReviewNumber
SET /P ReviewNum="Review Board Review Number: (press enter for new): ":
IF %ReviewNum% == "" GOTO newReview

IF /i %ReviewNum% leq 0 GOTO needReviewNumber
IF /i %ReviewNum% geq 1 GOTO needReviewNumber

:existingReview
python ./reviewboard/post-review.py %ProjectsToCheck%  
--target-people=%Reviewers% -o -r
%ReviewNum%
GOTO END

:newReview
python ./reviewboard/post-review.py %ProjectsToCheck%  
--target-people=%Reviewers% -o
GOTO END

:END
echo Done!
REM Ghetto way to get a sleep in windows xp
ping 127.0.0.1 -n 4 >nul

--
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 660 in reviewboard: RFE: Eclipse plugin for ReviewBoard

2008-09-22 Thread codesite-noreply

Issue 660: RFE: Eclipse plugin for ReviewBoard
http://code.google.com/p/reviewboard/issues/detail?id=660

Comment #2 by [EMAIL PROTECTED]:
Why wait till next summer?  I'm interested enough to help here, but the  
first
challenge is to understand the API well enough to write it.  Is there any  
API
documentation at this point?  My first release goal would be to offer a  
view to
developers that would help them see incomplete reviews needing attention  
with an
ability to see when new comments have been added.  A large part of what I'm  
after is
to integrate with MyLyn so reviews show up in task lists just like other  
tasks do
from Bugzilla/Jira, ...  These would have a read/unread state just like  
other MyLyn
tasks so developers would see right away when something changed.

At some point, I'd love to be able to make it possible to post review  
requests right
from Eclipse (in combination with Subversive and other similar tools).





-- 
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 660 in reviewboard: RFE: Eclipse plugin for ReviewBoard

2008-09-19 Thread codesite-noreply

Issue 660: RFE: Eclipse plugin for ReviewBoard
http://code.google.com/p/reviewboard/issues/detail?id=660

Comment #1 by chipx86:
This is definitely something we want as well, though we won't have time to  
do it
here. I'm hoping if nobody else does it that next summer we can get a  
student from
Google's Summer of Code to work on one.


Issue attribute updates:
Labels: -Type-Defect Type-Enhancement Component-Integration

-- 
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 660 in reviewboard: RFE: Eclipse plugin for ReviewBoard

2008-09-19 Thread codesite-noreply

Issue 660: RFE: Eclipse plugin for ReviewBoard
http://code.google.com/p/reviewboard/issues/detail?id=660

New issue report by [EMAIL PROTECTED]:
It would really be helpful if I had a MyLyn extension that would interact
with ReviewBoard to help me know when I have reviews to do and help me get
through the review process more easily.  It would also help if I could
submit new reviews directly from Eclipse without having to leave the UI.

In my case, I'm a windows-based user, though I often use Linux as well.  In
either case, my browser preference is Firefox.



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
-~--~~~~--~~--~--~---