diff --git a/Annex.hs b/Annex.hs index 1963d19c69..0e8ec2b7bc 100644 --- a/Annex.hs +++ b/Annex.hs @@ -1,4 +1,9 @@ -{- git-annex monad -} +{- git-annex monad + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module Annex ( new, diff --git a/Backend.hs b/Backend.hs index c70b7b707b..b7c52ddec4 100644 --- a/Backend.hs +++ b/Backend.hs @@ -11,7 +11,11 @@ - - Multiple pluggable backends are supported, and more than one can be used - to store different files' contents in a given repository. - - -} + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module Backend ( list, diff --git a/Backend/File.hs b/Backend/File.hs index 4273ba36be..4b9a3b45b5 100644 --- a/Backend/File.hs +++ b/Backend/File.hs @@ -6,6 +6,10 @@ - - This is an abstract backend; getKey has to be implemented to complete - it. + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. -} module Backend.File (backend) where diff --git a/Backend/SHA1.hs b/Backend/SHA1.hs index 9e8d6df6dd..f6daeffec4 100644 --- a/Backend/SHA1.hs +++ b/Backend/SHA1.hs @@ -1,5 +1,9 @@ {- git-annex "SHA1" backend - - -} + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module Backend.SHA1 (backend) where diff --git a/Backend/URL.hs b/Backend/URL.hs index c9b6ab6df8..fd55ddf01e 100644 --- a/Backend/URL.hs +++ b/Backend/URL.hs @@ -1,5 +1,9 @@ {- git-annex "URL" backend - - -} + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module Backend.URL (backend) where diff --git a/Backend/WORM.hs b/Backend/WORM.hs index 0588ddaf83..b5ae11807e 100644 --- a/Backend/WORM.hs +++ b/Backend/WORM.hs @@ -1,5 +1,9 @@ {- git-annex "WORM" backend -- Write Once, Read Many - - -} + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module Backend.WORM (backend) where diff --git a/BackendList.hs b/BackendList.hs index 25f3ae5eac..e628e3a612 100644 --- a/BackendList.hs +++ b/BackendList.hs @@ -1,5 +1,9 @@ {- git-annex backend list - - -} + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module BackendList (allBackends) where diff --git a/Commands.hs b/Commands.hs index b6bc6dfc22..6974b697c3 100644 --- a/Commands.hs +++ b/Commands.hs @@ -1,4 +1,9 @@ -{- git-annex command line -} +{- git-annex command line + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module Commands (parseCmd) where diff --git a/Core.hs b/Core.hs index 254bcec517..e0993a53e7 100644 --- a/Core.hs +++ b/Core.hs @@ -1,4 +1,9 @@ -{- git-annex core functions -} +{- git-annex core functions + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module Core where diff --git a/GitQueue.hs b/GitQueue.hs index 34a89f17b7..6a68edb25b 100644 --- a/GitQueue.hs +++ b/GitQueue.hs @@ -1,4 +1,8 @@ {- git repository command queue + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. -} module GitQueue ( diff --git a/GitRepo.hs b/GitRepo.hs index 9418102355..229b76847f 100644 --- a/GitRepo.hs +++ b/GitRepo.hs @@ -3,6 +3,9 @@ - This is written to be completely independant of git-annex and should be - suitable for other uses. - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. -} module GitRepo ( diff --git a/LocationLog.hs b/LocationLog.hs index d027c4b809..10a6377080 100644 --- a/LocationLog.hs +++ b/LocationLog.hs @@ -14,6 +14,10 @@ - - Git is configured to use a union merge for this file, - so the lines may be in arbitrary order, but it will never conflict. + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. -} module LocationLog ( diff --git a/Locations.hs b/Locations.hs index 970f89aa8d..49ee878c85 100644 --- a/Locations.hs +++ b/Locations.hs @@ -1,4 +1,8 @@ {- git-annex file locations + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. -} module Locations ( diff --git a/Remotes.hs b/Remotes.hs index 8f4fcf0f0c..665de38ae5 100644 --- a/Remotes.hs +++ b/Remotes.hs @@ -1,4 +1,9 @@ -{- git-annex remote repositories -} +{- git-annex remote repositories + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module Remotes ( list, diff --git a/TypeInternals.hs b/TypeInternals.hs index d4404fd390..f45be4760c 100644 --- a/TypeInternals.hs +++ b/TypeInternals.hs @@ -1,6 +1,10 @@ {- git-annex internal data types - - Most things should not need this, using Types and/or Annex instead. + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. -} module TypeInternals where diff --git a/Types.hs b/Types.hs index c3d6467a3f..b94a4170af 100644 --- a/Types.hs +++ b/Types.hs @@ -1,4 +1,9 @@ -{- git-annex abstract data types -} +{- git-annex abstract data types + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} module Types ( Annex, diff --git a/UUID.hs b/UUID.hs index a7783d6140..79b2b55fa2 100644 --- a/UUID.hs +++ b/UUID.hs @@ -3,6 +3,9 @@ - Each git repository used by git-annex has an annex.uuid setting that - uniquely identifies that repository. - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. -} module UUID ( diff --git a/Utility.hs b/Utility.hs index 8e620c64cd..ab90c51608 100644 --- a/Utility.hs +++ b/Utility.hs @@ -1,4 +1,8 @@ {- git-annex utility functions + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. -} module Utility ( diff --git a/debian/changelog b/debian/changelog index c3255ba271..72ae91c02e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -git-annex (0.02) UNRELEASED; urgency=low +git-annex (0.02) unstable; urgency=low * Can scp annexed files from remote hosts, and check remote hosts for file content when dropping files. @@ -17,7 +17,7 @@ git-annex (0.02) UNRELEASED; urgency=low * New plumbing-level dropkey and addkey subcommands. * Lots of bug fixes. - -- Joey Hess Thu, 21 Oct 2010 16:38:00 -0400 + -- Joey Hess Wed, 27 Oct 2010 16:39:29 -0400 git-annex (0.01) unstable; urgency=low diff --git a/git-annex.hs b/git-annex.hs index d7b26cd968..e9e7ff0273 100644 --- a/git-annex.hs +++ b/git-annex.hs @@ -1,4 +1,9 @@ -{- git-annex main program -} +{- git-annex main program + - + - Copyright 2010 Joey Hess + - + - Licensed under the GNU GPL version 3 or higher. + -} import IO (try) import System.IO