##// END OF EJS Templates
extensions: improve the consistency of synopses...
Cédric Duval -
r8894:868670db default
parent child Browse files
Show More
@@ -6,7 +6,7 b''
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7 #
8 8
9 '''provide simple hooks for access control
9 '''control access to a repository using simple hooks
10 10
11 11 This hook makes it possible to allow or deny write access to portions
12 12 of a repository when receiving incoming changesets.
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''Mercurial bookmarks
8 '''track a line of development with movable markers
9 9
10 10 Bookmarks are local movable markers to changesets. Every bookmark
11 11 points to a changeset identified by its hash. If you commit a
@@ -122,7 +122,7 b' def setcurrent(repo, mark):'
122 122 repo._bookmarkcurrent = mark
123 123
124 124 def bookmark(ui, repo, mark=None, rev=None, force=False, delete=False, rename=None):
125 '''Mercurial bookmarks
125 '''track a line of development with movable markers
126 126
127 127 Bookmarks are pointers to certain commits that move when
128 128 committing. Bookmarks are local. They can be renamed, copied and
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''Bugzilla integration
8 '''integrate Mercurial with a Bugzilla bug tracker
9 9
10 10 This hook extension adds comments on bugs in Bugzilla when changesets
11 11 that refer to bugs by Bugzilla ID are seen. The hook does not change
@@ -8,7 +8,7 b''
8 8 # This software may be used and distributed according to the terms of the
9 9 # GNU General Public License version 2, incorporated herein by reference.
10 10
11 '''provides children command to show children changesets'''
11 '''display children changesets'''
12 12
13 13 from mercurial import cmdutil
14 14 from mercurial.commands import templateopts
@@ -6,7 +6,7 b''
6 6 # This software may be used and distributed according to the terms of the
7 7 # GNU General Public License version 2, incorporated herein by reference.
8 8
9 '''command to show certain statistics about revision history'''
9 '''display statistics about repository history'''
10 10
11 11 from mercurial.i18n import _
12 12 from mercurial import patch, cmdutil, util, templater
@@ -16,7 +16,7 b''
16 16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 18
19 '''add color output to status, qseries, and diff-related commands
19 '''colorize output from some commands
20 20
21 21 This extension modifies the status command to add color to its output
22 22 to reflect file status, the qseries command to add color to reflect
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''converting foreign VCS repositories to Mercurial'''
8 '''import from foreign VCS repositories into Mercurial'''
9 9
10 10 import convcmd
11 11 import cvsps
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''pulling, updating and merging in one command'''
8 '''pull, update and merge in one command'''
9 9
10 10 from mercurial.i18n import _
11 11 from mercurial.node import nullid, short
@@ -3,7 +3,7 b''
3 3 # This software may be used and distributed according to the terms of the
4 4 # GNU General Public License version 2, incorporated herein by reference.
5 5
6 '''GnuPG signing extension for Mercurial'''
6 '''sign and verify changesets'''
7 7
8 8 import os, tempfile, binascii
9 9 from mercurial import util, commands, match
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''show revision graphs in terminal windows
8 '''show revision graphs in terminals
9 9
10 10 This extension adds a --graph option to the incoming, outgoing and log
11 11 commands. When this options is given, an ASCII representation of the
@@ -1,7 +1,7 b''
1 1 # Copyright (C) 2007-8 Brendan Cully <brendan@kublai.com>
2 2 # Published under the GNU GPL
3 3
4 """CIA notification
4 """integrate Mercurial with a CIA notification service
5 5
6 6 This is meant to be run as a changegroup or incoming hook.
7 7 To configure it, set the following options in your hgrc:
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''browsing the repository in a graphical way
8 '''browse the repository in a graphical way
9 9
10 10 The hgk extension allows browsing the history of a repository in a
11 11 graphical way. It requires Tcl/Tk version 8.4 or later. (Tcl/Tk is not
@@ -8,7 +8,7 b''
8 8 # The original module was split in an interface and an implementation
9 9 # file to defer pygments loading and speedup extension setup.
10 10
11 """syntax highlighting in hgweb, based on Pygments
11 """syntax highlighting for hgweb
12 12
13 13 It depends on the Pygments syntax highlighting library:
14 14 http://pygments.org/
@@ -6,8 +6,7 b''
6 6 # This software may be used and distributed according to the terms of the
7 7 # GNU General Public License version 2, incorporated herein by reference.
8 8
9 '''inotify-based status acceleration for Linux systems
10 '''
9 '''accelerate status report using system level services'''
11 10
12 11 # todo: socket permissions
13 12
@@ -26,7 +26,7 b''
26 26 #
27 27 # Run "hg help keyword" and "hg kwdemo" to get info on configuration.
28 28
29 '''keyword expansion in tracked files
29 '''expand keywords in tracked files
30 30
31 31 This extension expands RCS/CVS-like or self-customized $Keywords$ in
32 32 tracked text files selected by your configuration.
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''patch management and development
8 '''work with a stack of patches
9 9
10 10 This extension lets you work with a stack of patches in a Mercurial
11 11 repository. It manages two stacks of patches - all known patches, and
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''hook extension to email notifications on commits/pushes
8 '''send e-mail notifications for commits/pushes
9 9
10 10 Subscriptions can be managed through hgrc. Default mode is to print
11 11 messages to stdout, for testing and configuring.
@@ -12,7 +12,7 b''
12 12 #
13 13 # Run "hg help pager" to get info on configuration.
14 14
15 '''browse command output with external pager
15 '''browse command output with an external pager
16 16
17 17 To set the pager that should be used, set the application variable:
18 18
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''use suffixes to refer to ancestor revisions
8 '''interpret suffixes to refer to ancestor revisions
9 9
10 10 This extension allows you to use git-style suffixes to refer to the
11 11 ancestors of a specific revision.
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''sending Mercurial changesets as a series of patch emails
8 '''send Mercurial changesets as a series of patch e-mails
9 9
10 10 The series is started off with a "[PATCH 0 of N]" introduction, which
11 11 describes the series as a whole.
@@ -23,7 +23,7 b''
23 23 # along with this program; if not, write to the Free Software
24 24 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 25
26 '''enable removing untracked files only'''
26 '''delete files not tracked from the working directory'''
27 27
28 28 from mercurial import util, commands, cmdutil
29 29 from mercurial.i18n import _
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''interactive change selection during commit or qrefresh'''
8 '''interactively select which sets of changes to commit/qrefresh'''
9 9
10 10 from mercurial.i18n import gettext, _
11 11 from mercurial import cmdutil, commands, extensions, hg, mdiff, patch
@@ -3,7 +3,7 b''
3 3 # This software may be used and distributed according to the terms of the
4 4 # GNU General Public License version 2, incorporated herein by reference.
5 5
6 '''provides the hg share command'''
6 '''share a common history between several working directories'''
7 7
8 8 import os
9 9 from mercurial.i18n import _
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''patch transplanting tool
8 '''transplant changesets from another branch
9 9
10 10 This extension allows you to transplant patches from another branch.
11 11
@@ -9,7 +9,7 b''
9 9 # GNU General Public License version 2, incorporated herein by reference.
10 10 #
11 11
12 """allow to use MBCS path with problematic encoding.
12 '''allow the use of MBCS paths with problematic encoding
13 13
14 14 Some MBCS encodings are not good for some path operations (i.e.
15 15 splitting path, case conversion, etc.) with its encoded bytes. We call
@@ -36,8 +36,7 b' Note that there are some limitations on '
36 36 Path encoding conversion are done between Unicode and
37 37 encoding.encoding which is decided by Mercurial from current locale
38 38 setting or HGENCODING.
39
40 """
39 '''
41 40
42 41 import os
43 42 from mercurial.i18n import _
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''LF <-> CRLF/CR translation utilities
8 '''perform automatic newline conversion
9 9
10 10 To perform automatic newline conversion, use:
11 11
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 '''zeroconf support for Mercurial repositories
8 '''discover and advertise repositories on the local network
9 9
10 10 Zeroconf enabled repositories will be announced in a network without
11 11 the need to configure a server or a service. They can be discovered
@@ -1,5 +1,5 b''
1 1 % help
2 keyword extension - keyword expansion in tracked files
2 keyword extension - expand keywords in tracked files
3 3
4 4 This extension expands RCS/CVS-like or self-customized $Keywords$ in
5 5 tracked text files selected by your configuration.
@@ -55,9 +55,9 b' list of commands:'
55 55
56 56 enabled extensions:
57 57
58 keyword keyword expansion in tracked files
59 mq patch management and development
60 notify hook extension to email notifications on commits/pushes
58 keyword expand keywords in tracked files
59 mq work with a stack of patches
60 notify send e-mail notifications for commits/pushes
61 61
62 62 use "hg -v help keyword" to show aliases and global options
63 63 % hg kwdemo
@@ -1,5 +1,5 b''
1 1 % help
2 mq extension - patch management and development
2 mq extension - work with a stack of patches
3 3
4 4 This extension lets you work with a stack of patches in a Mercurial
5 5 repository. It manages two stacks of patches - all known patches, and
@@ -53,7 +53,7 b' list of commands:'
53 53
54 54 enabled extensions:
55 55
56 mq patch management and development
56 mq work with a stack of patches
57 57
58 58 use "hg -v help mq" to show aliases and global options
59 59 adding a
@@ -1,4 +1,4 b''
1 notify extension - hook extension to email notifications on commits/pushes
1 notify extension - send e-mail notifications for commits/pushes
2 2
3 3 Subscriptions can be managed through hgrc. Default mode is to print
4 4 messages to stdout, for testing and configuring.
General Comments 0
You need to be logged in to leave comments. Login now