= Flowdock Extension = == Status == '''This extension is not distributed with Mercurial.''' ''Author: '' ''Jason Kirtland'' Repository: https://bitbucket.org/jek/hgflowdock == Overview == Sends notifications to a team inbox on [[http://flowdock.com|Flowdock.com]]. It can be used as either an incoming or a changegroup hook. == Configuration == Configure your .hgrc to enable the extension by adding following lines: {{{ [extensions] hgflowdock=/path/to/hgflowdock.py [hooks] changegroup.hgflowdock = python:hgflowdock.hook # or #incoming.hgflowdock = python:hgflowdock.hook [flowdock] # required: API token- find this in your flow config. may supply multiple, # separated by commas token = # comma-separated list of tags to attach to all commits tags = # boolean; tag commits with branch names if true tag_branches = true # comma-separated list of branches to skip when tagging uninteresting_branches = default # format for commit messages; see hg help templates template = {desc} # timeout for API connections (python 2.6 or higher) timeout = 15 # style for changeset links. may be 'hgweb' or 'fisheye' #link_style = hgweb # base url for links, e.g. http://selenic.com/hg #link_base = # override name of repository for link generation. default is guessed. #name = repo_name }}} ---- CategoryExtensionsByOthers