rename
This commit is contained in:
parent
6040d8aed1
commit
c98b5cf36e
11 changed files with 12 additions and 12 deletions
|
@ -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
|
||||||
|
|
|
@ -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]
|
||||||
|
|
|
@ -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]
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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
|
|
@ -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)
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue