aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_show.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/output_show.org')
-rw-r--r--org/output_show.org77
1 files changed, 74 insertions, 3 deletions
diff --git a/org/output_show.org b/org/output_show.org
index 8550f53..2f50a94 100644
--- a/org/output_show.org
+++ b/org/output_show.org
@@ -4,7 +4,7 @@
#+FILETAGS: :spine:hub:
#+AUTHOR: Ralph Amissah
#+EMAIL: [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]]
-#+COPYRIGHT: Copyright (C) 2015 - 2020 Ralph Amissah
+#+COPYRIGHT: Copyright (C) 2015 - 2021 Ralph Amissah
#+LANGUAGE: en
#+STARTUP: content hideblocks hidestars noindent entitiespretty
#+OPTIONS: H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil _:nil -:t f:t *:t <:t
@@ -20,6 +20,7 @@
- document summary from abstraction
#+BEGIN_SRC d :tangle "../src/doc_reform/meta/metadoc_show_summary.d"
+<<doc_header_including_copyright_and_license>>
module doc_reform.meta.metadoc_show_summary;
template spineMetaDocSummary() {
@safe void spineMetaDocSummary(S,T)(
@@ -132,10 +133,19 @@ writefln(
* show config
** _module template_ show config
+*** _show config tangle
+
+#+BEGIN_SRC d :tangle "../src/doc_reform/meta/metadoc_show_config.d"
+<<doc_header_including_copyright_and_license>>
+<<spine_show_site_config>>
+<<spine_show_config>>
+#+END_SRC
+
*** _show site config
--show-config (show config)
-#+BEGIN_SRC d :tangle "../src/doc_reform/meta/metadoc_show_config.d"
+#+NAME: spine_show_site_config
+#+BEGIN_SRC d
module doc_reform.meta.metadoc_show_config;
template spineShowSiteConfig() {
@safe void spineShowSiteConfig(O,T)(
@@ -224,7 +234,8 @@ writefln(
*** show (per document) config
-#+BEGIN_SRC d :tangle "../src/doc_reform/meta/metadoc_show_config.d"
+#+NAME: spine_show_config
+#+BEGIN_SRC d
template spineShowConfig() {
@safe void spineShowConfig(T)(
T doc_matters,
@@ -316,6 +327,7 @@ writefln(
--show-make (show document make)
#+BEGIN_SRC d :tangle "../src/doc_reform/meta/metadoc_show_make.d"
+<<doc_header_including_copyright_and_license>>
module doc_reform.meta.metadoc_show_make;
template spineShowMake() {
@safe void spineShowMake(T)(
@@ -386,6 +398,7 @@ writefln(
--show-metadata (show document metadata)
#+BEGIN_SRC d :tangle "../src/doc_reform/meta/metadoc_show_metadata.d"
+<<doc_header_including_copyright_and_license>>
module doc_reform.meta.metadoc_show_metadata;
template spineShowMetaData() {
@safe void spineShowMetaData(T)(
@@ -539,3 +552,61 @@ char_repeat_number = (char_repeat_number > min_repeat_number)
? char_repeat_number
: min_repeat_number;
#+END_SRC
+
+* document header including copyright & license
+
+#+NAME: doc_header_including_copyright_and_license
+#+BEGIN_SRC txt
+/+
+- Name: Spine, Doc Reform [a part of]
+ - Description: documents, structuring, processing, publishing, search
+ - static content generator
+
+ - Author: Ralph Amissah
+ [ralph.amissah@gmail.com]
+
+ - Copyright: (C) 2015 - 2021 Ralph Amissah, All Rights
+ Reserved.
+
+ - License: AGPL 3 or later:
+
+ Spine (SiSU), a framework for document structuring, publishing and
+ search
+
+ Copyright (C) Ralph Amissah
+
+ This program is free software: you can redistribute it and/or modify it
+ under the terms of the GNU AFERO General Public License as published by the
+ Free Software Foundation, either version 3 of the License, or (at your
+ option) any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ more details.
+
+ You should have received a copy of the GNU General Public License along with
+ this program. If not, see [https://www.gnu.org/licenses/].
+
+ If you have Internet connection, the latest version of the AGPL should be
+ available at these locations:
+ [https://www.fsf.org/licensing/licenses/agpl.html]
+ [https://www.gnu.org/licenses/agpl.html]
+
+ - Spine (by Doc Reform, related to SiSU) uses standard:
+ - docReform markup syntax
+ - standard SiSU markup syntax with modified headers and minor modifications
+ - docReform object numbering
+ - standard SiSU object citation numbering & system
+
+ - Hompages:
+ [https://www.doc_reform.org]
+ [https://www.sisudoc.org]
+
+ - Git
+ [https://git.sisudoc.org/projects/?p=software/spine.git;a=summary]
+
++/
+#+END_SRC
+
+* __END__