D6998: help: adding a help category to narrow and remotefilelog commands

2019-10-11 Thread rdamazio (Rodrigo Damazio Bovendorp)
Closed by commit rHG5ff32fdf0b0b: help: adding a help category to narrow and 
remotefilelog commands (authored by rdamazio).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs 
Review".

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6998?vs=17087=17088

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D6998/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D6998

AFFECTED FILES
  hgext/narrow/narrowcommands.py
  hgext/remotefilelog/__init__.py

CHANGE DETAILS

diff --git a/hgext/remotefilelog/__init__.py b/hgext/remotefilelog/__init__.py
--- a/hgext/remotefilelog/__init__.py
+++ b/hgext/remotefilelog/__init__.py
@@ -1234,6 +1234,7 @@
 ]
 + commands.walkopts,
 _(b'hg prefetch [OPTIONS] [FILE...]'),
+helpcategory=command.CATEGORY_MAINTENANCE,
 )
 def prefetch(ui, repo, *pats, **opts):
 """prefetch file revisions from the server
diff --git a/hgext/narrow/narrowcommands.py b/hgext/narrow/narrowcommands.py
--- a/hgext/narrow/narrowcommands.py
+++ b/hgext/narrow/narrowcommands.py
@@ -445,6 +445,7 @@
 + commands.remoteopts,
 _(b'[OPTIONS]... [REMOTE]'),
 inferrepo=True,
+helpcategory=command.CATEGORY_MAINTENANCE,
 )
 def trackedcmd(ui, repo, remotepath=None, *pats, **opts):
 """show or change the current narrowspec



To: rdamazio, durin42, #hg-reviewers, martinvonz
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D6998: help: adding a help category to narrow and remotefilelog commands

2019-10-11 Thread rdamazio (Rodrigo Damazio Bovendorp)
rdamazio updated this revision to Diff 17087.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6998?vs=16897=17087

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D6998/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D6998

AFFECTED FILES
  hgext/narrow/narrowcommands.py
  hgext/remotefilelog/__init__.py

CHANGE DETAILS

diff --git a/hgext/remotefilelog/__init__.py b/hgext/remotefilelog/__init__.py
--- a/hgext/remotefilelog/__init__.py
+++ b/hgext/remotefilelog/__init__.py
@@ -1234,6 +1234,7 @@
 ]
 + commands.walkopts,
 _(b'hg prefetch [OPTIONS] [FILE...]'),
+helpcategory=command.CATEGORY_MAINTENANCE,
 )
 def prefetch(ui, repo, *pats, **opts):
 """prefetch file revisions from the server
diff --git a/hgext/narrow/narrowcommands.py b/hgext/narrow/narrowcommands.py
--- a/hgext/narrow/narrowcommands.py
+++ b/hgext/narrow/narrowcommands.py
@@ -445,6 +445,7 @@
 + commands.remoteopts,
 _(b'[OPTIONS]... [REMOTE]'),
 inferrepo=True,
+helpcategory=command.CATEGORY_MAINTENANCE,
 )
 def trackedcmd(ui, repo, remotepath=None, *pats, **opts):
 """show or change the current narrowspec



To: rdamazio, durin42, #hg-reviewers, martinvonz
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D6998: help: adding a help category to narrow and remotefilelog commands

2019-10-06 Thread rdamazio (Rodrigo Damazio Bovendorp)
rdamazio created this revision.
Herald added a reviewer: durin42.
Herald added a reviewer: martinvonz.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D6998

AFFECTED FILES
  hgext/narrow/narrowcommands.py
  hgext/remotefilelog/__init__.py

CHANGE DETAILS

diff --git a/hgext/remotefilelog/__init__.py b/hgext/remotefilelog/__init__.py
--- a/hgext/remotefilelog/__init__.py
+++ b/hgext/remotefilelog/__init__.py
@@ -1072,7 +1072,8 @@
 ('r', 'rev', [], _('prefetch the specified revisions'), _('REV')),
 ('', 'repack', False, _('run repack after prefetch')),
 ('b', 'base', '', _("rev that is assumed to already be local")),
-] + commands.walkopts, _('hg prefetch [OPTIONS] [FILE...]'))
+] + commands.walkopts, _('hg prefetch [OPTIONS] [FILE...]'),
+helpcategory=command.CATEGORY_MAINTENANCE)
 def prefetch(ui, repo, *pats, **opts):
 """prefetch file revisions from the server
 
diff --git a/hgext/narrow/narrowcommands.py b/hgext/narrow/narrowcommands.py
--- a/hgext/narrow/narrowcommands.py
+++ b/hgext/narrow/narrowcommands.py
@@ -340,7 +340,8 @@
   _('update working copy when the store has changed')),
 ] + commands.remoteopts,
 _('[OPTIONS]... [REMOTE]'),
-inferrepo=True)
+inferrepo=True,
+helpcategory=command.CATEGORY_MAINTENANCE)
 def trackedcmd(ui, repo, remotepath=None, *pats, **opts):
 """show or change the current narrowspec
 



To: rdamazio, durin42, martinvonz, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel