diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-05 20:24:10 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-05 20:24:10 -0400 |
commit | c98b5cf36e785cdf2c971eaf9b0329db06b68ef8 (patch) | |
tree | 9f7e69b1a57bccdb0ef446035d6579fdd3938fe1 | |
parent | 6040d8aed17de582f5d5c179040e29c599315e31 (diff) |
rename
-rw-r--r-- | Command/RecvKey.hs | 2 | ||||
-rw-r--r-- | Command/SendKey.hs | 2 | ||||
-rw-r--r-- | Command/Unlock.hs | 2 | ||||
-rw-r--r-- | Crypto.hs | 2 | ||||
-rw-r--r-- | Remote/Directory.hs | 2 | ||||
-rw-r--r-- | Remote/Git.hs | 4 | ||||
-rw-r--r-- | Remote/Rsync.hs | 2 | ||||
-rw-r--r-- | Remote/S3real.hs | 2 | ||||
-rw-r--r-- | Utility/Base64.hs (renamed from Base64.hs) | 2 | ||||
-rw-r--r-- | Utility/CopyFile.hs (renamed from CopyFile.hs) | 2 | ||||
-rw-r--r-- | Utility/RsyncFile.hs (renamed from RsyncFile.hs) | 2 |
11 files changed, 12 insertions, 12 deletions
diff --git a/Command/RecvKey.hs b/Command/RecvKey.hs index b49116de4..e2f7c74ab 100644 --- a/Command/RecvKey.hs +++ b/Command/RecvKey.hs @@ -14,7 +14,7 @@ import Command import CmdLine import Content import Utility -import RsyncFile +import Utility.RsyncFile command :: [Command] command = [repoCommand "recvkey" paramKey seek diff --git a/Command/SendKey.hs b/Command/SendKey.hs index c2f793f8f..02fedb349 100644 --- a/Command/SendKey.hs +++ b/Command/SendKey.hs @@ -15,7 +15,7 @@ import qualified Annex import Command import Content import Utility -import RsyncFile +import Utility.RsyncFile import Messages command :: [Command] diff --git a/Command/Unlock.hs b/Command/Unlock.hs index 8a897c365..d189545f5 100644 --- a/Command/Unlock.hs +++ b/Command/Unlock.hs @@ -16,7 +16,7 @@ import Types import Messages import Locations import Content -import CopyFile +import Utility.CopyFile import Utility command :: [Command] @@ -46,7 +46,7 @@ import Types import Types.Key import Types.Remote import Utility -import Base64 +import Utility.Base64 import Types.Crypto {- The first half of a Cipher is used for HMAC; the remainder diff --git a/Remote/Directory.hs b/Remote/Directory.hs index 991ccbe48..05d42136f 100644 --- a/Remote/Directory.hs +++ b/Remote/Directory.hs @@ -22,7 +22,7 @@ import qualified Git import qualified Annex import UUID import Locations -import CopyFile +import Utility.CopyFile import Config import Content import Utility diff --git a/Remote/Git.hs b/Remote/Git.hs index b4006d7fd..4a8f8ee92 100644 --- a/Remote/Git.hs +++ b/Remote/Git.hs @@ -22,8 +22,8 @@ import UUID import Utility import qualified Content import Messages -import CopyFile -import RsyncFile +import Utility.CopyFile +import Utility.RsyncFile import Ssh import Config diff --git a/Remote/Rsync.hs b/Remote/Rsync.hs index aa2507fff..80e194fed 100644 --- a/Remote/Rsync.hs +++ b/Remote/Rsync.hs @@ -29,7 +29,7 @@ import Remote.Special import Remote.Encryptable import Crypto import Messages -import RsyncFile +import Utility.RsyncFile type RsyncUrl = String diff --git a/Remote/S3real.hs b/Remote/S3real.hs index 829c58ad0..52d1ed1be 100644 --- a/Remote/S3real.hs +++ b/Remote/S3real.hs @@ -37,7 +37,7 @@ import Remote.Special import Remote.Encryptable import Crypto import Content -import Base64 +import Utility.Base64 remote :: RemoteType Annex remote = RemoteType { diff --git a/Base64.hs b/Utility/Base64.hs index 153049751..dd739fd4f 100644 --- a/Base64.hs +++ b/Utility/Base64.hs @@ -5,7 +5,7 @@ - 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 Data.Bits.Utils diff --git a/CopyFile.hs b/Utility/CopyFile.hs index b08ede3c8..5ee4a91df 100644 --- a/CopyFile.hs +++ b/Utility/CopyFile.hs @@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -module CopyFile (copyFile) where +module Utility.CopyFile (copyFile) where import System.Directory (doesFileExist, removeFile) diff --git a/RsyncFile.hs b/Utility/RsyncFile.hs index 48d927fcf..c68909d2d 100644 --- a/RsyncFile.hs +++ b/Utility/RsyncFile.hs @@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -module RsyncFile where +module Utility.RsyncFile where import Data.String.Utils |