diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-01-24 15:42:37 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-02-11 13:08:49 -0500 |
commit | 52049eb825cca32a2d2e6596fe5160b3f33ba74d (patch) | |
tree | a6ab8c57bf455f30f7de20dbf87c15bf55274bdf /org/meta_conf_make_meta.org | |
parent | dlang safe default imminent, look ahead (diff) |
update headers and year
Diffstat (limited to 'org/meta_conf_make_meta.org')
-rw-r--r-- | org/meta_conf_make_meta.org | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/org/meta_conf_make_meta.org b/org/meta_conf_make_meta.org index a319758..898db4f 100644 --- a/org/meta_conf_make_meta.org +++ b/org/meta_conf_make_meta.org @@ -4,22 +4,21 @@ #+FILETAGS: :spine:config: #+AUTHOR: Ralph Amissah #+EMAIL: [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]] -#+COPYRIGHT: Copyright (C) 2015 - 2019 Ralph Amissah +#+COPYRIGHT: Copyright (C) 2015 - 2020 Ralph Amissah #+LANGUAGE: en -#+STARTUP: indent content hideblocks hidestars -#+OPTIONS: H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil _:nil -:t f:t *:t <:t -#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc -#+OPTIONS: author:nil email:nil creator:nil timestamp:nil -#+PROPERTY: header-args :padline no :exports code :cache no :noweb yes -#+EXPORT_SELECT_TAGS: export -#+EXPORT_EXCLUDE_TAGS: noexport -#+TAGS: assert(a) class(c) debug(d) mixin(m) spine(s) tangle(T) template(t) WEB(W) noexport(n) +#+STARTUP: content hideblocks hidestars noindent entitiespretty +#+PROPERTY: header-args :exports code +#+PROPERTY: header-args+ :noweb yes +#+PROPERTY: header-args+ :eval no +#+PROPERTY: header-args+ :results no +#+PROPERTY: header-args+ :cache no +#+PROPERTY: header-args+ :padline no [[./spine.org][spine]] [[./][org/]] * 0. generic ** imports -#+name: meta_defaults_imports +#+NAME: meta_defaults_imports #+BEGIN_SRC d import std.algorithm, @@ -51,7 +50,7 @@ module doc_reform.meta.conf_make_meta_structs; ** initialize, imports etc. -#+name: meta_defaults_template_structs +#+NAME: meta_defaults_template_structs #+BEGIN_SRC d import std.exception, @@ -74,7 +73,7 @@ static auto mkup = InlineMarkup(); ** struct Generic ConfComposite -#+name: meta_defaults_template_structs +#+NAME: meta_defaults_template_structs #+BEGIN_SRC d @safe string url_markup(string line) { string line_ = line @@ -186,7 +185,7 @@ struct confCompositeMakeBuild { ** initialize make & meta *** composite make -#+name: meta_defaults_template_structs +#+NAME: meta_defaults_template_structs #+BEGIN_SRC d struct ConfCompositeMakeInit { string[] bold; @@ -211,7 +210,7 @@ struct ConfCompositeMakeInit { *** struct: conf site local -#+name: meta_defaults_template_structs +#+NAME: meta_defaults_template_structs #+BEGIN_SRC d struct ConfCompositeSiteLocal { string webserv_url_doc_root; @@ -253,7 +252,7 @@ struct ConfCompositeSiteLocal { *** struct: composite meta -#+name: meta_defaults_template_structs +#+NAME: meta_defaults_template_structs #+BEGIN_SRC d struct MetaComposite { string classify_dewey; @@ -313,7 +312,7 @@ struct MetaComposite { *** composite structs -#+name: meta_defaults_template_structs +#+NAME: meta_defaults_template_structs #+BEGIN_SRC d struct ConfComposite { MetaComposite meta; @@ -325,7 +324,7 @@ struct ConfComposite { *** JSONValue -#+name: meta_defaults_template_structs +#+NAME: meta_defaults_template_structs #+BEGIN_SRC d JSONValue config_jsonstr = `{ }`; @@ -376,7 +375,7 @@ static template contentYAMLtoSpineStruct() { ** make -#+name: yaml_objects_make +#+NAME: yaml_objects_make #+BEGIN_SRC d /+ make ------------------------------------------------------------------- +/ if ("make" in _yaml @@ -533,7 +532,7 @@ if ("make" in _yaml ** conf -#+name: yaml_objects_conf +#+NAME: yaml_objects_conf #+BEGIN_SRC d /+ conf ------------------------------------------------------------------- +/ if ("webserv" in _yaml @@ -773,7 +772,7 @@ if ("search" in _yaml ** meta -#+name: yaml_objects_meta +#+NAME: yaml_objects_meta #+BEGIN_SRC d /+ meta ------------------------------------------------------------------- +/ if (_struct_composite.meta.creator_author.empty) { @@ -1200,7 +1199,7 @@ static template contentJSONtoSpineStruct() { ** make -#+name: json_objects +#+NAME: json_objects #+BEGIN_SRC d /+ make ------------------------------------------------------------------- +/ if ("make" in _json.object) { @@ -1365,7 +1364,7 @@ if ("make" in _json.object) { ** conf -#+name: json_objects +#+NAME: json_objects #+BEGIN_SRC d /+ conf ------------------------------------------------------------------- +/ if ("webserv" in _json.object) { @@ -1536,7 +1535,7 @@ if ("search" in _json.object) { ** meta -#+name: json_objects +#+NAME: json_objects #+BEGIN_SRC d /+ meta ------------------------------------------------------------------- +/ if (_struct_composite.meta.creator_author.empty) { |