summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDon Stewart <dons@galois.com>2008-01-04 16:23:04 -0800
committerDon Stewart <dons@galois.com>2008-01-04 16:23:04 -0800
commit35f0f40cfabeb49b468c6ae3c68fedded145a022 (patch)
tree0d4fa2b367a987c86ef5c14a06b7b91aee2dc6a7
parent62e3911810c18e77a13794cb5899a9ebc6b0bbb3 (diff)
Move MIME stuff into proper Codec.* namespace.
Add copyrights where missing.
-rw-r--r--Codec/MIME/Base64.hs (renamed from MIME/Base64.hs)0
-rw-r--r--Codec/MIME/Decode.hs (renamed from MIME/Decode.hs)0
-rw-r--r--Codec/MIME/Parse.hs (renamed from MIME/Parse.hs)0
-rw-r--r--Codec/MIME/QuotedPrintable.hs (renamed from MIME/QuotedPrintable.hs)0
-rw-r--r--Codec/MIME/Type.hs (renamed from MIME/Type.hs)0
-rw-r--r--Codec/MIME/Utils.hs (renamed from MIME/Utils.hs)0
-rw-r--r--LICENSE2
-rw-r--r--mime.cabal14
8 files changed, 9 insertions, 7 deletions
diff --git a/MIME/Base64.hs b/Codec/MIME/Base64.hs
index 848e034..848e034 100644
--- a/MIME/Base64.hs
+++ b/Codec/MIME/Base64.hs
diff --git a/MIME/Decode.hs b/Codec/MIME/Decode.hs
index f23454a..f23454a 100644
--- a/MIME/Decode.hs
+++ b/Codec/MIME/Decode.hs
diff --git a/MIME/Parse.hs b/Codec/MIME/Parse.hs
index 06fffc6..06fffc6 100644
--- a/MIME/Parse.hs
+++ b/Codec/MIME/Parse.hs
diff --git a/MIME/QuotedPrintable.hs b/Codec/MIME/QuotedPrintable.hs
index 514ce4e..514ce4e 100644
--- a/MIME/QuotedPrintable.hs
+++ b/Codec/MIME/QuotedPrintable.hs
diff --git a/MIME/Type.hs b/Codec/MIME/Type.hs
index e9266ec..e9266ec 100644
--- a/MIME/Type.hs
+++ b/Codec/MIME/Type.hs
diff --git a/MIME/Utils.hs b/Codec/MIME/Utils.hs
index a5db2d9..a5db2d9 100644
--- a/MIME/Utils.hs
+++ b/Codec/MIME/Utils.hs
diff --git a/LICENSE b/LICENSE
index e3d544f..3e57945 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) Galois, Inc. 2007
+Copyright (c) Galois, Inc. 2006-2008
All rights reserved.
diff --git a/mime.cabal b/mime.cabal
index 1d77084..ac24c4c 100644
--- a/mime.cabal
+++ b/mime.cabal
@@ -1,5 +1,5 @@
name: mime
-version: 0.1
+version: 0.2
synopsis: Working with MIME types.
description: Working with MIME types.
category: Web
@@ -7,9 +7,7 @@ license: BSD3
license-file: LICENSE
author: Galois Inc.
maintainer: Galois Inc
-Copyright: (c) 2007 Galois Inc.
-extra-source-files: scripts/json-rpc.js
-homepage: http://docserver/mime.git/
+Copyright: (c) 2006-2008 Galois Inc.
cabal-version: >= 1.2.0
flag split-base
@@ -20,6 +18,10 @@ library
else
build-depends: base < 3
- exposed-modules: MIME.Type, MIME.Parse, MIME.Utils
- other-modules: MIME.Base64, MIME.Decode, MIME.QuotedPrintable
+ exposed-modules: Codec.MIME.Type
+ Codec.MIME.Parse
+ Codec.MIME.Utils
+ other-modules: Codec.MIME.Base64
+ Codec.MIME.Decode
+ Codec.MIME.QuotedPrintable
ghc-options: -Wall -O2