Questions tagged [roundup]

Roundup is a simple-to-use and -install issue-tracking system with command-line, web and e-mail interfaces.

Roundup is a simple-to-use and -install open source issue-tracking system with command-line, web and e-mail interfaces. It is based on the winning design from Ka-Ping Yee in the Software Carpentry “Track” design competition.

Roundup runs official bug tracker for Python - https://bugs.python.org/

Roundup has been deployed for:

  • bug tracking and TODO list management (the classic installation)
  • customer help desk support (with a wizard for the phone answerers, linking to networking, system and development issue trackers)
  • issue management for IETF working groups
  • sales lead tracking
  • conference paper submission and double-blind referee management
  • weblogging (well, almost :)

...and so on. It’s been designed with flexibility in mind - it’s not just another bug tracker. Roundup ships with a demo tracker to play with - after you’ve unpacked the source, just run “python demo.py” and load up the URL it prints out!

Roundup is written in Python and open source under MIT license. The icons & images ZOPE licensed (Apache-like).

7 questions
3
votes
1 answer

Central login for Django, MediaWiki and Roundup without compromising user data?

I am working on a central login system for an application that is written in Django, with a MediaWiki wiki and a Roundup bugtracker. At present, the method I am thinking of going with is to use the AuthDjango extension for Mediawiki…
pythonian4000
  • 103
  • 1
  • 5
3
votes
1 answer

Is there a Scrum plugin for the Roundup Issue Tracker?

Is there a Scrum plugin for the Roundup Issue Tracker similar to Agilo for Trac? I realize that Roundup is an issue tracking system, whereas Trac is designed to be an integrated project management, SCM, and issue tracker. Therefore, maybe a better…
Matthew Rankin
  • 457,139
  • 39
  • 126
  • 163
2
votes
1 answer

What would be a good regexp for identifying the "original message" prefix in gmail?

An example signature may be: On Tue, Mar 20, 2012 at 2:38 PM, Johnny Walker wrote: And then follows the quoted reply. I do have a discrete sensation this is locale specific though which makes me a sad programmer. The…
ubershmekel
  • 11,864
  • 10
  • 72
  • 89
2
votes
2 answers

Configuring Roundup with Apache

I think I just need a bit more guidance than what the documentation gives, and it's quite hard to find anything relating to Roundup and Apache specifically. All i'm trying to do currently is to have Apache display what the stand-alone server does…
Alex
  • 1,360
  • 2
  • 12
  • 18
2
votes
2 answers

Setup Roundup with WSGI and Apache

I was install Roundup 1.4 by Debian Squeeze official repo and want to run it with my Apache server using mod_wsgi. Host configuration: ServerName support.domain.com WSGIScriptAlias /…
kbec
  • 3,415
  • 3
  • 27
  • 42
0
votes
1 answer

Modifying SQL to use a different table in a select statement

I'm trying to change the date search behavior in my roundup install, but SQL is not my strong suit. Here is the existing query: select _issue.id,_issue._activity,(_issue._activity is not NULL), _priority3._order,(_priority3._order is not NULL)…
Ethan Furman
  • 63,992
  • 20
  • 159
  • 237
-2
votes
3 answers

SQL - Rounding up float values to the 2nd decimal place using the away-from-zero midpoint rule

I want to round up a number but CEILINGrounds to first integer. I also tried adding 0.005 but this rounds up the ones under 0.005. I want to round up if the 3rd decimal is 5 or higher... please try these numbers before posting your solution 5.085…
Umut K
  • 1,364
  • 12
  • 25