# the location of the roundup library ROUNDUP_LIB = "/usr/lib/python2.4/site-packages" # the location of the instance on the filesystem ROUNDUP_INSTANCE = "/opt/roundup/trackers/schooltool" # mapping roundup issue priority to malone bug importance # ROUNDUP MALONE PRIORITY_MAP = {'wish' : 'WISHLIST', 'feature' : 'WISHLIST', 'important': 'HIGH', 'critical' : 'CRITICAL', 'bug' : 'MEDIUM', 'minor' : 'LOW', 'not-a-bug': 'UNDECIDED' } DEFAULT_PRIORITY = 'MEDIUM' # mapping roundup issue status to malone bug status # ROUNDUP MALONE STATUS_MAP = {'resolved' : 'FIXCOMMITTED', 'verify-fix': 'INPROGRESS', 'chatting' : 'INPROGRESS', 'in-progress': 'INPROGRESS', 'need-merge': 'INPROGRESS', 'done-cbb' : 'FIXCOMMITTED', 'deferred' : 'NEEDSINFO', 'cannot-reproduce': 'NEEDSINFO', 'unread' : 'UNCONFIRMED' } DEFAULT_STATUS = 'UNCONFIRMED' # Default location of the Malone attachments DEFAULT_ATTACHMENT_LOCATION = 'http://launchpad.net/products/schooltool' # Default type of the attachments DEFAULT_ATTACHMENT_TYPE = 'PATCH' # Indent in XML output XML_INDENT="" # Newline definition in XML output XML_NEWLINE="" # Character which are invalid but in the db INVALID_CHARS = ["\x00", "\x0e"] RELAXNG_SCHEMA_FILE = "bug-export.rng"