summaryrefslogtreecommitdiff
path: root/Types/UrlContents.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Types/UrlContents.hs')
-rw-r--r--Types/UrlContents.hs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Types/UrlContents.hs b/Types/UrlContents.hs
new file mode 100644
index 000000000..81b195fe3
--- /dev/null
+++ b/Types/UrlContents.hs
@@ -0,0 +1,19 @@
+{- git-annex URL contents
+ -
+ - Copyright 2014 Joey Hess <joey@kitenet.net>
+ -
+ - Licensed under the GNU GPL version 3 or higher.
+ -}
+
+module Types.UrlContents where
+
+import Utility.Url
+
+data UrlContents
+ -- An URL contains a file, whose size may be known.
+ -- A default filename will be provided, and can be overridded
+ -- or built on.
+ = UrlContents (Maybe Integer) (FilePath -> FilePath)
+ -- Sometimes an URL points to multiple files, each accessible
+ -- by their own URL.
+ | UrlNested [(URLString, UrlContents)]