Rename Humbug-based variables/paths in svn plugin.
(imported from commit 43a9282ad86546fb59e91c36e97a595e51789d07)
This commit is contained in:
parent
f36c132578
commit
b90a936910
|
@ -37,14 +37,14 @@ import pysvn
|
||||||
sys.path.insert(0, os.path.dirname(__file__))
|
sys.path.insert(0, os.path.dirname(__file__))
|
||||||
import zulip_svn_config as config
|
import zulip_svn_config as config
|
||||||
|
|
||||||
if config.HUMBUG_API_PATH is not None:
|
if config.ZULIP_API_PATH is not None:
|
||||||
sys.path.append(config.HUMBUG_API_PATH)
|
sys.path.append(config.ZULIP_API_PATH)
|
||||||
|
|
||||||
import zulip
|
import zulip
|
||||||
client = zulip.Client(
|
client = zulip.Client(
|
||||||
email=config.HUMBUG_USER,
|
email=config.ZULIP_USER,
|
||||||
site=config.HUMBUG_SITE,
|
site=config.ZULIP_SITE,
|
||||||
api_key=config.HUMBUG_API_KEY)
|
api_key=config.ZULIP_API_KEY)
|
||||||
svn = pysvn.Client()
|
svn = pysvn.Client()
|
||||||
|
|
||||||
path, rev = sys.argv[1:]
|
path, rev = sys.argv[1:]
|
||||||
|
|
|
@ -23,8 +23,8 @@
|
||||||
|
|
||||||
|
|
||||||
# Change these values to configure authentication for the plugin
|
# Change these values to configure authentication for the plugin
|
||||||
HUMBUG_USER = "svn-bot@example.com"
|
ZULIP_USER = "svn-bot@example.com"
|
||||||
HUMBUG_API_KEY = "0123456789abcdef0123456789abcdef"
|
ZULIP_API_KEY = "0123456789abcdef0123456789abcdef"
|
||||||
|
|
||||||
# commit_notice_destination() lets you customize where commit notices
|
# commit_notice_destination() lets you customize where commit notices
|
||||||
# are sent to with the full power of a Python function.
|
# are sent to with the full power of a Python function.
|
||||||
|
@ -51,7 +51,7 @@ def commit_notice_destination(path, commit):
|
||||||
|
|
||||||
## If properly installed, the Zulip API should be in your import
|
## If properly installed, the Zulip API should be in your import
|
||||||
## path, but if not, set a custom path below
|
## 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.
|
# 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"
|
||||||
|
|
Loading…
Reference in a new issue