view roundup/anypy/cgi_.py @ 7658:d30e534b078a

clarify doc on dispatcher_email config setting. An issue was brought up on the mailing list. https://sourceforge.net/p/roundup/mailman/message/43383465/ The description of dispatcher_email sounds like it should be sent email on issue creation. That's not it's role. Try to make it's role more obvious. Fix config.ini and reference.txt description. Add the newissuecopy.py detector to send email on the creation of an issue
author John Rouillard <rouilj@ieee.org>
date Tue, 10 Oct 2023 20:33:22 -0400
parents 978285986b2c
children d5d7ecd31864
line wrap: on
line source

try:
  # used for python2 and python 3 < 3.13
  import cgi as cgi
  from cgi import FieldStorage, MiniFieldStorage
except ImportError:
  # use for python3 >= 3.13
  from roundup.anypy.vendored import cgi
  from roundup.anypy.vendored.cgi import FieldStorage, MiniFieldStorage

Roundup Issue Tracker: http://roundup-tracker.org/