changeset 9104:c9c5aa12a46e

notify: cleanup module docstring
author Martin Geisler <mg@lazybytes.net>
date Thu, 09 Jul 2009 22:42:43 +0200
parents 9c7a5d70e72f
children 6188f2cc4a37
files hgext/notify.py tests/test-notify.out
diffstat 2 files changed, 22 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/notify.py	Thu Jul 09 20:15:15 2009 +0200
+++ b/hgext/notify.py	Thu Jul 09 22:42:43 2009 +0200
@@ -7,10 +7,10 @@
 
 '''hooks for sending email notifications at commit/push time
 
-Subscriptions can be managed through hgrc. Default mode is to print messages
-to stdout, for testing and configuring.
+Subscriptions can be managed through a hgrc file. Default mode is to print
+messages to stdout, for testing and configuring.
 
-To use, configure notify extension and enable in hgrc like this:
+To use, configure the notify extension and enable it in hgrc like this:
 
    [extensions]
    hgext.notify =
@@ -22,14 +22,14 @@
    changegroup.notify = python:hgext.notify.hook
 
    [notify]
-   # config items go in here
+   # config items go here
 
- config items:
+ Required configuration items:
 
- REQUIRED:
    config = /path/to/file # file containing subscriptions
 
- OPTIONAL:
+ Optional configuration items:
+
    test = True            # print messages to stdout for testing
    strip = 3              # number of slashes to strip for url paths
    domain = example.com   # domain to use if committer missing domain
@@ -47,8 +47,8 @@
    [web]
    baseurl = http://hgserver/... # root of hg web site for browsing commits
 
- notify config file has same format as regular hgrc. it has two sections so
- you can express subscriptions in whatever way is handier for you.
+ The notify config file has same format as a regular hgrc file. It has two
+ sections so you can express subscriptions in whatever way is handier for you.
 
    [usersubs]
    # key is subscriber email, value is ","-separated list of glob patterns
@@ -58,9 +58,9 @@
    # key is glob pattern, value is ","-separated list of subscriber emails
    pattern = user@host
 
- glob patterns are matched against path to repository root.
+ Glob patterns are matched against path to repository root.
 
- if you like, you can put notify config file in repository that users can push
+ If you like, you can put notify config file in repository that users can push
  changes to, they can manage their own subscriptions.
 '''
 
--- a/tests/test-notify.out	Thu Jul 09 20:15:15 2009 +0200
+++ b/tests/test-notify.out	Thu Jul 09 22:42:43 2009 +0200
@@ -1,9 +1,9 @@
 notify extension - hooks for sending email notifications at commit/push time
 
-Subscriptions can be managed through hgrc. Default mode is to print messages
-to stdout, for testing and configuring.
+Subscriptions can be managed through a hgrc file. Default mode is to print
+messages to stdout, for testing and configuring.
 
-To use, configure notify extension and enable in hgrc like this:
+To use, configure the notify extension and enable it in hgrc like this:
 
    [extensions]
    hgext.notify =
@@ -15,14 +15,14 @@
    changegroup.notify = python:hgext.notify.hook
 
    [notify]
-   # config items go in here
+   # config items go here
 
- config items:
+ Required configuration items:
 
- REQUIRED:
    config = /path/to/file # file containing subscriptions
 
- OPTIONAL:
+ Optional configuration items:
+
    test = True            # print messages to stdout for testing
    strip = 3              # number of slashes to strip for url paths
    domain = example.com   # domain to use if committer missing domain
@@ -40,8 +40,8 @@
    [web]
    baseurl = http://hgserver/... # root of hg web site for browsing commits
 
- notify config file has same format as regular hgrc. it has two sections so
- you can express subscriptions in whatever way is handier for you.
+ The notify config file has same format as a regular hgrc file. It has two
+ sections so you can express subscriptions in whatever way is handier for you.
 
    [usersubs]
    # key is subscriber email, value is ","-separated list of glob patterns
@@ -51,9 +51,9 @@
    # key is glob pattern, value is ","-separated list of subscriber emails
    pattern = user@host
 
- glob patterns are matched against path to repository root.
+ Glob patterns are matched against path to repository root.
 
- if you like, you can put notify config file in repository that users can push
+ If you like, you can put notify config file in repository that users can push
  changes to, they can manage their own subscriptions.
 
 no commands defined