aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-01-25 05:47:20 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-01-25 05:47:20 +0300
commit727dee32769d899618e8c578dac459bbcced57ca (patch)
treed62011178876a3950bb8789f1d5267eb963d3d72
parentexplicitly require Win32 >= 2.4 (diff)
downloadwindows-env-727dee32769d899618e8c578dac459bbcced57ca.tar.gz
windows-env-727dee32769d899618e8c578dac459bbcced57ca.zip
add Portability to module descriptions
-rw-r--r--apps/AddPath.hs1
-rw-r--r--apps/ListPaths.hs1
-rw-r--r--apps/Prompt.hs1
-rw-r--r--apps/PromptMessage.hs1
-rw-r--r--apps/RemovePath.hs1
-rw-r--r--apps/SetEnv.hs1
-rw-r--r--apps/UnsetEnv.hs1
-rw-r--r--src/Windows/Environment.hs2
-rw-r--r--src/Windows/Registry.hs4
-rw-r--r--src/Windows/Utils.hs1
10 files changed, 13 insertions, 1 deletions
diff --git a/apps/AddPath.hs b/apps/AddPath.hs
index 571012d..0e4356b 100644
--- a/apps/AddPath.hs
+++ b/apps/AddPath.hs
@@ -3,6 +3,7 @@
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : Windows-only
module Main (main) where
diff --git a/apps/ListPaths.hs b/apps/ListPaths.hs
index dee24d3..79f82c2 100644
--- a/apps/ListPaths.hs
+++ b/apps/ListPaths.hs
@@ -3,6 +3,7 @@
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : Windows-only
module Main (main) where
diff --git a/apps/Prompt.hs b/apps/Prompt.hs
index 12a967f..404c582 100644
--- a/apps/Prompt.hs
+++ b/apps/Prompt.hs
@@ -3,6 +3,7 @@
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : portable
module Prompt
( withPrompt
diff --git a/apps/PromptMessage.hs b/apps/PromptMessage.hs
index 2bee0a5..db83443 100644
--- a/apps/PromptMessage.hs
+++ b/apps/PromptMessage.hs
@@ -3,6 +3,7 @@
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : portable
module PromptMessage
( oldNewMessage
diff --git a/apps/RemovePath.hs b/apps/RemovePath.hs
index 55e03f1..c06df55 100644
--- a/apps/RemovePath.hs
+++ b/apps/RemovePath.hs
@@ -3,6 +3,7 @@
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : Windows-only
module Main (main) where
diff --git a/apps/SetEnv.hs b/apps/SetEnv.hs
index 7347cbf..83aa0b4 100644
--- a/apps/SetEnv.hs
+++ b/apps/SetEnv.hs
@@ -3,6 +3,7 @@
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : Windows-only
module Main (main) where
diff --git a/apps/UnsetEnv.hs b/apps/UnsetEnv.hs
index b30ce8a..c92de03 100644
--- a/apps/UnsetEnv.hs
+++ b/apps/UnsetEnv.hs
@@ -3,6 +3,7 @@
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : Windows-only
module Main (main) where
diff --git a/src/Windows/Environment.hs b/src/Windows/Environment.hs
index d44b291..b975be4 100644
--- a/src/Windows/Environment.hs
+++ b/src/Windows/Environment.hs
@@ -1,8 +1,10 @@
-- |
+-- Description : High-level environment variables management functions
-- Copyright : (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : Windows-only
--
-- High-level functions for reading and writing Windows environment variables.
diff --git a/src/Windows/Registry.hs b/src/Windows/Registry.hs
index 2fe11e4..e7daaab 100644
--- a/src/Windows/Registry.hs
+++ b/src/Windows/Registry.hs
@@ -1,10 +1,12 @@
-- |
+-- Description : Lower-level registry access wrappers
-- Copyright : (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : Windows-only
--
--- Low-level utility functions for reading and writing registry values.
+-- Lower-level functions for reading and writing registry values.
module Windows.Registry
( IsKeyPath(..)
diff --git a/src/Windows/Utils.hs b/src/Windows/Utils.hs
index 6dfaa5c..414ec50 100644
--- a/src/Windows/Utils.hs
+++ b/src/Windows/Utils.hs
@@ -3,6 +3,7 @@
-- License : MIT
-- Maintainer : Egor.Tensin@gmail.com
-- Stability : experimental
+-- Portability : Windows-only
module Windows.Utils
( notifyEnvironmentUpdate