[Pkg-haskell-commits] [SCM] haskell-testpack branch, master, updated. debian/1.0.2-1-4-gb0d6b36

John Goerzen jgoerzen at complete.org
Fri Apr 23 15:18:20 UTC 2010


The following commit has been merged in the master branch:
commit f95ec063f9afd5413d3279b1b3ea48780b192b12
Author: John Goerzen <jgoerzen at complete.org>
Date:   Sun Dec 3 10:13:45 2006 +0100

    Renamed MissingH.ProgressMeter to Data.Progress.Meter, refs #1

diff --git a/MissingH.cabal b/MissingH.cabal
index cc5a05b..1527fc5 100644
--- a/MissingH.cabal
+++ b/MissingH.cabal
@@ -21,7 +21,7 @@ Exposed-Modules: MissingH.Str, System.IO, System.IO.Binary, Data.List.Utils,
     MissingH.Str.CSV,
   System.Cmd.Utils,
   MissingH.ProgressTracker,
-  MissingH.ProgressMeter,
+  Data.Progress.Meter,
   MissingH.Quantity,
   Data.Map.Utils, System.Path, System.Path.NameManip,
     System.Path.FilePath, System.Path.WildMatch, System.Path.Glob,
diff --git a/MissingH/ProgressTracker.hs b/MissingH/ProgressTracker.hs
index f1a4aa2..a6d00d8 100644
--- a/MissingH/ProgressTracker.hs
+++ b/MissingH/ProgressTracker.hs
@@ -29,7 +29,7 @@ Tools for tracking the status of a long operation.
 
 Written by John Goerzen, jgoerzen\@complete.org 
 
-See also "MissingH.ProgressMeter" -}
+See also "Data.Progress.Meter" -}
 
 module MissingH.ProgressTracker (
                                  -- * Introduction
@@ -86,7 +86,7 @@ Finally, you can register callbacks.  Callbacks are functions that are called
 whenever the status of a tracker changes.  They'll be passed the old and new
 status and are intended to do things like update on-screen status displays.
 
-The cousin module 'MissingH.ProgressMeter' can be used to nicely render
+The cousin module 'Data.Progress.Meter' can be used to nicely render
 these trackers on a console.
 -}
 
diff --git a/MissingH/ProgressMeter.hs b/src/Data/Progress/Meter.hs
similarity index 99%
rename from MissingH/ProgressMeter.hs
rename to src/Data/Progress/Meter.hs
index c2089e9..e9d6c91 100644
--- a/MissingH/ProgressMeter.hs
+++ b/src/Data/Progress/Meter.hs
@@ -17,7 +17,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 -}
 
 {- |
-   Module     : MissingH.ProgressMeter
+   Module     : Data.Progress.Meter
    Copyright  : Copyright (C) 2006 John Goerzen
    License    : GNU GPL, version 2 or above
 
@@ -30,7 +30,7 @@ as a layer atop "MissingH.ProgressTracker".
 
 Written by John Goerzen, jgoerzen\@complete.org -}
 
-module MissingH.ProgressMeter (-- * Types
+module Data.Progress.Meter (-- * Types
                                ProgressMeter,
                                -- * Creation and Configuration
                                simpleNewMeter,

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list