diff options
author | Joey Hess <joey@kitenet.net> | 2013-03-24 18:28:21 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-03-24 18:28:21 -0400 |
commit | 9ad09558eb6c9f7ed651168a030e26bc5698c1b8 (patch) | |
tree | 25594af86475e8f358d2409e98e72992a633b524 /Command | |
parent | 12cd5a673b59494db918df21272dd77091346d05 (diff) |
add section metadata to all commands
Not yet used .. mindless train work.
Diffstat (limited to 'Command')
57 files changed, 74 insertions, 58 deletions
diff --git a/Command/Add.hs b/Command/Add.hs index 343ffbe95..cf2a55c50 100644 --- a/Command/Add.hs +++ b/Command/Add.hs @@ -29,7 +29,8 @@ import Config import Utility.InodeCache def :: [Command] -def = [notBareRepo $ command "add" paramPaths seek "add files to annex"] +def = [notBareRepo $ command "add" paramPaths seek SectionCommon + "add files to annex"] {- Add acts on both files not checked into git yet, and unlocked files. - diff --git a/Command/AddUnused.hs b/Command/AddUnused.hs index 23dbdfcca..c352d87d0 100644 --- a/Command/AddUnused.hs +++ b/Command/AddUnused.hs @@ -15,7 +15,7 @@ import Types.Key def :: [Command] def = [notDirect $ command "addunused" (paramRepeating paramNumRange) - seek "add back unused files"] + seek SectionMaintenance "add back unused files"] seek :: [CommandSeek] seek = [withUnusedMaps start] diff --git a/Command/AddUrl.hs b/Command/AddUrl.hs index ceb35224d..7c235922d 100644 --- a/Command/AddUrl.hs +++ b/Command/AddUrl.hs @@ -26,7 +26,8 @@ import Annex.Content.Direct def :: [Command] def = [notBareRepo $ withOptions [fileOption, pathdepthOption, relaxedOption] $ - command "addurl" (paramRepeating paramUrl) seek "add urls to annex"] + command "addurl" (paramRepeating paramUrl) seek + SectionCommon "add urls to annex"] fileOption :: Option fileOption = Option.field [] "file" paramFile "specify what file the url is added to" diff --git a/Command/Assistant.hs b/Command/Assistant.hs index 69a127b50..0997088ad 100644 --- a/Command/Assistant.hs +++ b/Command/Assistant.hs @@ -20,7 +20,8 @@ import System.Posix.Directory def :: [Command] def = [noRepo checkAutoStart $ dontCheck repoExists $ withOptions [Command.Watch.foregroundOption, Command.Watch.stopOption, autoStartOption] $ - command "assistant" paramNothing seek "automatically handle changes"] + command "assistant" paramNothing seek SectionCommon + "automatically handle changes"] autoStartOption :: Option autoStartOption = Option.flag [] "autostart" "start in known repositories" diff --git a/Command/Commit.hs b/Command/Commit.hs index 165906139..6f3f9df28 100644 --- a/Command/Commit.hs +++ b/Command/Commit.hs @@ -14,7 +14,7 @@ import qualified Git def :: [Command] def = [command "commit" paramNothing seek - "commits any staged changes to the git-annex branch"] + SectionPlumbing "commits any staged changes to the git-annex branch"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/ConfigList.hs b/Command/ConfigList.hs index 505ad99e1..703d6882d 100644 --- a/Command/ConfigList.hs +++ b/Command/ConfigList.hs @@ -13,7 +13,7 @@ import Annex.UUID def :: [Command] def = [noCommit $ command "configlist" paramNothing seek - "outputs relevant git configuration"] + SectionPlumbing "outputs relevant git configuration"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/Copy.hs b/Command/Copy.hs index 4b04a2423..75b91c85c 100644 --- a/Command/Copy.hs +++ b/Command/Copy.hs @@ -15,7 +15,7 @@ import Annex.Wanted def :: [Command] def = [withOptions Command.Move.options $ command "copy" paramPaths seek - "copy content of files to/from another repository"] + SectionCommon "copy content of files to/from another repository"] seek :: [CommandSeek] seek = [withField Command.Move.toOption Remote.byNameWithUUID $ \to -> diff --git a/Command/Dead.hs b/Command/Dead.hs index 34595769f..f4b654ed9 100644 --- a/Command/Dead.hs +++ b/Command/Dead.hs @@ -17,7 +17,7 @@ import qualified Data.Set as S def :: [Command] def = [command "dead" (paramRepeating paramRemote) seek - "hide a lost repository"] + SectionSetup "hide a lost repository"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Describe.hs b/Command/Describe.hs index 61297e77c..18851b172 100644 --- a/Command/Describe.hs +++ b/Command/Describe.hs @@ -14,7 +14,7 @@ import Logs.UUID def :: [Command] def = [command "describe" (paramPair paramRemote paramDesc) seek - "change description of a repository"] + SectionSetup "change description of a repository"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Direct.hs b/Command/Direct.hs index 1617bd9c2..7ded712ae 100644 --- a/Command/Direct.hs +++ b/Command/Direct.hs @@ -18,7 +18,8 @@ import Annex.Version def :: [Command] def = [notBareRepo $ - command "direct" paramNothing seek "switch repository to direct mode"] + command "direct" paramNothing seek + SectionSetup "switch repository to direct mode"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/Drop.hs b/Command/Drop.hs index 1d09ca3fd..4e3a062af 100644 --- a/Command/Drop.hs +++ b/Command/Drop.hs @@ -21,7 +21,7 @@ import Annex.Wanted def :: [Command] def = [withOptions [fromOption] $ command "drop" paramPaths seek - "indicate content of files not currently wanted"] + SectionCommon "indicate content of files not currently wanted"] fromOption :: Option fromOption = Option.field ['f'] "from" paramRemote "drop content from a remote" diff --git a/Command/DropKey.hs b/Command/DropKey.hs index c0d4f85cf..624919584 100644 --- a/Command/DropKey.hs +++ b/Command/DropKey.hs @@ -16,7 +16,7 @@ import Types.Key def :: [Command] def = [noCommit $ command "dropkey" (paramRepeating paramKey) seek - "drops annexed content for specified keys"] + SectionPlumbing "drops annexed content for specified keys"] seek :: [CommandSeek] seek = [withKeys start] diff --git a/Command/DropUnused.hs b/Command/DropUnused.hs index ccf43c040..a23e0cb39 100644 --- a/Command/DropUnused.hs +++ b/Command/DropUnused.hs @@ -19,7 +19,7 @@ import qualified Option def :: [Command] def = [withOptions [Command.Drop.fromOption] $ command "dropunused" (paramRepeating paramNumRange) - seek "drop unused file content"] + seek SectionMaintenance "drop unused file content"] seek :: [CommandSeek] seek = [withUnusedMaps start] diff --git a/Command/Find.hs b/Command/Find.hs index 96f47ec87..a326b2634 100644 --- a/Command/Find.hs +++ b/Command/Find.hs @@ -21,7 +21,7 @@ import qualified Option def :: [Command] def = [noCommit $ withOptions [formatOption, print0Option] $ - command "find" paramPaths seek "lists available files"] + command "find" paramPaths seek SectionQuery "lists available files"] formatOption :: Option formatOption = Option.field [] "format" paramFormat "control format of output" diff --git a/Command/Fix.hs b/Command/Fix.hs index e15951c21..dbccfacdf 100644 --- a/Command/Fix.hs +++ b/Command/Fix.hs @@ -14,7 +14,7 @@ import Annex.Content def :: [Command] def = [notDirect $ noCommit $ command "fix" paramPaths seek - "fix up symlinks to point to annexed content"] + SectionMaintenance "fix up symlinks to point to annexed content"] seek :: [CommandSeek] seek = [withFilesInGit $ whenAnnexed start] diff --git a/Command/FromKey.hs b/Command/FromKey.hs index d023be686..ac5edd1d0 100644 --- a/Command/FromKey.hs +++ b/Command/FromKey.hs @@ -16,7 +16,7 @@ import Types.Key def :: [Command] def = [notDirect $ notBareRepo $ command "fromkey" (paramPair paramKey paramPath) seek - "adds a file using a specific key"] + SectionPlumbing "adds a file using a specific key"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Fsck.hs b/Command/Fsck.hs index aeed58cd1..501483b14 100644 --- a/Command/Fsck.hs +++ b/Command/Fsck.hs @@ -36,7 +36,7 @@ import System.Locale def :: [Command] def = [withOptions options $ command "fsck" paramPaths seek - "check for problems"] + SectionMaintenance "check for problems"] fromOption :: Option fromOption = Option.field ['f'] "from" paramRemote "check remote" diff --git a/Command/Get.hs b/Command/Get.hs index 95f71a84b..432be31e3 100644 --- a/Command/Get.hs +++ b/Command/Get.hs @@ -17,7 +17,7 @@ import Annex.Wanted def :: [Command] def = [withOptions [Command.Move.fromOption] $ command "get" paramPaths seek - "make content of annexed files available"] + SectionCommon "make content of annexed files available"] seek :: [CommandSeek] seek = [withField Command.Move.fromOption Remote.byNameWithUUID $ \from -> diff --git a/Command/Group.hs b/Command/Group.hs index 5513ca3f7..aee02b6c4 100644 --- a/Command/Group.hs +++ b/Command/Group.hs @@ -16,7 +16,8 @@ import Types.Group import qualified Data.Set as S def :: [Command] -def = [command "group" (paramPair paramRemote paramDesc) seek "add a repository to a group"] +def = [command "group" (paramPair paramRemote paramDesc) seek + SectionCommon "add a repository to a group"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Help.hs b/Command/Help.hs index 95033eb7f..9f7bb34ae 100644 --- a/Command/Help.hs +++ b/Command/Help.hs @@ -21,7 +21,7 @@ import qualified Command.Fsck def :: [Command] def = [noCommit $ noRepo showHelp $ dontCheck repoExists $ - command "help" paramNothing seek "display help"] + command "help" paramNothing seek SectionUtility "display help"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Import.hs b/Command/Import.hs index e8e839e4f..d86b44b80 100644 --- a/Command/Import.hs +++ b/Command/Import.hs @@ -14,7 +14,7 @@ import qualified Command.Add def :: [Command] def = [notDirect $ notBareRepo $ command "import" paramPaths seek - "move and add files from outside git working copy"] + SectionCommon "move and add files from outside git working copy"] seek :: [CommandSeek] seek = [withPathContents start] diff --git a/Command/InAnnex.hs b/Command/InAnnex.hs index cd4bff2c6..4410d722d 100644 --- a/Command/InAnnex.hs +++ b/Command/InAnnex.hs @@ -13,7 +13,7 @@ import Annex.Content def :: [Command] def = [noCommit $ command "inannex" (paramRepeating paramKey) seek - "checks if keys are present in the annex"] + SectionPlumbing "checks if keys are present in the annex"] seek :: [CommandSeek] seek = [withKeys start] diff --git a/Command/Indirect.hs b/Command/Indirect.hs index 6290e6756..e46a3348d 100644 --- a/Command/Indirect.hs +++ b/Command/Indirect.hs @@ -22,7 +22,7 @@ import Init def :: [Command] def = [notBareRepo $ command "indirect" paramNothing seek - "switch repository to indirect mode"] + SectionSetup "switch repository to indirect mode"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/Init.hs b/Command/Init.hs index 342ef84e1..3db9a6be3 100644 --- a/Command/Init.hs +++ b/Command/Init.hs @@ -13,7 +13,7 @@ import Init def :: [Command] def = [dontCheck repoExists $ - command "init" paramDesc seek "initialize git-annex"] + command "init" paramDesc seek SectionSetup "initialize git-annex"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/InitRemote.hs b/Command/InitRemote.hs index 684f868ef..c82dc9ddf 100644 --- a/Command/InitRemote.hs +++ b/Command/InitRemote.hs @@ -20,7 +20,7 @@ import Logs.UUID def :: [Command] def = [command "initremote" (paramPair paramName $ paramOptional $ paramRepeating paramKeyValue) - seek "sets up a special (non-git) remote"] + seek SectionSetup "sets up a special (non-git) remote"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Lock.hs b/Command/Lock.hs index c34e6a16b..6dc58df74 100644 --- a/Command/Lock.hs +++ b/Command/Lock.hs @@ -12,7 +12,8 @@ import Command import qualified Annex.Queue def :: [Command] -def = [notDirect $ command "lock" paramPaths seek "undo unlock command"] +def = [notDirect $ command "lock" paramPaths seek SectionCommon + "undo unlock command"] seek :: [CommandSeek] seek = [withFilesUnlocked start, withFilesUnlockedToBeCommitted start] diff --git a/Command/Log.hs b/Command/Log.hs index 6608a9906..2d4819f7f 100644 --- a/Command/Log.hs +++ b/Command/Log.hs @@ -37,7 +37,7 @@ type Outputter = Bool -> POSIXTime -> [UUID] -> Annex () def :: [Command] def = [withOptions options $ - command "log" paramPaths seek "shows location log"] + command "log" paramPaths seek SectionQuery "shows location log"] options :: [Option] options = passthruOptions ++ [gourceOption] diff --git a/Command/Map.hs b/Command/Map.hs index f2ac52047..c88520b07 100644 --- a/Command/Map.hs +++ b/Command/Map.hs @@ -28,7 +28,8 @@ data Link = Link Git.Repo Git.Repo def :: [Command] def = [dontCheck repoExists $ - command "map" paramNothing seek "generate map of repositories"] + command "map" paramNothing seek SectionQuery + "generate map of repositories"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/Merge.hs b/Command/Merge.hs index 0f4661497..382a251df 100644 --- a/Command/Merge.hs +++ b/Command/Merge.hs @@ -12,8 +12,8 @@ import Command import qualified Annex.Branch def :: [Command] -def = [command "merge" paramNothing seek - "auto-merge remote changes into git-annex branch"] +def = [command "merge" paramNothing seek SectionMaintenance + "auto-merge remote changes into git-annex branch"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/Migrate.hs b/Command/Migrate.hs index 5374bc928..795f9ed7b 100644 --- a/Command/Migrate.hs +++ b/Command/Migrate.hs @@ -19,7 +19,8 @@ import qualified Command.Fsck def :: [Command] def = [notDirect $ - command "migrate" paramPaths seek "switch data to different backend"] + command "migrate" paramPaths seek + SectionUtility "switch data to different backend"] seek :: [CommandSeek] seek = [withFilesInGit $ whenAnnexed start] diff --git a/Command/Move.hs b/Command/Move.hs index cc8fb506f..31daf5529 100644 --- a/Command/Move.hs +++ b/Command/Move.hs @@ -20,7 +20,7 @@ import Logs.Transfer def :: [Command] def = [withOptions options $ command "move" paramPaths seek - "move content of files to/from another repository"] + SectionCommon "move content of files to/from another repository"] fromOption :: Option fromOption = Option.field ['f'] "from" paramRemote "source remote" diff --git a/Command/PreCommit.hs b/Command/PreCommit.hs index 23b6ecc0a..565344d25 100644 --- a/Command/PreCommit.hs +++ b/Command/PreCommit.hs @@ -17,7 +17,8 @@ import Annex.Content.Direct import Git.Sha def :: [Command] -def = [command "pre-commit" paramPaths seek "run by git pre-commit hook"] +def = [command "pre-commit" paramPaths seek SectionPlumbing + "run by git pre-commit hook"] seek :: [CommandSeek] seek = diff --git a/Command/ReKey.hs b/Command/ReKey.hs index 54a345dcb..5978a0296 100644 --- a/Command/ReKey.hs +++ b/Command/ReKey.hs @@ -20,7 +20,7 @@ import Utility.CopyFile def :: [Command] def = [notDirect $ command "rekey" (paramOptional $ paramRepeating $ paramPair paramPath paramKey) - seek "change keys used for files"] + seek SectionPlumbing "change keys used for files"] seek :: [CommandSeek] seek = [withPairs start] diff --git a/Command/RecvKey.hs b/Command/RecvKey.hs index 11a5fd5ca..c5ff4a9c8 100644 --- a/Command/RecvKey.hs +++ b/Command/RecvKey.hs @@ -21,7 +21,7 @@ import qualified Backend def :: [Command] def = [noCommit $ command "recvkey" paramKey seek - "runs rsync in server mode to receive content"] + SectionPlumbing "runs rsync in server mode to receive content"] seek :: [CommandSeek] seek = [withKeys start] diff --git a/Command/Reinject.hs b/Command/Reinject.hs index 12657f7f4..642f38947 100644 --- a/Command/Reinject.hs +++ b/Command/Reinject.hs @@ -15,7 +15,7 @@ import qualified Command.Fsck def :: [Command] def = [notDirect $ command "reinject" (paramPair "SRC" "DEST") seek - "sets content of annexed file"] + SectionUtility "sets content of annexed file"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Semitrust.hs b/Command/Semitrust.hs index f8c306213..e20563672 100644 --- a/Command/Semitrust.hs +++ b/Command/Semitrust.hs @@ -14,7 +14,7 @@ import Logs.Trust def :: [Command] def = [command "semitrust" (paramRepeating paramRemote) seek - "return repository to default trust level"] + SectionSetup "return repository to default trust level"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/SendKey.hs b/Command/SendKey.hs index dfdec7f92..3e46d9dd0 100644 --- a/Command/SendKey.hs +++ b/Command/SendKey.hs @@ -16,7 +16,7 @@ import qualified Fields def :: [Command] def = [noCommit $ command "sendkey" paramKey seek - "runs rsync in server mode to send content"] + SectionPlumbing "runs rsync in server mode to send content"] seek :: [CommandSeek] seek = [withKeys start] diff --git a/Command/Status.hs b/Command/Status.hs index ff71e0120..37d6500f9 100644 --- a/Command/Status.hs +++ b/Command/Status.hs @@ -58,7 +58,7 @@ type StatState = StateT StatInfo Annex def :: [Command] def = [command "status" (paramOptional paramPaths) seek - "shows status information about the annex"] + SectionQuery "shows status information about the annex"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Sync.hs b/Command/Sync.hs index 39eda90f7..eb312c25b 100644 --- a/Command/Sync.hs +++ b/Command/Sync.hs @@ -34,7 +34,7 @@ import Data.Hash.MD5 def :: [Command] def = [command "sync" (paramOptional (paramRepeating paramRemote)) - [seek] "synchronize local repository with remotes"] + [seek] SectionCommon "synchronize local repository with remotes"] -- syncing involves several operations, any of which can independently fail seek :: CommandSeek diff --git a/Command/Test.hs b/Command/Test.hs index 7ff9f2963..bf15dcf50 100644 --- a/Command/Test.hs +++ b/Command/Test.hs @@ -11,7 +11,8 @@ import Command def :: [Command] def = [ dontCheck repoExists $ - command "test" paramNothing seek "run built-in test suite"] + command "test" paramNothing seek SectionPlumbing + "run built-in test suite"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/TransferInfo.hs b/Command/TransferInfo.hs index 800b72169..aacc69bb1 100644 --- a/Command/TransferInfo.hs +++ b/Command/TransferInfo.hs @@ -15,7 +15,7 @@ import Types.Key import qualified Fields def :: [Command] -def = [noCommit $ command "transferinfo" paramKey seek +def = [noCommit $ command "transferinfo" paramKey seek SectionPlumbing "updates sender on number of bytes of content received"] seek :: [CommandSeek] diff --git a/Command/TransferKey.hs b/Command/TransferKey.hs index e2c926d40..eb657d738 100644 --- a/Command/TransferKey.hs +++ b/Command/TransferKey.hs @@ -20,7 +20,7 @@ import qualified Option def :: [Command] def = [withOptions options $ - noCommit $ command "transferkey" paramKey seek + noCommit $ command "transferkey" paramKey seek SectionPlumbing "transfers a key from or to a remote"] options :: [Option] diff --git a/Command/TransferKeys.hs b/Command/TransferKeys.hs index 2114e2278..5fc993dc1 100644 --- a/Command/TransferKeys.hs +++ b/Command/TransferKeys.hs @@ -23,7 +23,8 @@ data TransferRequest = TransferRequest Direction Remote Key AssociatedFile def :: [Command] def = [withOptions options $ - command "transferkeys" paramNothing seek "plumbing; transfers keys"] + command "transferkeys" paramNothing seek + SectionPlumbing "transfers keys"] options :: [Option] options = [readFdOption, writeFdOption] diff --git a/Command/Trust.hs b/Command/Trust.hs index d976b86a8..26993ef77 100644 --- a/Command/Trust.hs +++ b/Command/Trust.hs @@ -13,7 +13,8 @@ import qualified Remote import Logs.Trust def :: [Command] -def = [command "trust" (paramRepeating paramRemote) seek "trust a repository"] +def = [command "trust" (paramRepeating paramRemote) seek + SectionSetup "trust a repository"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Unannex.hs b/Command/Unannex.hs index d1f27e86a..86cc7d00b 100644 --- a/Command/Unannex.hs +++ b/Command/Unannex.hs @@ -17,7 +17,8 @@ import qualified Git.LsFiles as LsFiles def :: [Command] def = [notDirect $ - command "unannex" paramPaths seek "undo accidential add command"] + command "unannex" paramPaths seek SectionUtility + "undo accidential add command"] seek :: [CommandSeek] seek = [withFilesInGit $ whenAnnexed start] diff --git a/Command/Ungroup.hs b/Command/Ungroup.hs index ea5b8edb6..a6557f21d 100644 --- a/Command/Ungroup.hs +++ b/Command/Ungroup.hs @@ -16,7 +16,8 @@ import Types.Group import qualified Data.Set as S def :: [Command] -def = [command "ungroup" (paramPair paramRemote paramDesc) seek "remove a repository from a group"] +def = [command "ungroup" (paramPair paramRemote paramDesc) seek + SectionSetup "remove a repository from a group"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Uninit.hs b/Command/Uninit.hs index 2ba32a2a6..c57fff017 100644 --- a/Command/Uninit.hs +++ b/Command/Uninit.hs @@ -19,7 +19,7 @@ import Annex.Content def :: [Command] def = [notDirect $ addCheck check $ command "uninit" paramPaths seek - "de-initialize git-annex and clean out repository"] + SectionUtility "de-initialize git-annex and clean out repository"] check :: Annex () check = do diff --git a/Command/Unlock.hs b/Command/Unlock.hs index 422afcc55..371b423ee 100644 --- a/Command/Unlock.hs +++ b/Command/Unlock.hs @@ -18,7 +18,7 @@ def = , c "edit" "same as unlock" ] where - c n = notDirect . command n paramPaths seek + c n = notDirect . command n paramPaths seek SectionCommon seek :: [CommandSeek] seek = [withFilesInGit $ whenAnnexed start] diff --git a/Command/Untrust.hs b/Command/Untrust.hs index e16040e6b..f18637838 100644 --- a/Command/Untrust.hs +++ b/Command/Untrust.hs @@ -14,7 +14,7 @@ import Logs.Trust def :: [Command] def = [command "untrust" (paramRepeating paramRemote) seek - "do not trust a repository"] + SectionSetup "do not trust a repository"] seek :: [CommandSeek] seek = [withWords start] diff --git a/Command/Unused.hs b/Command/Unused.hs index 25cd18c63..6c4a61cd4 100644 --- a/Command/Unused.hs +++ b/Command/Unused.hs @@ -37,7 +37,7 @@ import Types.Key def :: [Command] def = [withOptions [fromOption] $ command "unused" paramNothing seek - "look for unused file content"] + SectionMaintenance "look for unused file content"] fromOption :: Option fromOption = Option.field ['f'] "from" paramRemote "remote to check for unused content" diff --git a/Command/Upgrade.hs b/Command/Upgrade.hs index d1c1eb3b0..88ca8622d 100644 --- a/Command/Upgrade.hs +++ b/Command/Upgrade.hs @@ -14,7 +14,8 @@ import Annex.Version def :: [Command] def = [dontCheck repoExists $ -- because an old version may not seem to exist - command "upgrade" paramNothing seek "upgrade repository layout"] + command "upgrade" paramNothing seek + SectionMaintenance "upgrade repository layout"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/Version.hs b/Command/Version.hs index e066bba5d..9d2399b86 100644 --- a/Command/Version.hs +++ b/Command/Version.hs @@ -15,7 +15,7 @@ import BuildFlags def :: [Command] def = [noCommit $ noRepo showPackageVersion $ dontCheck repoExists $ - command "version" paramNothing seek "show version info"] + command "version" paramNothing seek SectionQuery "show version info"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/Vicfg.hs b/Command/Vicfg.hs index 8aefd86bb..ad0fa0201 100644 --- a/Command/Vicfg.hs +++ b/Command/Vicfg.hs @@ -25,7 +25,7 @@ import Remote def :: [Command] def = [command "vicfg" paramNothing seek - "edit git-annex's configuration"] + SectionSetup "edit git-annex's configuration"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/Watch.hs b/Command/Watch.hs index 25b5c6bba..f965c30cd 100644 --- a/Command/Watch.hs +++ b/Command/Watch.hs @@ -14,7 +14,7 @@ import Option def :: [Command] def = [notBareRepo $ withOptions [foregroundOption, stopOption] $ - command "watch" paramNothing seek "watch for changes"] + command "watch" paramNothing seek SectionCommon "watch for changes"] seek :: [CommandSeek] seek = [withFlag stopOption $ \stopdaemon -> diff --git a/Command/WebApp.hs b/Command/WebApp.hs index 5e461ed21..0d232fcdf 100644 --- a/Command/WebApp.hs +++ b/Command/WebApp.hs @@ -31,7 +31,7 @@ import System.Process (env, std_out, std_err) def :: [Command] def = [noCommit $ noRepo startNoRepo $ dontCheck repoExists $ notBareRepo $ - command "webapp" paramNothing seek "launch webapp"] + command "webapp" paramNothing seek SectionCommon "launch webapp"] seek :: [CommandSeek] seek = [withNothing start] diff --git a/Command/Whereis.hs b/Command/Whereis.hs index 251c4ec7a..7086bf645 100644 --- a/Command/Whereis.hs +++ b/Command/Whereis.hs @@ -16,7 +16,7 @@ import Logs.Trust def :: [Command] def = [noCommit $ command "whereis" paramPaths seek - "lists repositories that have file content"] + SectionQuery "lists repositories that have file content"] seek :: [CommandSeek] seek = [withValue (remoteMap id) $ \m -> diff --git a/Command/XMPPGit.hs b/Command/XMPPGit.hs index c54d6a84a..c1ff0b108 100644 --- a/Command/XMPPGit.hs +++ b/Command/XMPPGit.hs @@ -13,7 +13,8 @@ import Assistant.XMPP.Git def :: [Command] def = [noCommit $ noRepo xmppGitRelay $ dontCheck repoExists $ - command "xmppgit" paramNothing seek "git to XMPP relay (internal use)"] + command "xmppgit" paramNothing seek + SectionPlumbing "git to XMPP relay"] seek :: [CommandSeek] seek = [withWords start] |