diff utility_commands.py @ 185:57355b0e7bd1

Creating patch for documention messages.
author Dan Villiom Podlaski Christiansen <danchr@cs.au.dk>
date Sat, 17 Jan 2009 15:30:37 -0600
parents e37f9d3fd5e7
children 77812f98e250
line wrap: on
line diff
--- a/utility_commands.py
+++ b/utility_commands.py
@@ -7,7 +7,7 @@ import util
 import hg_delta_editor
 
 def print_wc_url(ui, repo, hg_repo_path, **opts):
-    """Url of Subversion repository.
+    """show the location (URL) of the Subversion repository
     """
     hge = hg_delta_editor.HgChangeReceiver(hg_repo_path,
                                            ui_=ui)
@@ -16,7 +16,7 @@ print_wc_url = util.register_subcommand(
 
 
 def run_svn_info(ui, repo, hg_repo_path, **opts):
-    """Like svn info details.
+    """show Subversion details similar to `svn info'
     """
     hge = hg_delta_editor.HgChangeReceiver(hg_repo_path,
                                            ui_=ui)
@@ -60,7 +60,7 @@ run_svn_info = util.register_subcommand(
 
 
 def print_parent_revision(ui, repo, hg_repo_path, **opts):
-    """Display hg hash and svn revision of nearest svn parent.
+    """show Mercurial & Subversion parents of the working dir or revision
     """
     hge = hg_delta_editor.HgChangeReceiver(hg_repo_path,
                                            ui_=ui)
@@ -81,7 +81,7 @@ print_parent_revision = util.register_su
 
 
 def rebase_commits(ui, repo, hg_repo_path, extrafn=None, sourcerev=None, **opts):
-    """Rebases current unpushed revisions onto Subversion head.
+    """rebase current unpushed revisions onto the Subversion head
 
     This moves a line of development from making its own head to the top of
     Subversion development, linearizing the changes. In order to make sure you
@@ -131,7 +131,7 @@ rebase_commits = util.register_subcomman
 
 
 def show_outgoing_to_svn(ui, repo, hg_repo_path, **opts):
-    """Show changesets not yet pushed to SVN.
+    """show changesets not found in the Subversion repository
     """
     hge = hg_delta_editor.HgChangeReceiver(hg_repo_path,
                                            ui_=ui)