Greetings! I'm not sure where the best place is to ask this question, so I'll start here -- feel free to redirect me if necessary. I would like to have some software to keep track of bugs, to-do's, ideas, etc., etc. -- you know, an issue tracker! Naturally I thought of the one we use to track Python. Is it available? Is it written in Python? Are there any others that are recommended? Thanks! ~Ethan~
On Mon, Mar 28, 2011 at 15:05, Ethan Furman <ethan@stoneleaf.us> wrote:
Greetings!
I'm not sure where the best place is to ask this question, so I'll start here -- feel free to redirect me if necessary.
I would like to have some software to keep track of bugs, to-do's, ideas, etc., etc. -- you know, an issue tracker! Naturally I thought of the one we use to track Python. Is it available? Is it written in Python? Are there any others that are recommended?
Thanks!
~Ethan~
bugs.python.org uses http://pypi.python.org/pypi/roundup, which is written in Python.
On Mon, 28 Mar 2011 15:14:20 -0500 Brian Curtin <brian.curtin@gmail.com> wrote:
On Mon, Mar 28, 2011 at 15:05, Ethan Furman <ethan@stoneleaf.us> wrote:
Greetings!
I'm not sure where the best place is to ask this question, so I'll start here -- feel free to redirect me if necessary.
I would like to have some software to keep track of bugs, to-do's, ideas, etc., etc. -- you know, an issue tracker! Naturally I thought of the one we use to track Python. Is it available? Is it written in Python? Are there any others that are recommended?
Thanks!
~Ethan~
bugs.python.org uses http://pypi.python.org/pypi/roundup, which is written in Python.
Well, don't take bugs.python.org as an example, though, since AFAIK it is heavily modified. http://mercurial.selenic.com/bts/ and http://psf.upfronthosting.co.za/roundup/meta/ look more like vanilla installs. Otherwise there's also Trac. Regards Antoine.
Antoine Pitrou wrote:
On Mon, 28 Mar 2011 15:14:20 -0500 Brian Curtin <brian.curtin@gmail.com> wrote:
On Mon, Mar 28, 2011 at 15:05, Ethan Furman <ethan@stoneleaf.us> wrote:
I would like to have some software to keep track of bugs, to-do's, ideas, etc., etc. -- you know, an issue tracker! Naturally I thought of the one we use to track Python. Is it available? Is it written in Python? Are there any others that are recommended?
bugs.python.org uses http://pypi.python.org/pypi/roundup, which is written in Python.
Well, don't take bugs.python.org as an example, though, since AFAIK it is heavily modified. http://mercurial.selenic.com/bts/ and http://psf.upfronthosting.co.za/roundup/meta/ look more like vanilla installs.
Otherwise there's also Trac.
Thanks, Antoine! I'll keep that in mind. ~Ethan~
On Mon, 28 Mar 2011 22:31:12 +0200, Antoine Pitrou <solipsis@pitrou.net> wrote:
On Mon, 28 Mar 2011 15:14:20 -0500 Brian Curtin <brian.curtin@gmail.com> wrote:
On Mon, Mar 28, 2011 at 15:05, Ethan Furman <ethan@stoneleaf.us> wrote:
I would like to have some software to keep track of bugs, to-do's, ideas, etc., etc. -- you know, an issue tracker! Naturally I thought of the one we use to track Python. Is it available? Is it written in Python? Are there any others that are recommended?
bugs.python.org uses http://pypi.python.org/pypi/roundup, which is written in Python.
Well, don't take bugs.python.org as an example, though, since AFAIK it is heavily modified. http://mercurial.selenic.com/bts/ and http://psf.upfronthosting.co.za/roundup/meta/ look more like vanilla installs.
Roundup is wonderfully customizable. It's not hard to do, either, (though of course there is a learning curve). I built an issue tracker for my business with per-customer queues, consultant logins, and time tracking in about two days of work starting from vanilla roundup. The hardest part is debugging the TAL when you make a mistake, but even that isn't a whole lot worse than any other templating language. -- R. David Murray http://www.bitdance.com
On Tue, Mar 29, 2011 at 4:37 AM, R. David Murray <rdmurray@bitdance.com> wrote:
The hardest part is debugging the TAL when you make a mistake, but even that isn't a whole lot worse than any other templating language.
How much in % is it worse than Django templating language? -- anatoly t.
On 30.04.2011 16:53, anatoly techtonik wrote:
On Tue, Mar 29, 2011 at 4:37 AM, R. David Murray <rdmurray@bitdance.com> wrote:
The hardest part is debugging the TAL when you make a mistake, but even that isn't a whole lot worse than any other templating language.
How much in % is it worse than Django templating language?
I'm just guessing here, but I'd say 47.256 %. Georg
On Sun, May 1, 2011 at 7:31 PM, Georg Brandl <g.brandl@gmx.net> wrote:
On 30.04.2011 16:53, anatoly techtonik wrote:
On Tue, Mar 29, 2011 at 4:37 AM, R. David Murray <rdmurray@bitdance.com> wrote:
The hardest part is debugging the TAL when you make a mistake, but even that isn't a whole lot worse than any other templating language.
How much in % is it worse than Django templating language?
I'm just guessing here, but I'd say 47.256 %.
That means switching to Django templates will make Roundup design plumbing work 47.256% more attractive for potential contributors. -- anatoly t.
2011/5/2 anatoly techtonik <techtonik@gmail.com>:
On Sun, May 1, 2011 at 7:31 PM, Georg Brandl <g.brandl@gmx.net> wrote:
On 30.04.2011 16:53, anatoly techtonik wrote:
On Tue, Mar 29, 2011 at 4:37 AM, R. David Murray <rdmurray@bitdance.com> wrote:
The hardest part is debugging the TAL when you make a mistake, but even that isn't a whole lot worse than any other templating language.
How much in % is it worse than Django templating language?
I'm just guessing here, but I'd say 47.256 %.
That means switching to Django templates will make Roundup design plumbing work 47.256% more attractive for potential contributors.
Perhaps some of those eager contributors would like to volunteer for the task. -- Regards, Benjamin
On Mon, May 2, 2011 at 11:06, anatoly techtonik <techtonik@gmail.com> wrote:
On Sun, May 1, 2011 at 7:31 PM, Georg Brandl <g.brandl@gmx.net> wrote:
On 30.04.2011 16:53, anatoly techtonik wrote:
On Tue, Mar 29, 2011 at 4:37 AM, R. David Murray <rdmurray@bitdance.com> wrote:
The hardest part is debugging the TAL when you make a mistake, but even that isn't a whole lot worse than any other templating language.
How much in % is it worse than Django templating language?
I'm just guessing here, but I'd say 47.256 %.
That means switching to Django templates will make Roundup design plumbing work 47.256% more attractive for potential contributors.
What if these "potential contributors" never surface? Then we've made a 47.256% change in attractiveness, which is a 1423.843% waste of time.
On 02.05.2011 18:06, anatoly techtonik wrote:
On Sun, May 1, 2011 at 7:31 PM, Georg Brandl <g.brandl@gmx.net> wrote:
On 30.04.2011 16:53, anatoly techtonik wrote:
On Tue, Mar 29, 2011 at 4:37 AM, R. David Murray <rdmurray@bitdance.com> wrote:
The hardest part is debugging the TAL when you make a mistake, but even that isn't a whole lot worse than any other templating language.
How much in % is it worse than Django templating language?
I'm just guessing here, but I'd say 47.256 %.
That means switching to Django templates will make Roundup design plumbing work 47.256% more attractive for potential contributors.
That's not true actually. It'll be 89.595 % more attractive. Georg
2011/5/2 Georg Brandl <g.brandl@gmx.net>:
On 02.05.2011 18:06, anatoly techtonik wrote:
On Sun, May 1, 2011 at 7:31 PM, Georg Brandl <g.brandl@gmx.net> wrote:
On 30.04.2011 16:53, anatoly techtonik wrote:
On Tue, Mar 29, 2011 at 4:37 AM, R. David Murray <rdmurray@bitdance.com> wrote:
The hardest part is debugging the TAL when you make a mistake, but even that isn't a whole lot worse than any other templating language.
How much in % is it worse than Django templating language?
I'm just guessing here, but I'd say 47.256 %.
That means switching to Django templates will make Roundup design plumbing work 47.256% more attractive for potential contributors.
That's not true actually.
It'll be 89.595 % more attractive.
I don't understand why you're truncating to 3 digits. Let's be honest in that it will be sqrt(2)^(13e/2) % more attractive. -- Regards, Benjamin
2011/4/30 anatoly techtonik <techtonik@gmail.com>:
On Tue, Mar 29, 2011 at 4:37 AM, R. David Murray <rdmurray@bitdance.com> wrote:
The hardest part is debugging the TAL when you make a mistake, but even that isn't a whole lot worse than any other templating language.
How much in % is it worse than Django templating language? -- anatoly t. _______________________________________________ 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/g.rodola%40gmail.com
Knowing both of them I can say ZPT is one of the few things I like about Zope and I find it a lot more powerful than Django templating system. Other than that, I don't see how changing the templating language can make any difference. If one does not contribute something because of the language used in templates... well, I think it wouldn't have been a particular good contribution anyway. =) --- Giampaolo http://code.google.com/p/pyftpdlib/ http://code.google.com/p/psutil/
Brian Curtin wrote:
On Mon, Mar 28, 2011 at 15:05, Ethan Furman <ethan@stoneleaf.us <mailto:ethan@stoneleaf.us>> wrote:
Greetings!
I'm not sure where the best place is to ask this question, so I'll start here -- feel free to redirect me if necessary.
I would like to have some software to keep track of bugs, to-do's, ideas, etc., etc. -- you know, an issue tracker! Naturally I thought of the one we use to track Python. Is it available? Is it written in Python? Are there any others that are recommended?
Thanks!
~Ethan~
bugs.python.org <http://bugs.python.org> uses http://pypi.python.org/pypi/roundup, which is written in Python.
Thank you! That explains a lot. (I kept wondering about the occasional roundup comment I would see in threads, but hadn't put it together.) ~Ethan~
Okay, I finally found a little time and got roundup installed and operating. Only major complaint at this point is that the issue messages are presented in top-post format (argh). Does anyone know off the top of one's head what to change to put roundup in bottom-post (chronological) format? TIA! ~Ethan~
On 26/04/2011 22.32, Ethan Furman wrote:
Okay, I finally found a little time and got roundup installed and operating.
Only major complaint at this point is that the issue messages are presented in top-post format (argh).
Does anyone know off the top of one's head what to change to put roundup in bottom-post (chronological) format?
TIA!
~Ethan~
See line 309 of http://svn.python.org/view/tracker/instances/python-dev/html/issue.item.html... If you have other questions about Roundup see https://lists.sourceforge.net/lists/listinfo/roundup-users Best Regards, Ezio Melotti
Ezio Melotti wrote:
On 26/04/2011 22.32, Ethan Furman wrote:
Okay, I finally found a little time and got roundup installed and operating.
Only major complaint at this point is that the issue messages are presented in top-post format (argh).
Does anyone know off the top of one's head what to change to put roundup in bottom-post (chronological) format?
TIA!
~Ethan~
See line 309 of http://svn.python.org/view/tracker/instances/python-dev/html/issue.item.html...
If you have other questions about Roundup see https://lists.sourceforge.net/lists/listinfo/roundup-users
Thanks so much! That was just what I needed. ~Ethan~
participants (9)
-
anatoly techtonik
-
Antoine Pitrou
-
Benjamin Peterson
-
Brian Curtin
-
Ethan Furman
-
Ezio Melotti
-
Georg Brandl
-
Giampaolo Rodolà
-
R. David Murray