Re: Create a repository via API? Alternatives?

2010-03-03 Thread Christian Hammond
In the one you pasted before this, you were importing settings_local and passing that to setup_environ. You need to do: from django.conf import settings project_directory = setup_environ(settings) You never need to deal with settings_local yourself, and never should. Review Board wraps th

Re: Create a repository via API? Alternatives?

2010-03-03 Thread Stodge
Go figure; this seems to work: sys.path.append("/srv/reviews/test/conf") os.environ['DJANGO_SETTINGS_MODULE'] = 'settings_local' from django.contrib.auth.models import User users = User.objects.all() for user in users: print user.username On Mar 3, 1:17 pm, Stodge wrote: > Still can't

Re: Create a repository via API? Alternatives?

2010-03-03 Thread Stodge
Still can't get this to work: # load_rb_env.py import os, sys import reviewboard directory from site-packages # Append the main RB python directory. sys.path.append(reviewboard.__path__[0]) # Append the RB site directory. sys.path.append("/srv/reviews/test/conf") # Import the RB environment. o

Re: Create a repository via API? Alternatives?

2010-02-26 Thread Christian Hammond
The settings module should just be 'reviewboard.settings'. The 'settings_local' is imported from that. That could be the problem you were hitting. I would advise going this route. Down the road, I'd like to have better support for users to write Django management commands that live in the site di

Re: Create a repository via API? Alternatives?

2010-02-24 Thread Stodge
The old version is available here: http://trac-hacks.org/wiki/AdminToolkitScript The new version will be uploaded there once RB support is complete. However, the scripts assume they can take over the whole Centos server so I don't know how much use they will be for you. Also the scripts were writ

Re: Create a repository via API? Alternatives?

2010-02-24 Thread Stephen Gallagher
Would you be willing to share your db scripts? I'm looking to do much the same thing for our deployment. It would be nice to have someplace to start. On 02/24/2010 11:52 AM, Stodge wrote: > For now I'm just directly modifying the DB, though that's kind of > naughty! > > On Feb 24, 10:18 am, Stodge

Re: Create a repository via API? Alternatives?

2010-02-24 Thread Stodge
For now I'm just directly modifying the DB, though that's kind of naughty! On Feb 24, 10:18 am, Stodge wrote: > Is there a way to create a repository in review board using the API? I > can't see anything in the API docs. This is for a script I maintain > that administers our development server -