This commit is contained in:
Joey Hess 2011-07-05 20:24:10 -04:00
parent 6040d8aed1
commit c98b5cf36e
11 changed files with 12 additions and 12 deletions

View file

@ -14,7 +14,7 @@ import Command
import CmdLine import CmdLine
import Content import Content
import Utility import Utility
import RsyncFile import Utility.RsyncFile
command :: [Command] command :: [Command]
command = [repoCommand "recvkey" paramKey seek command = [repoCommand "recvkey" paramKey seek

View file

@ -15,7 +15,7 @@ import qualified Annex
import Command import Command
import Content import Content
import Utility import Utility
import RsyncFile import Utility.RsyncFile
import Messages import Messages
command :: [Command] command :: [Command]

View file

@ -16,7 +16,7 @@ import Types
import Messages import Messages
import Locations import Locations
import Content import Content
import CopyFile import Utility.CopyFile
import Utility import Utility
command :: [Command] command :: [Command]

View file

@ -46,7 +46,7 @@ import Types
import Types.Key import Types.Key
import Types.Remote import Types.Remote
import Utility import Utility
import Base64 import Utility.Base64
import Types.Crypto import Types.Crypto
{- The first half of a Cipher is used for HMAC; the remainder {- The first half of a Cipher is used for HMAC; the remainder

View file

@ -22,7 +22,7 @@ import qualified Git
import qualified Annex import qualified Annex
import UUID import UUID
import Locations import Locations
import CopyFile import Utility.CopyFile
import Config import Config
import Content import Content
import Utility import Utility

View file

@ -22,8 +22,8 @@ import UUID
import Utility import Utility
import qualified Content import qualified Content
import Messages import Messages
import CopyFile import Utility.CopyFile
import RsyncFile import Utility.RsyncFile
import Ssh import Ssh
import Config import Config

View file

@ -29,7 +29,7 @@ import Remote.Special
import Remote.Encryptable import Remote.Encryptable
import Crypto import Crypto
import Messages import Messages
import RsyncFile import Utility.RsyncFile
type RsyncUrl = String type RsyncUrl = String

View file

@ -37,7 +37,7 @@ import Remote.Special
import Remote.Encryptable import Remote.Encryptable
import Crypto import Crypto
import Content import Content
import Base64 import Utility.Base64
remote :: RemoteType Annex remote :: RemoteType Annex
remote = RemoteType { remote = RemoteType {

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 Base64 (toB64, fromB64) where module Utility.Base64 (toB64, fromB64) where
import Codec.Binary.Base64 import Codec.Binary.Base64
import Data.Bits.Utils import Data.Bits.Utils

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 CopyFile (copyFile) where module Utility.CopyFile (copyFile) where
import System.Directory (doesFileExist, removeFile) import System.Directory (doesFileExist, removeFile)

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 RsyncFile where module Utility.RsyncFile where
import Data.String.Utils import Data.String.Utils