aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apps/PromptMessage.hs
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-03-25 05:56:02 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-03-25 05:56:02 +0300
commit80f6847645459dfd21e531946e1eeaf2384a2dff (patch)
tree8a93e818fe647974bd724be08092e9475d03425f /apps/PromptMessage.hs
parentadd README to the package (diff)
downloadwindows-env-80f6847645459dfd21e531946e1eeaf2384a2dff.tar.gz
windows-env-80f6847645459dfd21e531946e1eeaf2384a2dff.zip
rename directories
Diffstat (limited to 'apps/PromptMessage.hs')
-rw-r--r--apps/PromptMessage.hs39
1 files changed, 0 insertions, 39 deletions
diff --git a/apps/PromptMessage.hs b/apps/PromptMessage.hs
deleted file mode 100644
index a3ff776..0000000
--- a/apps/PromptMessage.hs
+++ /dev/null
@@ -1,39 +0,0 @@
--- |
--- Copyright : (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
--- License : MIT
--- Maintainer : Egor.Tensin@gmail.com
--- Stability : experimental
--- Portability : Windows-only
-
-module PromptMessage
- ( oldNewMessage
- , newMessage
- , wipeMessage
- ) where
-
-import Text.Printf (printf)
-
-import qualified WindowsEnv
-
-oldNewMessage :: WindowsEnv.Profile -> WindowsEnv.VarName -> WindowsEnv.VarValue -> WindowsEnv.VarValue -> String
-oldNewMessage profile name oldValue newValue =
- descrMsg ++ oldValueMsg ++ newValueMsg
- where
- profileKey = WindowsEnv.profileKeyPath profile
- descrMsg = printf "Saving variable '%s' to '%s'...\n" name (show profileKey)
- oldValueMsg = printf "\tOld value: %s\n" oldValue
- newValueMsg = printf "\tNew value: %s\n" newValue
-
-newMessage :: WindowsEnv.Profile -> WindowsEnv.VarName -> WindowsEnv.VarValue -> String
-newMessage profile name newValue =
- descrMsg ++ newValueMsg
- where
- profileKey = WindowsEnv.profileKeyPath profile
- descrMsg = printf "Saving variable '%s' to '%s'...\n" name (show profileKey)
- newValueMsg = printf "\tNew value: %s\n" newValue
-
-wipeMessage :: WindowsEnv.Profile -> WindowsEnv.VarName -> String
-wipeMessage profile name =
- printf "Deleting variable '%s' from '%s'...\n" name (show profileKey)
- where
- profileKey = WindowsEnv.profileKeyPath profile