Message from discussion
docs: include buglink
Received: by 10.224.189.75 with SMTP id dd11mr5251566qab.6.1348801335690;
Thu, 27 Sep 2012 20:02:15 -0700 (PDT)
X-BeenThere: hg-git@googlegroups.com
Received: by 10.229.105.85 with SMTP id s21ls5210676qco.1.gmail; Thu, 27 Sep
2012 20:02:15 -0700 (PDT)
Received: by 10.224.213.1 with SMTP id gu1mr5236702qab.7.1348801335395;
Thu, 27 Sep 2012 20:02:15 -0700 (PDT)
Received: by 10.224.213.1 with SMTP id gu1mr5236701qab.7.1348801335388;
Thu, 27 Sep 2012 20:02:15 -0700 (PDT)
Return-Path: <davidm...@gmail.com>
Received: from mail-qc0-f178.google.com (mail-qc0-f178.google.com [209.85.216.178])
by gmr-mx.google.com with ESMTPS id a27si1122174qck.3.2012.09.27.20.02.15
(version=TLSv1/SSLv3 cipher=OTHER);
Thu, 27 Sep 2012 20:02:15 -0700 (PDT)
Received-SPF: pass (google.com: domain of davidm...@gmail.com designates 209.85.216.178 as permitted sender) client-ip=209.85.216.178;
Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of davidm...@gmail.com designates 209.85.216.178 as permitted sender) smtp.mail=davidm...@gmail.com; dkim=pass header...@gmail.com
Received: by qcoj34 with SMTP id j34so2145826qco.23
for <hg-git@googlegroups.com>; Thu, 27 Sep 2012 20:02:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=20120113;
h=content-type:mime-version:content-transfer-encoding:subject
:x-mercurial-node:message-id:in-reply-to:references:user-agent:date
:from:to;
bh=WoEWPb4Kso6MHahkUzeYaxQZ9fur+gu4GkFKJ2V8Tkc=;
b=cUyGwA5W3oVSRAOKB9V8nTX9SzZ6pXOIocMp0Wg08VGfkD4hJy/dkmjyXhnAre8H+o
yQ3BygtKuRHKtyqL4BQaE8Zr54tyTBN8VG2FC2pnUGtmpykBOy5Z6O9HORf0S/L/Qxls
GxYveAQBcUSdsrDgubhb3eS6MNX0NU2K/pCnOIKyZlF1LY/k/38SkzOd+oQdoqSx1yRa
Ijj6IwUqA6ZbXfirsSUsofQN73ujvj3nkvP+Mk0YnHrefTkkDL1lkVOLiqy/7ISlVj9p
3Bd5m9w+lxKhGWRWJdjNqd6p63ycJP7oFxGzMislfP8FlFBPn0JknJSXZsKap1T6Z9jb
gJeg==
Received: by 10.224.220.84 with SMTP id hx20mr14260027qab.5.1348801335253;
Thu, 27 Sep 2012 20:02:15 -0700 (PDT)
Return-Path: <davidm...@gmail.com>
Received: from veruca.local (cpe-72-226-41-156.nycap.res.rr.com. [72.226.41.156])
by mx.google.com with ESMTPS id dp3sm11128102qab.21.2012.09.27.20.02.14
(version=TLSv1/SSLv3 cipher=OTHER);
Thu, 27 Sep 2012 20:02:14 -0700 (PDT)
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Subject: [PATCH 2 of 3 next] docs: include buglink
X-Mercurial-Node: d6af82e71958000911427224a5d070f07a305597
Message-Id: <d6af82e7195800091142.1348801...@veruca.local>
In-Reply-To: <f6871baa79c94e37c7db.1348801...@veruca.local>
References: <f6871baa79c94e37c7db.1348801...@veruca.local>
User-Agent: Mercurial-patchbomb/2.3
Date: Thu, 27 Sep 2012 23:02:08 -0400
From: David Carr <davidm...@gmail.com>
To: hg-git@googlegroups.com
# HG changeset patch
# User David M. Carr <da...@carrclan.us>
# Date 1348800161 14400
# Node ID d6af82e71958000911427224a5d070f07a305597
# Parent f6871baa79c94e37c7dbe1795fe78bbef2b81fa6
docs: include buglink
Mercurial has support for including a link to an issue tracker when it detects
that an extension has broken. This change includes the appropriate attribute
in the extension, pointing it at the issue tracker for the main BitBucket repo.
diff --git a/hggit/__init__.py b/hggit/__init__.py
--- a/hggit/__init__.py
+++ b/hggit/__init__.py
@@ -42,6 +42,8 @@
import gitrepo, hgrepo
from git_handler import GitHandler
+buglink = 'https://bitbucket.org/durin42/hg-git/issues'
+
# support for `hg clone git://github.com/defunkt/facebox.git`
# also hg clone git+ssh://...@github.com/schacon/simplegit.git
_gitschemes = ('git', 'git+ssh', 'git+http', 'git+https')