| #
7234bfb1 |
| 13-Sep-2023 |
splitbrain <splitbrain@users.noreply.github.com> |
Automatic code style fixes
|
| #
20292407 |
| 09-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
save unset data as empty string. #658
Previous versions of the SQLite plugin (incorrectly) saved PHP null values as empty strings. The new version correctly saves them as database NULL. However for
save unset data as empty string. #658
Previous versions of the SQLite plugin (incorrectly) saved PHP null values as empty strings. The new version correctly saves them as database NULL. However for struct, we always want empty strings.
show more ...
|
| #
79b29326 |
| 24-May-2023 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Use new \dokuwiki\plugin\sqlite\SQLiteDB class for DB access
|
| #
fc6ac2e5 |
| 17-Aug-2021 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Add 'published' column to db tables
First step of integrating publishing workflows into struct
|
| #
17a3a578 |
| 13-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
Manual code style adjustments
|
| #
0549dcc5 |
| 13-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
PHP code sniffer autofixes
|
| #
25e910de |
| 31-Jan-2021 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Never load serial data in page editor
fixes #535
Previously the page data editor pulled anything from the database associated with the current page id and having rev <= current timestamp. This incl
Never load serial data in page editor
fixes #535
Previously the page data editor pulled anything from the database associated with the current page id and having rev <= current timestamp. This included serial data with rev = 0, which are now excluded.
show more ...
|
| #
9e5ba324 |
| 14-Oct-2020 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Keep serial data intact when revisioning page data with the same schema and id
|
| #
308cc83f |
| 14-May-2020 |
Andreas Gohr <andi@splitbrain.org> |
refactoring names
To avoid confusion with the Lookup type, the three different ways of accessing a schema have now the following names:
* page data - for revisioned struct data attached to a page *
refactoring names
To avoid confusion with the Lookup type, the three different ways of accessing a schema have now the following names:
* page data - for revisioned struct data attached to a page * serial data - for an unrevisioned list of struct data attached to a page * global data - for an unrevisioned list of struct data not attached to any page (formaly known as lookup schema)
The editor mechanism used for serial and global data is now called AggregationEditor
Some reference to lookup schemas is still in the bureaucracy support part.
show more ...
|