This commit is contained in:
Joey Hess 2011-07-05 20:36:43 -04:00
parent c98b5cf36e
commit cab4ac247c
9 changed files with 11 additions and 11 deletions

View file

@ -26,7 +26,7 @@ import Content
import LocationLog import LocationLog
import Locations import Locations
import Trust import Trust
import DataUnits import Utility.DataUnits
import Config import Config
command :: [Command] command :: [Command]

View file

@ -21,8 +21,8 @@ import Types
import Utility import Utility
import UUID import UUID
import Trust import Trust
import Ssh import Remote.Ssh
import qualified Dot import qualified Utility.Dot as Dot
-- a link from the first repository to the second (its remote) -- a link from the first repository to the second (its remote)
data Link = Link Git.Repo Git.Repo data Link = Link Git.Repo Git.Repo

View file

@ -21,7 +21,7 @@ import qualified Command.Unused
import qualified Git import qualified Git
import Command import Command
import Types import Types
import DataUnits import Utility.DataUnits
import Content import Content
import Types.Key import Types.Key
import Locations import Locations

View file

@ -43,7 +43,7 @@ import qualified Branch
import Utility import Utility
import StatFS import StatFS
import Types.Key import Types.Key
import DataUnits import Utility.DataUnits
import Config import Config
{- Checks if a given key is currently present in the gitAnnexLocation. -} {- Checks if a given key is currently present in the gitAnnexLocation. -}

View file

@ -28,7 +28,7 @@ import Locations
import Config import Config
import Utility import Utility
import Messages import Messages
import Ssh import Remote.Ssh
import Remote.Special import Remote.Special
import Remote.Encryptable import Remote.Encryptable
import Crypto import Crypto

View file

@ -24,7 +24,7 @@ import qualified Content
import Messages import Messages
import Utility.CopyFile import Utility.CopyFile
import Utility.RsyncFile import Utility.RsyncFile
import Ssh import Remote.Ssh
import Config import Config
remote :: RemoteType Annex remote :: RemoteType Annex

View file

@ -1,11 +1,11 @@
{- git-annex repository access with ssh {- git-annex remote access with ssh
- -
- Copyright 2011 Joey Hess <joey@kitenet.net> - Copyright 2011 Joey Hess <joey@kitenet.net>
- -
- Licensed under the GNU GPL version 3 or higher. - Licensed under the GNU GPL version 3 or higher.
-} -}
module Ssh where module Remote.Ssh where
import Control.Monad.State (liftIO) import Control.Monad.State (liftIO)

View file

@ -5,7 +5,7 @@
- Licensed under the GNU GPL version 3 or higher. - Licensed under the GNU GPL version 3 or higher.
-} -}
module DataUnits ( module Utility.DataUnits (
dataUnits, dataUnits,
storageUnits, storageUnits,
memoryUnits, memoryUnits,

View file

@ -5,7 +5,7 @@
- Licensed under the GNU GPL version 3 or higher. - Licensed under the GNU GPL version 3 or higher.
-} -}
module Dot where -- import qualified module Utility.Dot where -- import qualified
{- generates a graph description from a list of lines -} {- generates a graph description from a list of lines -}
graph :: [String] -> String graph :: [String] -> String