RE: Love Dont Cost a Thing clip

2010-01-19 Thread Bickford, Mark
If so, can the same moderation rule be applied to reviewboard-dev?  All
I see there is spam.

 



From: reviewboard@googlegroups.com [mailto:reviewbo...@googlegroups.com]
On Behalf Of Jeff Andros
Sent: Monday, January 18, 2010 12:06 PM
To: reviewboard@googlegroups.com
Subject: Re: Love Dont Cost a Thing clip

 

I thought these were moderated now?

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

Re: post-review failing to work on CVS because I have cleartool with a view set

2010-01-19 Thread Chris Clark

Christian Hammond wrote:
What you could do now is modify postreview.py so that the CVSClient 
instance is created before the ClearCaseClient. That would guarantee 
that CVS would check first.


An easy technique for dealing with this is to add another definition for 
SCMCLIENTS, this way if the SCMCLIENTS is ever changed upstream it is 
still possible to automatically merge your diffs without a manual 
conflict resolution, e.g.immediate after SCMCLIENTS:




SCMCLIENTS = (
   SVNClient(),
   CVSClient(),
   GitClient(),
   MercurialClient(),
   PerforceClient(),
   ClearCaseClient(),
)



### re-define SCMCLIENTS, this makes merging changes easier (than 
customizing SCMCLIENTS) :-)

SCMCLIENTS = (
   SVNClient(),
   PiccoloClient(),
)


Sort of brute force but it works :-)

Chris

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


Problem with the latest RB

2010-01-19 Thread Infamy
I get the following error with the latest RB from GIT.

--
AttributeError at /dashboard/

'ReviewRequest' object has no attribute 'draft_summary'

Request Method: GET
Request URL:http://172.16.86.110:8080/dashboard/
Exception Type: AttributeError
Exception Value:

'ReviewRequest' object has no attribute 'draft_summary'

Exception Location: /home/aharvey/Code/reviewboard-brk/reviewboard/
reviews/datagrids.py in render_data, line 230


I'm running it using the devserver.sh, and have tried to update my
database using ./manage.py evolve -x, but get told there is no
evolution needed. Well from the error I'm almost a 100% sure there is
a evolution needed!

Anyone having similar problems? Or have a solution?

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

Re: post-review failing to work on CVS because I have cleartool with a view set

2010-01-19 Thread Chris Clark

David McCloskey wrote:

But Another problem is appearing now.  Once it tries to do the post, I
get an error that the connection was refused on port 2401.  I'm
guessing this is because we're using ssh tunnels only to connect to
our CVS servers.  Is there some special way to configure my repository
through the web interface to make it work through the ssh tunnel? Or
to configure my environment somehow?  I don't know very much about CVS
unfortunately.  I'm doing this to help a colleague.
  


I'm not a CVS user either. However you may find you need the latest RB 
as ssh implies authentication, authentication isn't support with RB 1.0.


If you have the new version the config for auth should be obvious in the 
web admin - again should be I'm not using either CVS or any auth 
options for the SCM with ReviewBoard.


Chris

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