Name Date Size #Lines LOC

..--

_test/H17-Nov-2025-3,4193,046

aggregates/H17-Nov-2025-196117

conf/H17-Nov-2025-2418

driver/H17-Nov-2025-383190

helper/H17-Nov-2025-2,5051,474

images/H17-Nov-2025-

lang/H17-Nov-2025-11887

lib/H17-Nov-2025-242101

sql/H17-Nov-2025-3924

syntax/H17-Nov-2025-1,316835

types/H17-Nov-2025-643383

.gitattributesH A D17-Nov-202566 32

README.mdH A D17-Nov-20251.5 KiB3926

action.phpH A D17-Nov-20257.2 KiB207107

manual.txtH A D17-Nov-202525.7 KiB568378

plotly-2.25.2.min.jsH A D17-Nov-20253.4 MiB81

plugin.info.txtH A D17-Nov-2025199 87

renderer.phpH A D17-Nov-2025788 3420

script.jsH A D17-Nov-202521.7 KiB565455

style.cssH A D17-Nov-20254.1 KiB174145

README.md

1Strata
2======
3This is a fork from the Strata plugin originally created by Brend Wanders, and no longer maintained.
4I added minor changes for my own use as the basis for a risks management tool, I publish them here in case it could help someone.
5
6
7Strata is a semi-structured data plugin for [DokuWiki][dw]. Strata allows you to add data to your wiki pages, and later on query that data to create automatic indices or other overviews.
8
9#### Installation
101. Use the DokuWiki plugin manager to install Strata.
112. Optionally, copy the contents of the ``manual.txt`` file into a wiki page (``wiki:strata`` would be a good location)
123. Optionally, configure your DokuWiki instance's [`useheading`](https://www.dokuwiki.org/config:useheading) setting to have nicer-looking links.
13
14#### Quick-start
15Below is a very simple example of how to use Strata. You can find more information in the ``manual.txt`` (which you can copy-paste into a wiki page to have the manual available for all users).
16
17Add data to a page with:
18
19    <data person>
20    Full Name: John Doe
21    Age: 24
22    Contact [link]: john.doe@example.org
23    </data>
24
25Later on, you can make a list (to get a table, use ``<table>`` instead) of people with:
26
27    <list ?person ?contact>
28    ?person is a: person
29    ?person Contact [link]: ?contact
30    </list>
31
32
33#### More Information
34
35See the [plugin page][pp] for more information on usage and configuration.
36
37[dw]: https://www.dokuwiki.org
38[pp]: https://www.dokuwiki.org/plugin:strata
39