2018-10-10 17:55:52 +00:00
|
|
|
#lang racket/base
|
|
|
|
|
2018-10-10 18:57:00 +00:00
|
|
|
(require (prefix-in config: "config.rkt"))
|
2018-10-10 17:55:52 +00:00
|
|
|
|
|
|
|
(provide (all-defined-out))
|
|
|
|
|
|
|
|
(define messages
|
|
|
|
(hash
|
2019-03-13 02:41:18 +00:00
|
|
|
'show-help (string-append
|
2019-03-13 03:23:49 +00:00
|
|
|
"Usage\n"
|
2019-03-15 02:29:57 +00:00
|
|
|
"=====\n"
|
|
|
|
"If you are using the "
|
2019-03-13 03:23:49 +00:00
|
|
|
"<" config:initialize-command ">" " or "
|
|
|
|
"<" config:list-command ">" " commands, follow the structure below:\n"
|
|
|
|
config:program-name " <command>\n"
|
2019-03-13 02:41:18 +00:00
|
|
|
"\n"
|
2019-03-13 03:23:49 +00:00
|
|
|
|
2019-03-15 02:29:57 +00:00
|
|
|
"If you are using the "
|
2019-03-13 03:23:49 +00:00
|
|
|
"<" config:add-command ">" " or "
|
|
|
|
"<" config:remove-command ">" " commands, follow the structure below:\n"
|
|
|
|
config:program-name " <command> [argument]\n"
|
2019-03-13 02:41:18 +00:00
|
|
|
"\n"
|
|
|
|
|
2019-03-13 03:23:49 +00:00
|
|
|
"Commands\n"
|
2019-03-15 02:29:57 +00:00
|
|
|
"========\n"
|
2019-03-13 02:41:18 +00:00
|
|
|
|
2019-03-13 03:23:49 +00:00
|
|
|
"<" config:initialize-command ">" ":\n"
|
|
|
|
"Create a file in "
|
|
|
|
config:program-directory
|
|
|
|
config:program-file
|
|
|
|
" where your todo list will be stored\n"
|
|
|
|
"Example:\n"
|
|
|
|
config:program-name " "
|
|
|
|
config:initialize-command "\n"
|
2019-03-13 02:41:18 +00:00
|
|
|
"\n"
|
|
|
|
|
2019-03-13 03:23:49 +00:00
|
|
|
"<" config:list-command ">" ":\n"
|
|
|
|
"Displays items in the list\n"
|
|
|
|
"Example:\n"
|
|
|
|
config:program-name " "
|
|
|
|
config:list-command "\n"
|
2019-03-13 02:41:18 +00:00
|
|
|
"\n"
|
|
|
|
|
2019-03-13 03:23:49 +00:00
|
|
|
"<" config:add-command ">" " "
|
|
|
|
"[argument]:\n"
|
|
|
|
"Adds an item to the list\n"
|
|
|
|
"Example:\n"
|
|
|
|
config:program-name " "
|
|
|
|
config:add-command " "
|
|
|
|
"bread\n"
|
|
|
|
config:program-name " "
|
|
|
|
config:add-command " "
|
|
|
|
"this is an unquoted task\n"
|
|
|
|
config:program-name " "
|
|
|
|
config:add-command " "
|
|
|
|
"\"this is a quoted task which isn't any different from an unquoted task\"\n"
|
2019-03-13 02:41:18 +00:00
|
|
|
"\n"
|
|
|
|
|
2019-03-13 03:23:49 +00:00
|
|
|
"<" config:remove-command ">" " "
|
|
|
|
"[argument]:\n"
|
|
|
|
"Removes an item from the list\n"
|
|
|
|
"Example:\n"
|
|
|
|
config:program-name " " config:remove-command " " "1\n"
|
2019-03-13 02:41:18 +00:00
|
|
|
"\n"
|
|
|
|
|
2019-03-13 03:33:08 +00:00
|
|
|
"Note:\n"
|
|
|
|
"You may have to run "
|
2019-03-13 03:23:49 +00:00
|
|
|
"`" config:program-name " " config:list-command "`" " "
|
|
|
|
"see which number corresponds to which item in the list."
|
|
|
|
" In the example above, the first item was removed from the list\n"
|
2019-03-13 02:41:18 +00:00
|
|
|
"\n"
|
|
|
|
|
2019-03-15 02:29:57 +00:00
|
|
|
"Can't see the whole help message?\n"
|
|
|
|
"=================================\n"
|
2019-03-13 03:23:49 +00:00
|
|
|
"Try running "
|
|
|
|
"`" config:program-name " -h | less` to use the arrow keys "
|
2019-03-13 03:36:01 +00:00
|
|
|
"to scroll up and down through the help message, then when you "
|
|
|
|
"want to quit, just type `q` (without the grave accents)\n")
|
2019-03-13 02:41:18 +00:00
|
|
|
|
|
|
|
'empty-todo-list "> There is nothing in your list \n"
|
|
|
|
|
|
|
|
'show-usage (string-append
|
|
|
|
"> For usage type "
|
|
|
|
"`" config:program-name " -h`"
|
|
|
|
" or "
|
|
|
|
"`" config:program-name " --help`\n")
|
|
|
|
|
|
|
|
'creating (string-append
|
|
|
|
"> Creating "
|
|
|
|
config:program-file
|
|
|
|
" file in "
|
|
|
|
config:program-directory "\n")
|
|
|
|
|
|
|
|
'creation-error (string-append
|
|
|
|
"> Error: Could not create "
|
|
|
|
config:program-file
|
|
|
|
" in "
|
|
|
|
config:program-directory
|
|
|
|
".\n"
|
|
|
|
"> This may be due to directory permissions\n")
|
|
|
|
|
|
|
|
'file-already-exists (string-append
|
|
|
|
"> Error: "
|
|
|
|
config:program-name
|
|
|
|
" already exists in "
|
|
|
|
config:program-directory
|
|
|
|
config:program-file "\n")
|
|
|
|
|
|
|
|
'successfully-created (string-append
|
|
|
|
"> "
|
|
|
|
config:program-directory
|
|
|
|
config:program-file
|
|
|
|
" has been successfully created\n")
|
|
|
|
|
|
|
|
'file-not-found (string-append
|
|
|
|
"> Error: Could not find "
|
|
|
|
config:program-directory
|
|
|
|
config:program-file "\n")
|
|
|
|
|
|
|
|
'init-y/n (string-append
|
|
|
|
"> A "
|
|
|
|
config:program-file
|
|
|
|
" file will be created in the directory "
|
|
|
|
config:program-directory "\n"
|
|
|
|
"> Are you sure you want to continue? [y/n]\n")
|
|
|
|
|
|
|
|
'try-init (string-append
|
|
|
|
"> Try typing "
|
|
|
|
"`" config:program-name " init` "
|
|
|
|
"to set it up\n")
|
|
|
|
|
|
|
|
'terminating (string-append
|
|
|
|
"> Exiting "
|
|
|
|
config:program-name
|
|
|
|
"\n")
|
|
|
|
|
|
|
|
'choose-y/n "> Error: Please choose y or n\n"
|
|
|
|
|
|
|
|
'not-in-list "> Error: Item does not exist\n"
|
|
|
|
|
|
|
|
'item-added-prefix "> Added "
|
|
|
|
|
|
|
|
'item-added-suffix " to list\n"
|
|
|
|
|
|
|
|
'item-removed-prefix "> Removed "
|
|
|
|
|
|
|
|
'item-removed-suffix " from list\n"))
|
2018-10-10 17:55:52 +00:00
|
|
|
|
|
|
|
(define y/n
|
|
|
|
(hash
|
2019-03-13 02:41:18 +00:00
|
|
|
'yes '("yes" "Yes" "y" "Y")
|
2018-10-10 17:55:52 +00:00
|
|
|
|
2019-03-13 02:41:18 +00:00
|
|
|
'no '("no" "No" "n" "N")))
|