let url claims optionally include a suggested filename
This commit is contained in:
parent
7c9149a44f
commit
85df9c30e9
11 changed files with 67 additions and 26 deletions
|
@ -25,6 +25,7 @@ import Types.UUID
|
|||
import Types.GitConfig
|
||||
import Types.Availability
|
||||
import Types.Creds
|
||||
import Types.URLClaim
|
||||
import Config.Cost
|
||||
import Utility.Metered
|
||||
import Git.Types
|
||||
|
@ -103,7 +104,7 @@ data RemoteA a = Remote {
|
|||
-- Information about the remote, for git annex info to display.
|
||||
getInfo :: a [(String, String)],
|
||||
-- Some remotes can download from an url (or uri).
|
||||
claimUrl :: Maybe (URLString -> a Bool),
|
||||
claimUrl :: Maybe (URLString -> a (Maybe URLClaim)),
|
||||
-- Checks that the url is accessible, and gets the size of its
|
||||
-- content. Returns Nothing if the url is accessible, but
|
||||
-- its size cannot be determined inexpensively.
|
||||
|
|
11
Types/URLClaim.hs
Normal file
11
Types/URLClaim.hs
Normal file
|
@ -0,0 +1,11 @@
|
|||
{- git-annex url claiming
|
||||
-
|
||||
- Copyright 2014 Joey Hess <joey@kitenet.net>
|
||||
-
|
||||
- Licensed under the GNU GPL version 3 or higher.
|
||||
-}
|
||||
|
||||
module Types.URLClaim where
|
||||
|
||||
data URLClaim = URLClaimed | URLClaimedAs FilePath
|
||||
deriving (Eq)
|
Loading…
Add table
Add a link
Reference in a new issue