diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-01-29 11:21:19 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | 36d31d98dc47dd2bb8445b3e61596f098fdafa9f (patch) | |
tree | 011e3df32cf317054a308d77f8d7fccf60feac7d /src/sdp/ao_defaults.d | |
parent | read src file and split into head and body, template (diff) |
defaults org, reorganize
Diffstat (limited to 'src/sdp/ao_defaults.d')
-rw-r--r-- | src/sdp/ao_defaults.d | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/src/sdp/ao_defaults.d b/src/sdp/ao_defaults.d index 633d67d..3c902df 100644 --- a/src/sdp/ao_defaults.d +++ b/src/sdp/ao_defaults.d @@ -2,7 +2,25 @@ default settings +/ template SiSUregisters() { - + private import + std.algorithm, + std.array, + std.container, + std.exception, + std.file, + std.getopt, + std.json, + std.path, + std.process, + std.range, + std.regex, + std.stdio, + std.string, + std.traits, + std.typecons, + std.uni, + std.utf, + std.conv : to; string[string][string] conf_aa() { auto conf_ = [ "webserv": [ @@ -290,7 +308,7 @@ template SiSUnode() { } int[string] node_metadata_heading_int() { auto _node = [ - "ocn" : 0, // decide whether to use or keep? + "ocn" : 0, "ptr_doc_object" : 0, "ptr_html_segnames" : 0, "ptr_heading" : 0, @@ -306,7 +324,6 @@ template SiSUnode() { "is" : "", "ocn" : "", "attrib" : "", - // "segment_anchor_tag" : "", ]; return _node; } |