summaryrefslogtreecommitdiff
path: root/ikiroles.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'ikiroles.mdwn')
-rw-r--r--ikiroles.mdwn15
1 files changed, 7 insertions, 8 deletions
diff --git a/ikiroles.mdwn b/ikiroles.mdwn
index 43f145a..c136c5e 100644
--- a/ikiroles.mdwn
+++ b/ikiroles.mdwn
@@ -12,9 +12,8 @@ the site can be live readable while evolving both content and style.
* Html is expressed in a simple template format - similar to plain html.
* Graphics and other rich media files are stored as-is.
-The system builds two websites in parallel - one presented for normal reading, and
-another one with edit links, only offered to designer and author (secured by
-individual passwords).
+The system can build multiple websites in parallel - e.g. a stable official site and an
+alternate development draft site using different git branch for content and/or styling.
[[graph height=8 width=8 src="""
{
@@ -46,7 +45,7 @@ individual passwords).
tmpl_stored
media_stored
}
- {rank=same; webpages webpages_admin webpages_searchresult}
+ {rank=same; webpages webpages_alt webpages_searchresult}
/* roles */
user [shape=house, label="Reader"]
@@ -67,21 +66,21 @@ individual passwords).
tmpl_stored [shape=box, label="Version-controlled html templates"]
webpages [label="Static website"]
- webpages_admin [label="(Admin-)editable website"]
+ webpages_alt [label="Alternate static website", color=grey]
webpages_searchresult [label="Search results", style=dotted]
user -> search_query -> search_db -> webpages_searchresult
author -> txt -> txt_stored -> webpages
- txt_stored -> webpages_admin
+ txt_stored -> webpages_alt [color=grey]
designer -> txt
designer -> tmpl -> tmpl_stored -> webpages
- tmpl_stored -> webpages_admin
+ tmpl_stored -> webpages_alt [color=grey]
designer -> media -> media_stored -> webpages
- media_stored -> webpages_admin
+ media_stored -> webpages_alt [color=grey]
}
"""]]