diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-06-06 17:58:10 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | e280a374991a3a6db3c40fd1fa03a2d9c6fa66eb (patch) | |
tree | 730441b0371f6f65794a5e598000e89c06127bed /src/sdp/ao/defaults.d | |
parent | getopt, fixes, & naming command line options related (diff) |
naming mostly
Diffstat (limited to 'src/sdp/ao/defaults.d')
-rw-r--r-- | src/sdp/ao/defaults.d | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/sdp/ao/defaults.d b/src/sdp/ao/defaults.d index 4a989b6..caee701 100644 --- a/src/sdp/ao/defaults.d +++ b/src/sdp/ao/defaults.d @@ -22,7 +22,7 @@ template SiSUregisters() { std.uni, std.utf, std.conv : to; - string[string][string] conf_aa() { + string[string][string] conf_aa_empty() { auto conf_ = [ "webserv": [ "url_root" : "", @@ -77,12 +77,7 @@ template SiSUregisters() { "action" : "", "db" : "", "title" : "" - ] - ]; - return conf_; - } - string[string][string] make_aa() { - auto make_ = [ + ], "make": [ "bold" : "", "breaks" : "", @@ -98,11 +93,11 @@ template SiSUregisters() { "num_depth" : "", "substitute" : "", "texpdf_font" : "" - ] + ], ]; - return make_; + return conf_; } - string[string][string] meta_aa() { + string[string][string] meta_aa_empty() { auto meta_ = [ "classify": [ "dewey" : "", |