Rename Humbug-based variables in Trac plugin.

(imported from commit 5d406cb6c5fe7b1fbd4da706f7ac6bb6e381cadb)
This commit is contained in:
Tim Abbott
2013-08-07 12:01:49 -04:00
committed by Tim Abbott
parent 6550134b3e
commit 3005792734
6 changed files with 28 additions and 30 deletions

View File

@@ -20,11 +20,11 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# See humbug_trac.py for installation and configuration instructions
# See zulip_trac.py for installation and configuration instructions
# Change these constants to configure the plugin:
HUMBUG_USER = "trac-bot@example.com"
HUMBUG_API_KEY = "0123456789abcdef0123456789abcdef"
ZULIP_USER = "trac-bot@example.com"
ZULIP_API_KEY = "0123456789abcdef0123456789abcdef"
STREAM_FOR_NOTIFICATIONS = "trac"
TRAC_BASE_TICKET_URL = "https://trac.example.com/ticket"
@@ -41,12 +41,11 @@ TRAC_BASE_TICKET_URL = "https://trac.example.com/ticket"
# The following is the list of fields which can be changed without
# triggering a Zulip notification; change these to match your team's
# workflow.
TRAC_NOTIFY_FIELDS = ["description", "summary", "resolution", "comment",
"owner"]
TRAC_NOTIFY_FIELDS = ["description", "summary", "resolution", "comment", "owner"]
## If properly installed, the Zulip API should be in your import
## path, but if not, set a custom path below
HUMBUG_API_PATH = None
ZULIP_API_PATH = None
# This should not need to change unless you have a custom Zulip subdomain.
HUMBUG_SITE = "https://api.zulip.com"
ZULIP_SITE = "https://api.zulip.com"