• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

_test/23-May-2025-3,4193,046

aggregates/23-May-2025-196117

conf/23-May-2025-2418

driver/23-May-2025-383190

helper/23-May-2025-2,5021,471

images/23-May-2025-

lang/23-May-2025-11887

lib/23-May-2025-242101

sql/23-May-2025-3924

syntax/23-May-2025-1,316835

types/23-May-2025-643383

README.mdD22-May-20251.5 KiB3926

action.phpD22-May-20257.2 KiB207107

manual.txtD22-May-202525.7 KiB568378

plotly-2.25.2.min.jsD22-May-20253.4 MiB81

plugin.info.txtD22-May-2025199 87

renderer.phpD22-May-2025788 3420

script.jsD22-May-202521.7 KiB565455

style.cssD22-May-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