[Trac] Re: Team / Group email plugin

2008-05-20 Thread Didier Bretin

Hi,

On 5 mai, 07:35, Noah Kantrowitz [EMAIL PROTECTED] wrote:
  Is there a plugin which allows people (or a group?) to subscribe to
  any ticket marked with a specific component or tag, rather than having
  them add themselves manually to each ticket's CC?

 Check out the AnnouncerPlugin. It can do this I think.

I tried to install it, but I have an error about subscriptions table
which
doesn't exist. I checked the source but I can't find where this table
is created.

Did you succeded to install it ?

Regards.
--
Didier Bretin
http://bretin.net/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] setup a new report

2007-04-23 Thread Didier BRETIN

Hello,

I try to setup a new report to handle a field I added with 
[ticket-custom] in trac.ini.

Here is [ticket-custom]:
  [ticket-custom]
  temps = text
  temps.label = estimation
  realise = text
  realise.label = realise

and here is my report:
SELECT t.id AS ticket, summary, component, version, milestone, t.type AS 
type, severity,
 (CASE status WHEN 'assigned' THEN owner||' *' ELSE owner END) AS owner,
 time AS created,
 changetime AS _changetime, description AS _description,
 reporter AS _reporter,
 c.value AS estimation,
 p.value AS __color__
FROM ticket AS t, ticket_custom AS c, enum AS p
WHERE
 t.id = c.ticket
 AND c.name = 'temps'
 AND p.name = t.priority
 AND p.type = 'priority'
 AND  status IN ('new', 'assigned', 'reopened')
ORDER BY milestone, severity, time


As you can see, I would like to display the column estimation in the 
report. The report is working but only the tickets with the field 
estimation set are shown. I would like all the tickets: the ones with 
estimation set and the others.

How can I do this ?

Regards.
-- 
Didier BRETIN
http://www.bretin.net/


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



[Trac] How to setup macro tocmacro ?

2006-10-25 Thread Didier BRETIN

Hi,

I try to setup the macro tocmacro I have downloaded from here:
http://trac-hacks.org/wiki/TocMacro

I'm with Trac 0.9.6, so I installed in the wiki-macro directory all the 
files found in the directory 0.9 of the downloaded file.

I relaunched my apache and I have the error:
 Error: Failed to load processor TOC
 No macro named [[TOC]] found

Did I forgot something ?

Thanks for your help.

Regards.
-- 
Didier BRETIN
http://www.bretin.net/

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/trac-users
-~--~~~~--~~--~--~---



[Trac] Re: How to setup macro tocmacro ?

2006-10-25 Thread Didier BRETIN

Noah Kantrowitz a écrit :
 The TOC macro has been converted into a plugin, so follow the normal  
 plugin install guide.
 
 --Noah

Thanks Noah, it is the right way, you are right !

Just for information I followed the instructions of this page:
- http://trac.edgewall.org/wiki/TracPlugins

I installed setuptools with:
- python ez_setup.py

Then I unzip the tocmacro.zip file and go in the 0.9 directory. There I 
launched:
- python setup.py bdist_egg

And the file Toc-1.0-py2.3.egg was generated.

I put this file in the plugins directory of my trac environement and I 
relaunched my apache2.

And it works !!!

Regards.
-- 
Didier BRETIN
http://www.bretin.net/

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/trac-users
-~--~~~~--~~--~--~---