[Trac] Skinning Trac and htdocs

2010-11-08 Thread jwir3
Hello Everyone: I have a trac setup with multiple projects. As part of this, I would like to have each of these sites have a different theme (mostly because they are completely separate projects). I actually have two questions: 1) Is there a good site that I can go to that will give me a good

[Trac] Migrating SQLite to PostgreSQL in Windows

2010-11-08 Thread janiv
Hi, I've trac 0.11.7 version installed on a Windows Server machine. I also have the Agilo web application. I want to migrate from SQLite to PostgreSQL. Where can I find step by step guide on how to do it? Thanks, Janiv Ratson. -- You received this message because you are subscribed to the

[Trac] Making a report (or query) with nested groups

2010-11-08 Thread J.J. Montgomery
I've done a lot of searching on this, but haven't been able to find out exactly how to display more than one level of groups in a report in Trac 0.12. For example, I have this report: SELECT p.value AS __color__, 'Milestone '||milestone AS __group__, id AS ticket, summary, component,

[Trac] Trac (almost) hangs

2010-11-08 Thread Torsten Bronger
Hallöchen! Our trac installation on Ubuntu 10.04 server is extremely slow. Every request (no matter whether POST or GET, ticket/roadmap/search/etc) takes approx. 200 seconds. After the first very slow response, trac becomes fast, but if you stop browsing for a while, the next request is slow

[Trac] Individual browser view for each user

2010-11-08 Thread eugene
Hi! Is there any way to have a separate individual source tree view in Browse Source page for each authenticated user? Let me explain why I need this: I have a single SVN repo which holds a number of projects and a bunch of users having different levels of access to these projects, all this neatly

Re: [Trac] Data-based graphics in Trac

2010-11-08 Thread Olemis Lang
Hi, Chris ! On Sat, Nov 6, 2010 at 7:57 AM, Chris Nelson chris.nel...@sixnet.com wrote: I want to create some new graphics based on information in the Trac database.  My current thought is a macro that takes some arguments to control a query, gets the data, and emits SVG.  Some Googling

Re: [Trac] Data-based graphics in Trac

2010-11-08 Thread Ethan Jucovy
On Mon, Nov 8, 2010 at 8:36 AM, Olemis Lang ole...@gmail.com wrote: In any case you should be able to use SVG, matplotlib, GraphViz ... but you could also dump the data directly to the browser and render it using HTML5 canvas (AFAICR this is the way Hg draws the revision graph). One awesome

RE: [Trac] Data-based graphics in Trac

2010-11-08 Thread Chris Nelson
Ethan Jucovy wrote: ... I've been using Raphael and its graphing extension g.raphael in a (non-Trac) project recently, for visualizing datasets from a simulation game and interactively exploring the data relationships. I've been pretty happy using Raphael for this .. but if you're going to

Re: [Trac] Skinning Trac and htdocs

2010-11-08 Thread Olemis Lang
On Sat, Nov 6, 2010 at 12:59 PM, jwir3 jayw...@gmail.com wrote: Hello Everyone: :o) I have a trac setup with multiple projects.  As part of this, I would like to have each of these sites have a different theme (mostly because they are completely separate projects).  I actually have two

Re: [Trac] Data-based graphics in Trac

2010-11-08 Thread Olemis Lang
On Mon, Nov 8, 2010 at 9:07 AM, Ethan Jucovy ethan.juc...@gmail.com wrote: On Mon, Nov 8, 2010 at 8:36 AM, Olemis Lang ole...@gmail.com wrote: In any case you should be able to use SVG, matplotlib, GraphViz ... but you could also dump the data directly to the browser and render it using HTML5

[Trac] Using SVG in wiki-formatted text

