Re: [Python-Dev] Rights on the tracker

2011-02-14 Thread R. David Murray
On Mon, 14 Feb 2011 00:16:05 +0100, Antoine Pitrou solip...@pitrou.net wrote:
 On Sun, 13 Feb 2011 14:47:01 + Alexis Métaireau ale...@notmyidea.org 
 wrote:
  * Is it possible to automatically be in the noisy list for distutils2'
  bug reports ?
 
 Someone else with the right knowledge and power will have to do that.

Done.  I hope.  This is the first one we (currently) have where more
than one person is being auto-nosied, so I hope I got the syntax right.
Someone should test it.

This is separate from the meta-tracker issue Éric mentioned, it applies
only to issues where the distutils2 component is newly added.

(Antoine: FYI, the place this is edited is http://bugs.python.org/component,
and I don't know anything more than what is explained on that scree :).

--
R. David Murray  www.bitdance.com
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Rights on the tracker

2011-02-14 Thread Martin v. Löwis
 Done.  I hope.  This is the first one we (currently) have where more
 than one person is being auto-nosied, so I hope I got the syntax right.

It should be fine:

roundup_tracker= select * from component_add_as_nosy where nodeid = 25;
 linkid | nodeid
+
   7641 | 25
  12434 | 25
(2 Zeilen)

It might still be useful to test it, since actually evaluating the
property might also go wrong, but that should be fine as well:

for component in components:
users = db.component.get(component, 'add_as_nosy')
nosy |= set(users)

Regards,
Martin
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] Rights on the tracker

2011-02-13 Thread Alexis Métaireau
Hi python-devs,

I'm currently working on distutils2, and I'm trying to stop having
different informations in different places. This means using the
bugs.python.org bugtracker, instead of some weird TODO-lists in the
bitbucket wiki.

Two requests then:

* Is it possible to give me the rights to edit the reports for the
distutils2 component ?
* Is it possible to automatically be in the noisy list for distutils2'
bug reports ?

Tarek co-opts this.
My roundup username is alexis.

Thanks,
Alex
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Rights on the tracker

2011-02-13 Thread Terry Reedy

On 2/13/2011 9:47 AM, Alexis Métaireau wrote:


Tarek co-opts this.


Do you meant that Tarek supports or approves of this?
(Co-opt means something rather different in English.)

--
Terry Jan Reedy


___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Rights on the tracker

2011-02-13 Thread Alexis Métaireau
Le 13/02/2011 15:40, Terry Reedy a écrit :
 Do you meant that Tarek supports or approves of this?
 (Co-opt means something rather different in English.)
Sorry, I mean that Tarek approves that :-)
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Rights on the tracker

2011-02-13 Thread Éric Araujo
Hi,

I’ve wanted to move our TODO wiki page to the bug tracker for months,
thanks for doing it!  Auto-nosy is useful to catch new bugs; for
existing bugs, instead of adding yourself manually to each one and
trigger not-so-useful email, a tracker admin could add you
automatically.  I’ve asked on
http://psf.upfronthosting.co.za/roundup/meta/issue362

Regards
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Rights on the tracker

2011-02-13 Thread Alexis Métaireau
Le 13/02/2011 16:12, Éric Araujo a écrit :
 Hi,
 
 I’ve wanted to move our TODO wiki page to the bug tracker for months,
 thanks for doing it!  Auto-nosy is useful to catch new bugs; for
 existing bugs, instead of adding yourself manually to each one and
 trigger not-so-useful email, a tracker admin could add you
 automatically.  I’ve asked on
 http://psf.upfronthosting.co.za/roundup/meta/issue362

Great, thanks for that :)
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Rights on the tracker

2011-02-13 Thread Antoine Pitrou
On Sun, 13 Feb 2011 14:47:01 +
Alexis Métaireau ale...@notmyidea.org wrote:
 
 * Is it possible to give me the rights to edit the reports for the
 distutils2 component ?

Done. Actually, you have general developer rights, since there doesn't
seem to be a way (in the GUI) to restrict those to a specific component.

 * Is it possible to automatically be in the noisy list for distutils2'
 bug reports ?

Someone else with the right knowledge and power will have to do that.

Regards

Antoine.


___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Rights on the tracker

2011-02-13 Thread Alexis Métaireau
Le 13/02/2011 23:16, Antoine Pitrou a écrit :
 On Sun, 13 Feb 2011 14:47:01 +
 Alexis Métaireau ale...@notmyidea.org wrote:

 * Is it possible to give me the rights to edit the reports for the
 distutils2 component ?
 
 Done. Actually, you have general developer rights, since there doesn't
 seem to be a way (in the GUI) to restrict those to a specific component.

Thanks !

 Someone else with the right knowledge and power will have to do that.

Okay, there is an issue on the tracker's tracker, as Éric told.

Cheers,
Alex
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com