darcs-2.8.4: a distributed, interactive, smart revision control system

Safe HaskellNone

Darcs.Patch.Show

Documentation

class ShowPatchBasic p => ShowPatch p where

Methods

showNicely :: p x y -> Doc

showContextPatch :: (Monad m, ApplyMonadTrans m (ApplyState p), ApplyMonad m (ApplyState p)) => p x y -> m Doc

showContextPatch is used to add context to a patch, as diff -u does. Thus, it differs from showPatch only for hunks. It is used for instance before putting it into a bundle. As this unified context is not included in patch representation, this requires access to the tree.

description :: p x y -> Doc

summary :: p x y -> Doc

summaryFL :: FL p x y -> Doc

thing :: p x y -> String

things :: p x y -> String

writePatch :: ShowPatchBasic p => FilePath -> p x y -> IO ()

gzWritePatch :: ShowPatchBasic p => FilePath -> p x y -> IO ()