Re: [Trac] how can all tickets be deleted at once?

2012-06-27 Thread christoph müller
yeap, it worked! i thought on foreign key constraints and was a bit afraid of just deleting the records. but it works proper. the result can be seen under test environment http://ec2-54-247-30-133.eu-west-1.compute.amazonaws.com/newproject/report/10 thanks a lot. -- You received this message b

Re: [Trac] Re: Even though path is correct, I get an error "bash: git-receive-pack: command not found."

2012-06-27 Thread mbs400
> > I tried to pust to the remote repository >> > Should be : I tried to PUSH to the remote repository > > >> -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/trac-users/-

Re: [Trac] Re: Even though path is correct, I get an error "bash: git-receive-pack: command not found."

2012-06-27 Thread mbs400
> > I described the whole process how I got this working without the errors >> when I tried to pust to the remote repository, in the hopes it might help >> someone else. I could have been here till the cows came in, if it hadn't >> been for matthew Caron and his constant help. > > >> >> At the

[Trac] Re: how can all tickets be deleted at once?

2012-06-27 Thread Reinhard Wobst
Another method is using the xmlrpc plugin: import xmlrpclib proxyURL = ... p = xmlrpclib.ServerProxy(proxyURL) all_ids = p.ticket.query('id != 0') p.ticket.delete(all_ids) This code is not tested but I used similar snippets extensivley, no problems ... Greetings Reinhard P.S.: The xmlrpc plu

Re: [Trac] Re: Do people use mod_python or mod_wsgi these days, on Windows with Apache?

2012-06-27 Thread victoria
Hi > It would be nice if the next drop of the Bitnami trac stack included not > only Python 2.7 (instead of 2.6 which it is currently) but also had an > Apache 2.4 version. We configure Trac to work with Apache and mod_wsgi and currently there is not a mod_wsgi version for Windows for Apache 2.4

Re: [Trac] Re: troubleshooting tips for TracMercurial: Lost in the cracks.

2012-06-27 Thread victoria
On Tue, Jun 26, 2012 at 4:34 PM, Warren Postma wrote: > I replied to the group with a new subject. Sorry I should have replied to > this thread. > > My setup is: > > > Windows Server 2008 R2, > Bitnami Trac Stack (all 32 bit) with Apache 2.2, Python 2.6 > Mercurial binaries from  http://mercurial.

Re: [Trac] Re: Even though path is correct, I get an error "bash: git-receive-pack: command not found."

2012-06-27 Thread Matthew Caron
On 06/26/2012 09:44 PM, mbs400 wrote: Matthew, I ran these on the server as you suggested $ cd /usr/local/bin $ sudo ln -s /usr/local/git/bin/* . but the error is still there. It's possible that /usr/local/bin is not in the noninteractive login path. -- Matthew Caron, Build Engineer Sixnet,

Re: [Trac] Installing TracMercurial and its dependencies (such as Mercurial itself) into an all-32-bit bitnami trac stack on Windows 2008R2 64 bit.

2012-06-27 Thread victoria
Hi On Tue, Jun 26, 2012 at 4:31 PM, Warren Postma wrote: > I have Trac up and working, and the subversion integration that comes in the > Bitnami Trac Stack is working fine.  Apache 2.2 and its http-auth features > are working fine.  So far so good. It gets painful when I try to get > TracMercuri

RE: [Trac] Migrating Trac?: From 0.11.4 to 12.2, from Ubuntu 10.4 to 12.04, from python2.6 to python2.7

2012-06-27 Thread Voelker, Bernhard
Cooke, Mark wrote (Wednesday, June 27, 2012 12:00 PM): > > I did the transition from 0.11.4 to 0.12.2 a while ago. > > The old system was a Solaris box and the new one a SLES-10.3. > > No problems so far. Just copied the ENV to the new machine, > > ran "trac-admin upgrade" and that's it. > > Are y

Re: [Trac] how can all tickets be deleted at once?

2012-06-27 Thread Bas van der Vlies
On 06/27/2012 09:24 AM, christoph müller wrote: > this process is not for the usual bugtracking. but... > > I'm testing trac for its ability to help in the process of building a > classification system for information management (records > management). > > trac could be an exciting tool. I like

Re: [Trac] how can all tickets be deleted at once?

2012-06-27 Thread Hugo Milhomens
Can you directly access the database? If so, there are 3 tables that store ticket information. ticket, ticket_history and i guess ticket_custom for the custom fields. Just try a : Delete from ticket; Delete from ticket_history; Delete from ticket_custom; On Jun 27, 2012 7:16 AM, "christoph müller"

[Trac] how can all tickets be deleted at once?

2012-06-27 Thread christoph müller
this process is not for the usual bugtracking. but... I'm testing trac for its ability to help in the process of building a classification system for information management (records management). trac could be an exciting tool. I like it especially the possibility to create sql queries. with

RE: [Trac] Migrating Trac?: From 0.11.4 to 12.2, from Ubuntu 10.4 to 12.04, from python2.6 to python2.7

2012-06-27 Thread Cooke, Mark
> -Original Message- > From: trac-users@googlegroups.com On Behalf Of Voelker, Bernhard > Sent: 27 June 2012 08:05 > To: trac-users@googlegroups.com > Subject: RE: [Trac] Migrating Trac?: From 0.11.4 to 12.2, > from Ubuntu 10.4 to 12.04, from python2.6 to python2.7 > > cburn wrote (Wednes

RE: [Trac] Migrating Trac?: From 0.11.4 to 12.2, from Ubuntu 10.4 to 12.04, from python2.6 to python2.7

2012-06-27 Thread Voelker, Bernhard
cburn wrote (Wednesday, June 27, 2012 1:00 AM): > Greetings, > > If anyone has docs how to migrate a Trac environment from one > server to another under the following conditions, I'd much > appreciate it: > > From Old server (Ubuntu 10.04) to new server (Ubuntu 12.04) > From Trac 0.11.4 to 12.2 > F