diff options
author | Ralph Amissah <ralph@amissah.com> | 2018-07-31 10:25:29 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:15 -0400 |
commit | 9f5a72665fd94dcb082a9710c71e6a6a08386450 (patch) | |
tree | 7b5fbb382c6382b51cd6035e3f37744cb7eb9688 /org/default_shared.org | |
parent | meson build related (reggae removed for now) (diff) |
messages & remove outputs not generated
Diffstat (limited to 'org/default_shared.org')
-rw-r--r-- | org/default_shared.org | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/org/default_shared.org b/org/default_shared.org new file mode 100644 index 0000000..113b98b --- /dev/null +++ b/org/default_shared.org @@ -0,0 +1,50 @@ +#+TITLE: sdp shared +#+AUTHOR: Ralph Amissah +#+EMAIL: [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]] +#+DESCRIPTION: documents - structuring, publishing in multiple formats & search +#+KEYWORDS +#+LANGUAGE: en +#+STARTUP: indent content +#+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 :noweb yes +#+EXPORT_SELECT_TAGS: export +#+EXPORT_EXCLUDE_TAGS: noexport +#+FILETAGS: :sdp:rel:meta: +#+TAGS: assert(a) class(c) debug(d) mixin(m) sdp(s) tangle(T) template(t) WEB(W) noexport(n) + +[[./sdp.org][sdp]] [[./][org/]] +* 0. shared :module:sdp:shared: +** 0. module template + +#+BEGIN_SRC d :tangle ../src/sdp/share/defaults.d +/++ + shared default settings ++/ +module sdp.share.defaults; +<<shared_messages>> +#+END_SRC + +** template: messages :messages: +#+name: shared_messages +#+BEGIN_SRC d +template Msg() { + import std.stdio; + auto Msg(I)(I doc_matters) { + struct Msg_ { + void v()(string message) { + if (!(doc_matters.opt.action.quiet) && doc_matters.opt.action.verbose) { + writeln(message); + } + } + void vv()(string message) { + if (!(doc_matters.opt.action.quiet) && doc_matters.opt.action.very_verbose) { + writeln(message); + } + } + } + return Msg_(); + } +} +#+END_SRC |