Difference between revisions of "JSMW PageSchema"
Jump to navigation
Jump to search
(8 intermediate revisions by the same user not shown) | |||
Line 11: | Line 11: | ||
=== Structure of a Wiki === | === Structure of a Wiki === | ||
<uml> | <uml> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
class Category { | class Category { | ||
title | title | ||
Line 33: | Line 24: | ||
Page "1" -- "*" Revision : revisions | Page "1" -- "*" Revision : revisions | ||
</uml> | </uml> | ||
+ | |||
=== Structure of a Semantic Wiki === | === Structure of a Semantic Wiki === | ||
<uml> | <uml> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
class Category { | class Category { | ||
title | title | ||
Line 66: | Line 50: | ||
</uml> | </uml> | ||
− | see | + | see [[https://github.com/SemanticMediaWiki/SemanticMediaWiki SemanticMediaWiki project]] |
* [[:Category:Form]] | * [[:Category:Form]] | ||
* [[:Category:Field]] | * [[:Category:Field]] | ||
Line 72: | Line 56: | ||
* [[:Category:Template]] | * [[:Category:Template]] | ||
* [[:Category:Property]] | * [[:Category:Property]] | ||
+ | |||
+ | === Structure of SMW PageSchema === | ||
+ | <uml> | ||
+ | class PageSchema { | ||
+ | } | ||
+ | class Template { | ||
+ | } | ||
+ | class Form { | ||
+ | } | ||
+ | class Section { | ||
+ | } | ||
+ | PageSchema "1" -- "*" Template : templates | ||
+ | PageSchema "1" -- "*" Form : forms | ||
+ | PageSchema "1" -- "*" Section : sections | ||
+ | PageSchema "1" -- "1" Category | ||
+ | </uml> | ||
+ | |||
+ | see [[:Category:PageSchema]] | ||
== Contributors == | == Contributors == |
Latest revision as of 11:02, 20 January 2015
JSMW PageSchema is a tool to work with and automatically generate Page_Schemas.
This site is heavily using this toolset to structure the content of this site.
See Category:PageSchema for the hierarchy of Categories and Pages that are under the control of this toolset.
Overview
With JSMW PageSchema you can adopt a model driven approach to website setup and maintainance. In principle you can create whole "application websites" with this approach.
Structure of a Wiki
Structure of a Semantic Wiki
see [SemanticMediaWiki project]