# HG changeset patch # User Dirkjan Ochtman # Date 1245843722 -7200 # Node ID 9dda4c73fc3ba53e6a0b5076404230f08390f049 # Parent 6176ca261f86593e402cf1f18c790521583783b5 extensions: change descriptions for extensions providing a few commands diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/children.py --- a/hgext/children.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/children.py Wed Jun 24 13:42:02 2009 +0200 @@ -8,7 +8,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''display children changesets''' +'''command to display child changesets''' from mercurial import cmdutil from mercurial.commands import templateopts diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/churn.py --- a/hgext/churn.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/churn.py Wed Jun 24 13:42:02 2009 +0200 @@ -6,7 +6,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''display statistics about repository history''' +'''command to display statistics about repository history''' from mercurial.i18n import _ from mercurial import patch, cmdutil, util, templater diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/extdiff.py --- a/hgext/extdiff.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/extdiff.py Wed Jun 24 13:42:02 2009 +0200 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''allow external programs to compare revisions +'''command to allow external programs to compare revisions The `extdiff' Mercurial extension allows you to use external programs to compare revisions, or revision with working directory. The external diff diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/gpg.py --- a/hgext/gpg.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/gpg.py Wed Jun 24 13:42:02 2009 +0200 @@ -3,7 +3,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''sign and verify changesets''' +'''commands to sign and verify changesets''' import os, tempfile, binascii from mercurial import util, commands, match diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/graphlog.py --- a/hgext/graphlog.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/graphlog.py Wed Jun 24 13:42:02 2009 +0200 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''view revision graphs from a shell +'''command to view revision graphs from a shell This extension adds a --graph option to the incoming, outgoing and log commands. When this options is given, an ASCII representation of the diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/patchbomb.py --- a/hgext/patchbomb.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/patchbomb.py Wed Jun 24 13:42:02 2009 +0200 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''send Mercurial changesets as a series of patch e-mails +'''command to send changesets as (a series of) patch e-mails The series is started off with a "[PATCH 0 of N]" introduction, which describes the series as a whole. diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/purge.py --- a/hgext/purge.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/purge.py Wed Jun 24 13:42:02 2009 +0200 @@ -23,7 +23,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -'''delete files not tracked from the working directory''' +'''command to delete untracked files from the working directory''' from mercurial import util, commands, cmdutil from mercurial.i18n import _ diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/rebase.py --- a/hgext/rebase.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/rebase.py Wed Jun 24 13:42:02 2009 +0200 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''move sets of revisions to a different ancestor +'''command to move sets of revisions to a different ancestor This extension lets you rebase changesets in an existing Mercurial repository. diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/record.py --- a/hgext/record.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/record.py Wed Jun 24 13:42:02 2009 +0200 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''interactively select which sets of changes to commit/qrefresh''' +'''commands to interactively select changes for commit/qrefresh''' from mercurial.i18n import gettext, _ from mercurial import cmdutil, commands, extensions, hg, mdiff, patch diff -r 6176ca261f86 -r 9dda4c73fc3b hgext/transplant.py --- a/hgext/transplant.py Wed Jun 24 13:10:05 2009 +0200 +++ b/hgext/transplant.py Wed Jun 24 13:42:02 2009 +0200 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''transplant changesets from another branch +'''command to transplant changesets from another branch This extension allows you to transplant patches from another branch.