Re: [Trac] Who owns/maintains ticket_clone?

2010-10-25 Thread Roger Oberholtzer
On Mon, 2010-10-25 at 15:03 -0400, Chris Nelson wrote:
> I've done some work on the ticket clone plugin that I'd like to contribute 
> back but I'm not sure who to talk to.  The plugin was created by "cboos" but 
> I don't see any way at Trac-Hacks to contract whoever that may be.

Christian Boos 

-- 
Roger Oberholtzer

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-us...@googlegroups.com.
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en.



[Trac] Who owns/maintains ticket_clone?

2010-10-25 Thread Chris Nelson
I've done some work on the ticket clone plugin that I'd like to contribute back 
but I'm not sure who to talk to.  The plugin was created by "cboos" but I don't 
see any way at Trac-Hacks to contract whoever that may be.

  Chris
-- 
Christopher Nelson, Software Engineering Manager
SIXNET - Solutions for Your Industrial Networking Challenges
331 Ushers Road, Ballston Lake, NY  12019
Tel: +1.518.877.5173, Fax: +1.518.877.8346 www.sixnet.com 

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-us...@googlegroups.com.
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en.



Re: [Trac] PostgreSQL - a straw poll

2010-10-25 Thread Matthew Caron

On 10/20/2010 12:57 AM, Andy Baker wrote:

Hi All,

I'm looking into switching from sqlite to postgreSQL as our backend. I'm
assuming this shouldn't be an issue, but does anyone have any good/bad
experiences to share?


I recently did a similar migration, using Postgres 0.11.6. The core Trac 
code went over fine, but our custom queries all needed to be ported 
(there were a lot of SQLite-ism's, specifically as related to datetime 
type functions). Further, many of our plugins needed to be updated, as 
there were subtle variations in the SQL (quotes around arguments being 
different, etc.).


In all, I like PostgreSQL less than SQLite. It reminds me of my brief 
brush with Oracle - a lot of the meta-syntax is obscure, it's annoyingly 
picky about stupid things such as how to quote strings, and it just 
feels slightly wrong. That said, it does work, and we noticed a complete 
evaporation of our issues relating to people fighting over the database. 
SQLite and MySQL are much less annoying to work with... I mean, until 
MySQL corrupts its tables because MyISAM is still the default on most 
package installs (I'm looking at you, Ubuntu 10.04).

--
Matthew Caron
Build Engineer
Sixnet | www.sixnet.com
O +1 518 877 5173 Ext. 138
F +1 518 602 9209
matt.ca...@sixnet.com

--
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-us...@googlegroups.com.
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en.



[Trac] Re: Static ressources not found in deploy/htdocs/site/

2010-10-25 Thread Xarkam Ubuntu
Hi found a solution:
Look this trac.sandbox.conf apache file:

Alias /trac/chrome/common /var/tracprojects/sandbox/deploy/htdocs/common
Alias /trac/chrome/site /var/tracprojects/sandbox/deploy/htdocs

  Order allow,deny
  Allow from all


*AliasMatch ^/(.+)/chrome/common(.*)
/var/tracprojects/sandbox/deploy/htdocs/common$2
AliasMatch ^/(.+)/chrome/site(.*)
/var/tracprojects/sandbox/deploy/htdocs/site$2
*
WSGIScriptAlias /sandbox /var/tracprojects/sandbox/deploy/cgi-bin/trac.wsgi


 WSGIApplicationGroup %{GLOBAL}
 Order deny,allow
 Allow from all



 AuthType Basic
 AuthName "Trac"
 AuthUserFile /var/tracprojects/.htpasswd
 Require valid-user


this AliasMatch offer the ability to use static ressources correctly.

2010/10/24 Xarkam Ubuntu 

> Hi, y make a deploy of static ressources on my Trac.
>
> This is my tree for statics ressources:
> /home/trac/OSAMES/deploy/htdocs
>
> There is my apache configuration file:
>
> #
>> #RewriteEngine On
>> #RewriteLog "/var/log/apache2/rewrite.log"
>> #RewriteLogLevel 9
>>
>> # Don't let DirectoryIndex mess with Trac installed in the root
>> #RewriteCond %{REQUEST_URI} ^/$
>> #RewriteRule . /osames [QSA,PT,L]
>>
>> # Don't let Trac handle existing directories, files or aliases
>> #RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d
>> #RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f
>> #RewriteCond %{REQUEST_URI} !^/(awstats|cgi-bin/)
>> # prepend /osames to URI and append Query String, Pass-Through to xxxAlias
>> directives, Last rule.
>> #RewriteRule ^(.*)$ /osames$1 [QSA,PT,L]
>> #
>>
>> #Alias /trac/chrome/common /usr/lib/python2.6/dist-packages/trac/htdocs/
>> #
>> #  Order allow,deny
>> #  Allow from all
>> #
>>
>> Alias /trac/chrome/common /home/trac/OSAMES/deploy/htdocs/common
>
> *Alias /trac/chrome/site /home/trac/OSAMES/deploy/htdocs/site*
>> **
>>   Order allow,deny
>>   Allow from all
>>   
>> ExpiresActive On
>> ExpiresDefault "access plus 1 month"
>>   
>> 
>>
>> 
>>   AddOutputFilterByType DEFLATE text/html text/css text/js
>> application/x-javascript text/plain text/xml
>> 
>>
>> WSGIScriptAlias /osames   /home/trac/OSAMES/deploy/cgi-bin/trac.wsgi
>> ## This is required if you plan to use HTTP authorization. Without it the
>> ## user name won't be passed
>> # WSGIPassAuthorization On
>>
>> 
>> WSGIApplicationGroup %{GLOBAL}
>> Order deny,allow
>> Allow from all
>> 
>>
>> 
>> AuthName "Trac"
>> AuthType Basic
>> AuthUserFile /home/trac/OSAMES/.htpasswd
>> require valid-user
>> 
>>
>> 
>>
>
> My problem is in the site/ definition. the files in this directory is not
> found by Trac.
> Ex.:  on home page not
> found the logo in /home/trac/OSAMES/deploy/htdocs/site
>
> Where is my error ?
>

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-us...@googlegroups.com.
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en.