aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_hub.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2019-11-14 21:23:31 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2019-11-19 16:55:31 -0500
commit6825a6865c9aa7f235a3825b0e08f3834745ed86 (patch)
tree79a128d168cf30bdb8bd4aa130f9e19b0c3ec5ae /org/output_hub.org
parent0.8.3 (if exists) get site config & output path (diff)
0.9.0 spine (doc-reform renamed)
Diffstat (limited to 'org/output_hub.org')
-rw-r--r--org/output_hub.org22
1 files changed, 11 insertions, 11 deletions
diff --git a/org/output_hub.org b/org/output_hub.org
index d77d671..029595b 100644
--- a/org/output_hub.org
+++ b/org/output_hub.org
@@ -1,7 +1,7 @@
-*- mode: org -*-
-#+TITLE: doc_reform output hub
+#+TITLE: spine(doc_reform) output hub
#+DESCRIPTION: documents - structuring, publishing in multiple formats & search
-#+FILETAGS: :doc_reform:output:hub:
+#+FILETAGS: :spine:output:hub:
#+AUTHOR: Ralph Amissah
#+EMAIL: [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]]
#+COPYRIGHT: Copyright (C) 2015 - 2019 Ralph Amissah
@@ -13,12 +13,12 @@
#+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) doc_reform(s) tangle(T) template(t) WEB(W) noexport(n)
+#+TAGS: assert(a) class(c) debug(d) mixin(m) spine(s) tangle(T) template(t) WEB(W) noexport(n)
-- [[./doc_reform.org][doc_reform]] [[./][org/]]
+- [[./spine.org][spine]] [[./][org/]]
-* 0. output hub [#A]
-** module template :module:
+* output hub [#A]
+** _module template_ :module:
#+BEGIN_SRC d :tangle "../src/doc_reform/output/hub.d"
/++
@@ -77,25 +77,25 @@ import doc_reform.output,
** outputs
*** files
-**** source: _dr_src_ &/or _pod_ :source:pod:
+**** source: _dr_src_ &/or _pod_ :source:pod:
- [[./output_pod.org][output_pod]]
#+name: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.source_or_pod) {
if (doc_matters.opt.action.source) {
- msg.v("doc reform source processing... ");
+ msg.v("spine (doc reform) source processing... ");
}
if (doc_matters.opt.action.pod) {
- msg.v("doc reform source pod processing... ");
+ msg.v("spine (doc reform) source pod processing... ");
}
import doc_reform.output.source_pod;
DocReformPod!()(doc_matters);
if (doc_matters.opt.action.source) {
- msg.vv("doc reform source done");
+ msg.vv("spine (doc reform) source done");
}
if (doc_matters.opt.action.pod) {
- msg.vv("doc reform source pod done");
+ msg.vv("spine (doc reform) source pod done");
}
}
#+END_SRC