2010-11-08 Thread Chris Nelson
If I do: {{{ #!html a href=http://www.google.comGoogle/a }}} I get the expected result but if I try to adapt http://www.w3schools.com/svg/tryit.asp?filename=rect1type=svg as: {{{ #!html svg width=100% height=100% version=1.1 xmlns=http://www.w3.org/2000/svg; rect width=300 height=100

Re: [Trac] Using SVG in wiki-formatted text

2010-11-08 Thread Emmanuel Blot
But I don't see how to put those header fields in wiki text.  Any thoughts? For the Revtree plugin - which generates SVG, I use a different page template. If you want to embed SVG within a standard Trac page, I guess the only solution is to use an object tag, or you'll break the XHTML grammar.

Re: [Trac] Using SVG in wiki-formatted text

2010-11-08 Thread Olemis Lang
On Mon, Nov 8, 2010 at 9:35 AM, Chris Nelson chris.nel...@sixnet.com wrote: If I do: {{{ #!html a href=http://www.google.comGoogle/a }}} I get the expected result but if I try to adapt http://www.w3schools.com/svg/tryit.asp?filename=rect1type=svg as: {{{ #!html svg width=100%

[Trac] Making a report (or query) with nested groups

2010-11-08 Thread J.J. Montgomery
I've done a lot of searching on this, but haven't been able to find out exactly how to display more than one level of groups in a report in Trac 0.12. For example, I have this report: SELECT p.value AS __color__, 'Milestone '||milestone AS __group__, id AS ticket, summary, component,

Re: [Trac] Individual browser view for each user

2010-11-08 Thread Remy Blank
eugene wrote: From Trac point of view only superadmin can browse the source tree, all other users don't even have Browse Source button on the main page. Trac log shows that users are rejected to browse because they have no access to the root directory. What Trac version are you using? I have

Re: [Trac] Using SVG in wiki-formatted text

2010-11-08 Thread Remy Blank
Chris Nelson wrote: Nothing shows up. Trac uses the text/html MIME type for its rendered pages. To display embedded SVG, you need the application/xhtml+xml or application/xml MIME type. Unfortunately, this isn't easy to change, as Genshi has different behavior if the MIME type changes. So your

Re: [Trac] Using SVG in wiki-formatted text

2010-11-08 Thread Emmanuel Blot
So your best bet, as mentioned by Emmanuel, is to use an object tag referencing e.g. an attachment. Note that this becomes a nightmare when you want to add Javascript to control/interact with the SVG elements. Remy, any thought about dropping XHTML for HTML5? Could Genshi handle SVG? Cheers,

Re: [Trac] Using SVG in wiki-formatted text

2010-11-08 Thread Remy Blank
Emmanuel Blot wrote: Remy, any thought about dropping XHTML for HTML5? I don't know. Can HTML5 be represented as well-formed XML? If that's the case, I suppose it would only require a bit of tweaking in Genshi (see below) and changing our DOCTYPE declarations. Could Genshi handle SVG? Genshi

Re: [Trac] Using SVG in wiki-formatted text

2010-11-08 Thread Ethan Jucovy
On Mon, Nov 8, 2010 at 9:44 AM, Emmanuel Blot manu.b...@gmail.com wrote: But I don't see how to put those header fields in wiki text. Any thoughts? For the Revtree plugin - which generates SVG, I use a different page template. If you want to embed SVG within a standard Trac page, I guess

Re: [Trac] Trac (almost) hangs

2010-11-08 Thread Matthew Caron
On 11/08/2010 03:48 AM, Torsten Bronger wrote: Any idea why this is? I believe it is because you aren't starting enough servers/keeping enough spare servers My out of the box Ubuntu 10.04 server setup is: IfModule mpm_prefork_module StartServers 5 MinSpareServers 5

Re: [Trac] Trac (almost) hangs

2010-11-08 Thread Torsten Bronger
Hallöchen! Matthew Caron writes: On 11/08/2010 03:48 AM, Torsten Bronger wrote: Any idea why this is? I believe it is because you aren't starting enough servers/keeping enough spare servers I don't believe that it could take 200 seconds (did you perhaps read milliseconds?) to launch

RE: [Trac] Making a report (or query) with nested groups

2010-11-08 Thread Cooke, Mark
-Original Message- From: trac-users@googlegroups.com [mailto:trac-us...@googlegroups.com] On Behalf Of J.J. Montgomery Sent: 08 November 2010 17:30 To: trac-users@googlegroups.com Subject: [Trac] Making a report (or query) with nested groups I've done a lot of searching on this,