| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Darcs.UI.Options.All
Description
All the concrete options.
Notes:
- The term "option" refers to a flag or combination of flags that together form a part of a command's configuration. Ideally, options should be orthogonal to each other, so we can freely combine them.
- A primitive (indivisible) option has an associate value type.
- An option named "xyzActions" represents a set of flags that act as mutually exclusive sub-commands. They typically have a dedicated value type named "XyzAction".
- This module is probably best imported qualified. This is in contrast to
the current practice of using subtly differing names to avoid name
clashes for closely related items. For instance, the data constructors
for an option's value type and the corresponding data constructors in
DarcsFlagmay coincide. This is also why we import Darcs.UI.Flags qualified here. - When the new options system is finally in place, no code other than the
one for constructing options should directly refer to
DarcsFlagconstructors.
Synopsis
- type DarcsOption = OptSpec DarcsOptDescr Flag
- class YesNo a where
- data RootAction
- rootActions :: PrimDarcsOption (Maybe RootAction)
- data StdCmdAction
- = Help
- | ListOptions
- | Disable
- stdCmdActions :: PrimDarcsOption (Maybe StdCmdAction)
- debug :: PrimDarcsOption Bool
- data Verbosity
- verbosity :: PrimDarcsOption Verbosity
- timings :: PrimDarcsOption Bool
- debugging :: DarcsOption a (Bool -> Bool -> Bool -> a)
- data HooksConfig = HooksConfig {
- pre :: HookConfig
- post :: HookConfig
- data HookConfig = HookConfig {}
- preHook :: DarcsOption a (HookConfig -> a)
- postHook :: DarcsOption a (HookConfig -> a)
- hooks :: DarcsOption a (HooksConfig -> a)
- data UseCache
- useCache :: PrimDarcsOption UseCache
- data XmlOutput
- xmlOutput :: PrimDarcsOption XmlOutput
- data DryRun
- dryRun :: PrimDarcsOption DryRun
- dryRunXml :: DarcsOption a (DryRun -> XmlOutput -> a)
- interactive :: PrimDarcsOption (Maybe Bool)
- pipe :: PrimDarcsOption Bool
- data WantGuiPause
- pauseForGui :: PrimDarcsOption WantGuiPause
- askDeps :: PrimDarcsOption Bool
- module Darcs.UI.Options.Matching
- data SelectDeps
- = NoDeps
- | AutoDeps
- | PromptDeps
- selectDeps :: PrimDarcsOption SelectDeps
- changesReverse :: PrimDarcsOption Bool
- maxCount :: PrimDarcsOption (Maybe Int)
- repoDir :: PrimDarcsOption (Maybe String)
- data RemoteRepos = RemoteRepos [String]
- remoteRepos :: PrimDarcsOption RemoteRepos
- possiblyRemoteRepo :: PrimDarcsOption (Maybe String)
- newRepo :: PrimDarcsOption (Maybe String)
- data NotInRemote
- notInRemote :: PrimDarcsOption [NotInRemote]
- notInRemoteFlagName :: String
- data RepoCombinator
- repoCombinator :: PrimDarcsOption RepoCombinator
- allowUnrelatedRepos :: PrimDarcsOption Bool
- justThisRepo :: PrimDarcsOption Bool
- data WithWorkingDir
- withWorkingDir :: PrimDarcsOption WithWorkingDir
- data SetDefault
- setDefault :: PrimDarcsOption (Maybe Bool)
- data InheritDefault
- inheritDefault :: PrimDarcsOption InheritDefault
- patchname :: PrimDarcsOption (Maybe String)
- author :: PrimDarcsOption (Maybe String)
- data AskLongComment
- askLongComment :: PrimDarcsOption (Maybe AskLongComment)
- keepDate :: PrimDarcsOption Bool
- data Logfile = Logfile {}
- logfile :: PrimDarcsOption Logfile
- data LookFor = LookFor {}
- data LookForAdds
- data LookForMoves
- data LookForReplaces
- lookfor :: PrimDarcsOption LookFor
- lookforadds :: LookForAdds -> PrimDarcsOption LookForAdds
- lookforreplaces :: PrimDarcsOption LookForReplaces
- lookformoves :: PrimDarcsOption LookForMoves
- data UseIndex
- data ScanKnown
- data IncludeBoring
- includeBoring :: PrimDarcsOption IncludeBoring
- allowProblematicFilenames :: DarcsOption a (Bool -> Bool -> a)
- allowCaseDifferingFilenames :: PrimDarcsOption Bool
- allowWindowsReservedFilenames :: PrimDarcsOption Bool
- onlyToFiles :: PrimDarcsOption Bool
- useIndex :: PrimDarcsOption UseIndex
- recursive :: PrimDarcsOption Bool
- data DiffAlgorithm
- diffAlgorithm :: PrimDarcsOption DiffAlgorithm
- data WithContext
- withContext :: PrimDarcsOption WithContext
- data ExternalDiff = ExternalDiff {}
- extDiff :: PrimDarcsOption ExternalDiff
- data TestChanges
- testChanges :: PrimDarcsOption TestChanges
- data RunTest
- runTest :: PrimDarcsOption RunTest
- data LeaveTestDir
- leaveTestDir :: PrimDarcsOption LeaveTestDir
- data HeaderFields = HeaderFields {}
- headerFields :: PrimDarcsOption HeaderFields
- sendToContext :: PrimDarcsOption (Maybe AbsolutePath)
- mail :: PrimDarcsOption Bool
- sendmailCmd :: PrimDarcsOption (Maybe String)
- charset :: PrimDarcsOption (Maybe String)
- editDescription :: PrimDarcsOption Bool
- applyAs :: PrimDarcsOption (Maybe String)
- data Sign
- sign :: PrimDarcsOption Sign
- data Verify
- verify :: PrimDarcsOption Verify
- data AllowConflicts
- conflictsNo :: PrimDarcsOption (Maybe AllowConflicts)
- conflictsYes :: PrimDarcsOption (Maybe AllowConflicts)
- data ExternalMerge
- externalMerge :: PrimDarcsOption ExternalMerge
- reorder :: PrimDarcsOption Reorder
- data Compression
- compress :: PrimDarcsOption Compression
- usePacks :: PrimDarcsOption Bool
- data WithPatchIndex
- patchIndexNo :: PrimDarcsOption WithPatchIndex
- patchIndexYes :: PrimDarcsOption WithPatchIndex
- data Reorder
- minimize :: PrimDarcsOption Bool
- storeInMemory :: PrimDarcsOption Bool
- data Output
- output :: PrimDarcsOption (Maybe Output)
- data WithSummary
- withSummary :: PrimDarcsOption WithSummary
- maybeSummary :: Maybe WithSummary -> PrimDarcsOption (Maybe WithSummary)
- data RemoteDarcs
- data NetworkOptions = NetworkOptions {}
- network :: PrimDarcsOption NetworkOptions
- data UMask
- umask :: PrimDarcsOption UMask
- data SetScriptsExecutable
- setScriptsExecutable :: PrimDarcsOption SetScriptsExecutable
- amendUnrecord :: PrimDarcsOption Bool
- selectAuthor :: PrimDarcsOption Bool
- machineReadable :: PrimDarcsOption Bool
- data CloneKind
- cloneKind :: PrimDarcsOption CloneKind
- distname :: PrimDarcsOption (Maybe String)
- distzip :: PrimDarcsOption Bool
- marks :: DarcsOption a (Maybe String -> Maybe String -> a)
- readMarks :: PrimDarcsOption (Maybe String)
- writeMarks :: PrimDarcsOption (Maybe String)
- data PatchFormat
- patchFormat :: PrimDarcsOption PatchFormat
- hashed :: PrimDarcsOption ()
- data ChangesFormat
- changesFormat :: PrimDarcsOption (Maybe ChangesFormat)
- tokens :: PrimDarcsOption (Maybe String)
- forceReplace :: PrimDarcsOption Bool
- data TestStrategy
- testStrategy :: PrimDarcsOption TestStrategy
- files :: PrimDarcsOption Bool
- directories :: PrimDarcsOption Bool
- pending :: PrimDarcsOption Bool
- nullFlag :: PrimDarcsOption Bool
- data EnumPatches
- enumPatches :: PrimDarcsOption EnumPatches
- data GzcrcsAction
- gzcrcsActions :: PrimDarcsOption (Maybe GzcrcsAction)
- siblings :: PrimDarcsOption [AbsolutePath]
Documentation
type DarcsOption = OptSpec DarcsOptDescr Flag Source #
DarcsOption instantiates the first two type parameters of OptSpec to
what we need in darcs. The first parameter is instantiated to
The flag type is instantiate to Flag.
Minimal complete definition
Instances
| YesNo Compression Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo DryRun Source # | |
| YesNo IncludeBoring Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo InheritDefault Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo LeaveTestDir Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo LookForAdds Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo LookForMoves Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo LookForReplaces Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo Reorder Source # | |
| YesNo RunTest Source # | |
| YesNo SetScriptsExecutable Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo UseCache Source # | |
| YesNo UseIndex Source # | |
| YesNo WantGuiPause Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo WithPatchIndex Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo WithWorkingDir Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo EnumPatches Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo WithContext Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo WithSummary Source # | |
Defined in Darcs.UI.Options.All | |
| YesNo XmlOutput Source # | |
data RootAction Source #
Options for darcs iself that act like sub-commands.
Constructors
| RootHelp | |
| Version | |
| ExactVersion | |
| ListCommands |
Instances
| Show RootAction Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> RootAction -> ShowS # show :: RootAction -> String # showList :: [RootAction] -> ShowS # | |
| Eq RootAction Source # | |
Defined in Darcs.UI.Options.All | |
data StdCmdAction Source #
Constructors
| Help | |
| ListOptions | |
| Disable |
Instances
| Show StdCmdAction Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> StdCmdAction -> ShowS # show :: StdCmdAction -> String # showList :: [StdCmdAction] -> ShowS # | |
| Eq StdCmdAction Source # | |
Defined in Darcs.UI.Options.All | |
data HooksConfig Source #
Constructors
| HooksConfig | |
Fields
| |
data HookConfig Source #
preHook :: DarcsOption a (HookConfig -> a) Source #
postHook :: DarcsOption a (HookConfig -> a) Source #
hooks :: DarcsOption a (HooksConfig -> a) Source #
Constructors
| YesUseCache | |
| NoUseCache |
dryRun :: PrimDarcsOption DryRun Source #
TODO someone wrote here long ago that any time --dry-run is a possibility automated users should be able to examine the results more easily with --xml. See also issue2397. dryRun w/o xml is currently used in add, pull, and repair.
data WantGuiPause Source #
Constructors
| YesWantGuiPause | |
| NoWantGuiPause |
Instances
| Show WantGuiPause Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> WantGuiPause -> ShowS # show :: WantGuiPause -> String # showList :: [WantGuiPause] -> ShowS # | |
| YesNo WantGuiPause Source # | |
Defined in Darcs.UI.Options.All | |
| Eq WantGuiPause Source # | |
Defined in Darcs.Repository.Flags | |
module Darcs.UI.Options.Matching
data SelectDeps Source #
Constructors
| NoDeps | |
| AutoDeps | |
| PromptDeps |
Instances
| Show SelectDeps Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> SelectDeps -> ShowS # show :: SelectDeps -> String # showList :: [SelectDeps] -> ShowS # | |
| Eq SelectDeps Source # | |
Defined in Darcs.UI.Options.All | |
data RemoteRepos Source #
Constructors
| RemoteRepos [String] |
Instances
| Show RemoteRepos Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> RemoteRepos -> ShowS # show :: RemoteRepos -> String # showList :: [RemoteRepos] -> ShowS # | |
| Eq RemoteRepos Source # | |
Defined in Darcs.Repository.Flags | |
newRepo :: PrimDarcsOption (Maybe String) Source #
This option is for when a new repo gets created. Used for clone, convert import, convert darcs-2, and initialize. For clone and initialize it has the same effect as giving the name as a normal argument.
The --repodir alias is there for compatibility, should be removed eventually.
TODO We need a way to deprecate options / option names.
data NotInRemote Source #
Constructors
| NotInDefaultRepo | |
| NotInRemotePath String |
data RepoCombinator Source #
Constructors
| Intersection | |
| Union | |
| Complement |
Instances
| Show RepoCombinator Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> RepoCombinator -> ShowS # show :: RepoCombinator -> String # showList :: [RepoCombinator] -> ShowS # | |
| Eq RepoCombinator Source # | |
Defined in Darcs.UI.Options.All Methods (==) :: RepoCombinator -> RepoCombinator -> Bool # (/=) :: RepoCombinator -> RepoCombinator -> Bool # | |
data WithWorkingDir Source #
Constructors
| WithWorkingDir | |
| NoWorkingDir |
Instances
| Show WithWorkingDir Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> WithWorkingDir -> ShowS # show :: WithWorkingDir -> String # showList :: [WithWorkingDir] -> ShowS # | |
| YesNo WithWorkingDir Source # | |
Defined in Darcs.UI.Options.All | |
| Eq WithWorkingDir Source # | |
Defined in Darcs.Repository.Flags Methods (==) :: WithWorkingDir -> WithWorkingDir -> Bool # (/=) :: WithWorkingDir -> WithWorkingDir -> Bool # | |
withWorkingDir :: PrimDarcsOption WithWorkingDir Source #
convert, clone, init
data SetDefault Source #
Constructors
| YesSetDefault Bool | |
| NoSetDefault Bool |
Instances
| Show SetDefault Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> SetDefault -> ShowS # show :: SetDefault -> String # showList :: [SetDefault] -> ShowS # | |
| Eq SetDefault Source # | |
Defined in Darcs.Repository.Flags | |
data InheritDefault Source #
Constructors
| YesInheritDefault | |
| NoInheritDefault |
Instances
| Show InheritDefault Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> InheritDefault -> ShowS # show :: InheritDefault -> String # showList :: [InheritDefault] -> ShowS # | |
| YesNo InheritDefault Source # | |
Defined in Darcs.UI.Options.All | |
| Eq InheritDefault Source # | |
Defined in Darcs.Repository.Flags Methods (==) :: InheritDefault -> InheritDefault -> Bool # (/=) :: InheritDefault -> InheritDefault -> Bool # | |
data AskLongComment Source #
Constructors
| NoEditLongComment | |
| YesEditLongComment | |
| PromptLongComment |
Instances
| Show AskLongComment Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> AskLongComment -> ShowS # show :: AskLongComment -> String # showList :: [AskLongComment] -> ShowS # | |
| Eq AskLongComment Source # | |
Defined in Darcs.UI.Options.All Methods (==) :: AskLongComment -> AskLongComment -> Bool # (/=) :: AskLongComment -> AskLongComment -> Bool # | |
Constructors
| Logfile | |
Fields
| |
Constructors
| LookFor | |
Fields
| |
data LookForAdds Source #
Constructors
| YesLookForAdds | |
| NoLookForAdds |
Instances
| Show LookForAdds Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> LookForAdds -> ShowS # show :: LookForAdds -> String # showList :: [LookForAdds] -> ShowS # | |
| YesNo LookForAdds Source # | |
Defined in Darcs.UI.Options.All | |
| Eq LookForAdds Source # | |
Defined in Darcs.Repository.Flags | |
data LookForMoves Source #
Constructors
| YesLookForMoves | |
| NoLookForMoves |
Instances
| Show LookForMoves Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> LookForMoves -> ShowS # show :: LookForMoves -> String # showList :: [LookForMoves] -> ShowS # | |
| YesNo LookForMoves Source # | |
Defined in Darcs.UI.Options.All | |
| Eq LookForMoves Source # | |
Defined in Darcs.Repository.Flags | |
data LookForReplaces Source #
Constructors
| YesLookForReplaces | |
| NoLookForReplaces |
Instances
| Show LookForReplaces Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> LookForReplaces -> ShowS # show :: LookForReplaces -> String # showList :: [LookForReplaces] -> ShowS # | |
| YesNo LookForReplaces Source # | |
Defined in Darcs.UI.Options.All | |
| Eq LookForReplaces Source # | |
Defined in Darcs.Repository.Flags Methods (==) :: LookForReplaces -> LookForReplaces -> Bool # (/=) :: LookForReplaces -> LookForReplaces -> Bool # | |
Constructors
| UseIndex | |
| IgnoreIndex |
Constructors
| ScanKnown | Just files already known to darcs |
| ScanAll | All files, i.e. look for new ones |
| ScanBoring | All files, even boring ones |
data IncludeBoring Source #
Constructors
| YesIncludeBoring | |
| NoIncludeBoring |
Instances
| Show IncludeBoring Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> IncludeBoring -> ShowS # show :: IncludeBoring -> String # showList :: [IncludeBoring] -> ShowS # | |
| YesNo IncludeBoring Source # | |
Defined in Darcs.UI.Options.All | |
| Eq IncludeBoring Source # | |
Defined in Darcs.Repository.Flags Methods (==) :: IncludeBoring -> IncludeBoring -> Bool # (/=) :: IncludeBoring -> IncludeBoring -> Bool # | |
allowProblematicFilenames :: DarcsOption a (Bool -> Bool -> a) Source #
onlyToFiles :: PrimDarcsOption Bool Source #
TODO: see issue2395
data DiffAlgorithm Source #
Constructors
| PatienceDiff | |
| MyersDiff |
Instances
| Show DiffAlgorithm Source # | |
Defined in Darcs.Util.Diff Methods showsPrec :: Int -> DiffAlgorithm -> ShowS # show :: DiffAlgorithm -> String # showList :: [DiffAlgorithm] -> ShowS # | |
| Eq DiffAlgorithm Source # | |
Defined in Darcs.Util.Diff Methods (==) :: DiffAlgorithm -> DiffAlgorithm -> Bool # (/=) :: DiffAlgorithm -> DiffAlgorithm -> Bool # | |
data WithContext Source #
Constructors
| NoContext | |
| YesContext |
Instances
| Show WithContext Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> WithContext -> ShowS # show :: WithContext -> String # showList :: [WithContext] -> ShowS # | |
| YesNo WithContext Source # | |
Defined in Darcs.UI.Options.All | |
| Eq WithContext Source # | |
Defined in Darcs.UI.Options.All | |
data ExternalDiff Source #
Constructors
| ExternalDiff | |
Instances
| Show ExternalDiff Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> ExternalDiff -> ShowS # show :: ExternalDiff -> String # showList :: [ExternalDiff] -> ShowS # | |
| Eq ExternalDiff Source # | |
Defined in Darcs.UI.Options.All | |
data TestChanges Source #
Constructors
| NoTestChanges | |
| YesTestChanges LeaveTestDir |
Instances
| Eq TestChanges Source # | |
Defined in Darcs.UI.Options.All | |
Constructors
| YesRunTest | |
| NoRunTest |
data LeaveTestDir Source #
Constructors
| YesLeaveTestDir | |
| NoLeaveTestDir |
Instances
| Show LeaveTestDir Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> LeaveTestDir -> ShowS # show :: LeaveTestDir -> String # showList :: [LeaveTestDir] -> ShowS # | |
| YesNo LeaveTestDir Source # | |
Defined in Darcs.UI.Options.All | |
| Eq LeaveTestDir Source # | |
Defined in Darcs.Repository.Flags | |
data HeaderFields Source #
Constructors
| HeaderFields | |
Constructors
| NoVerify | |
| VerifyKeyring AbsolutePath | |
| VerifySSL AbsolutePath |
data AllowConflicts Source #
Instances
| Show AllowConflicts Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> AllowConflicts -> ShowS # show :: AllowConflicts -> String # showList :: [AllowConflicts] -> ShowS # | |
| Eq AllowConflicts Source # | |
Defined in Darcs.Repository.Flags Methods (==) :: AllowConflicts -> AllowConflicts -> Bool # (/=) :: AllowConflicts -> AllowConflicts -> Bool # | |
conflictsNo :: PrimDarcsOption (Maybe AllowConflicts) Source #
push, apply, rebase apply: default to NoAllowConflicts
conflictsYes :: PrimDarcsOption (Maybe AllowConflicts) Source #
pull, rebase pull: default to YesAllowConflictsAndMark
data ExternalMerge Source #
Constructors
| YesExternalMerge String | |
| NoExternalMerge |
Instances
| Show ExternalMerge Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> ExternalMerge -> ShowS # show :: ExternalMerge -> String # showList :: [ExternalMerge] -> ShowS # | |
| Eq ExternalMerge Source # | |
Defined in Darcs.Repository.Flags Methods (==) :: ExternalMerge -> ExternalMerge -> Bool # (/=) :: ExternalMerge -> ExternalMerge -> Bool # | |
reorder :: PrimDarcsOption Reorder Source #
pull, apply, rebase pull, rebase apply
data Compression Source #
Constructors
| NoCompression | |
| GzipCompression |
Instances
| Show Compression Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> Compression -> ShowS # show :: Compression -> String # showList :: [Compression] -> ShowS # | |
| YesNo Compression Source # | |
Defined in Darcs.UI.Options.All | |
| Eq Compression Source # | |
Defined in Darcs.Repository.Flags | |
data WithPatchIndex Source #
Constructors
| YesPatchIndex | |
| NoPatchIndex |
Instances
| Show WithPatchIndex Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> WithPatchIndex -> ShowS # show :: WithPatchIndex -> String # showList :: [WithPatchIndex] -> ShowS # | |
| YesNo WithPatchIndex Source # | |
Defined in Darcs.UI.Options.All | |
| Eq WithPatchIndex Source # | |
Defined in Darcs.Repository.Flags Methods (==) :: WithPatchIndex -> WithPatchIndex -> Bool # (/=) :: WithPatchIndex -> WithPatchIndex -> Bool # | |
Constructors
| Output AbsolutePathOrStd | |
| OutputAutoName AbsolutePath |
data WithSummary Source #
Constructors
| NoSummary | |
| YesSummary |
Instances
| Show WithSummary Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> WithSummary -> ShowS # show :: WithSummary -> String # showList :: [WithSummary] -> ShowS # | |
| YesNo WithSummary Source # | |
Defined in Darcs.UI.Options.All | |
| Eq WithSummary Source # | |
Defined in Darcs.UI.Options.All | |
data RemoteDarcs Source #
Constructors
| RemoteDarcs String | |
| DefaultRemoteDarcs |
Instances
| Show RemoteDarcs Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> RemoteDarcs -> ShowS # show :: RemoteDarcs -> String # showList :: [RemoteDarcs] -> ShowS # | |
| Eq RemoteDarcs Source # | |
Defined in Darcs.Repository.Flags | |
data NetworkOptions Source #
TODO: reconsider this grouping of options
Constructors
| NetworkOptions | |
Fields | |
data SetScriptsExecutable Source #
Constructors
| YesSetScriptsExecutable | |
| NoSetScriptsExecutable |
Instances
| Show SetScriptsExecutable Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> SetScriptsExecutable -> ShowS # show :: SetScriptsExecutable -> String # showList :: [SetScriptsExecutable] -> ShowS # | |
| YesNo SetScriptsExecutable Source # | |
Defined in Darcs.UI.Options.All | |
| Eq SetScriptsExecutable Source # | |
Defined in Darcs.Repository.Flags Methods (==) :: SetScriptsExecutable -> SetScriptsExecutable -> Bool # (/=) :: SetScriptsExecutable -> SetScriptsExecutable -> Bool # | |
Constructors
| LazyClone | Just copy pristine and inventories |
| NormalClone | First do a lazy clone then copy everything |
| CompleteClone | Same as Normal but omit telling user they can interrumpt |
data PatchFormat Source #
Constructors
| PatchFormat1 | |
| PatchFormat2 | |
| PatchFormat3 |
Instances
| Show PatchFormat Source # | |
Defined in Darcs.Repository.Flags Methods showsPrec :: Int -> PatchFormat -> ShowS # show :: PatchFormat -> String # showList :: [PatchFormat] -> ShowS # | |
| Eq PatchFormat Source # | |
Defined in Darcs.Repository.Flags | |
hashed :: PrimDarcsOption () Source #
Deprecated flag, still present to output an error message.
data ChangesFormat Source #
Instances
| Show ChangesFormat Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> ChangesFormat -> ShowS # show :: ChangesFormat -> String # showList :: [ChangesFormat] -> ShowS # | |
| Eq ChangesFormat Source # | |
Defined in Darcs.UI.Options.All Methods (==) :: ChangesFormat -> ChangesFormat -> Bool # (/=) :: ChangesFormat -> ChangesFormat -> Bool # | |
data TestStrategy Source #
Instances
| Show TestStrategy Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> TestStrategy -> ShowS # show :: TestStrategy -> String # showList :: [TestStrategy] -> ShowS # | |
| Eq TestStrategy Source # | |
Defined in Darcs.UI.Options.All | |
data EnumPatches Source #
Constructors
| NoEnumPatches | |
| YesEnumPatches |
Instances
| Show EnumPatches Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> EnumPatches -> ShowS # show :: EnumPatches -> String # showList :: [EnumPatches] -> ShowS # | |
| YesNo EnumPatches Source # | |
Defined in Darcs.UI.Options.All | |
| Eq EnumPatches Source # | |
Defined in Darcs.UI.Options.All | |
data GzcrcsAction Source #
Constructors
| GzcrcsCheck | |
| GzcrcsRepair |
Instances
| Show GzcrcsAction Source # | |
Defined in Darcs.UI.Options.All Methods showsPrec :: Int -> GzcrcsAction -> ShowS # show :: GzcrcsAction -> String # showList :: [GzcrcsAction] -> ShowS # | |
| Eq GzcrcsAction Source # | |
Defined in Darcs.UI.Options.All | |