History log of /plugin/struct/action/title.php (Results 1 – 17 of 17)
Revision Date Author Comments
# 5e29103a 11-Dec-2023 annda <annda@users.noreply.github.com>

�� Automatic code style fixes


# 7234bfb1 13-Sep-2023 splitbrain <splitbrain@users.noreply.github.com>

�� Automatic code style fixes


# 0549dcc5 13-Jan-2022 Andreas Gohr <andi@splitbrain.org>

PHP code sniffer autofixes


# 208bb3f3 08-Mar-2021 Anna Dabrowska <dabrowska@cosmocode.de>

Fix code style violations


# 34ea6e10 16-Feb-2021 Anna Dabrowska <dabrowska@cosmocode.de>

Eliminate warnings in PHP 8


# c09e0dca 03-Jan-2021 Anna Dabrowska <dabrowska@cosmocode.de>

Fix check of latest page metadata


# 58cb2b19 01-Nov-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Only update page metadata on new revision

Implements a basic comparison of page revisions before update. We used to write to the database on every rendering just because PARSER_METADATA_RENDER is th

Only update page metadata on new revision

Implements a basic comparison of page revisions before update. We used to write to the database on every rendering just because PARSER_METADATA_RENDER is the only event that supplies all the required metadata. An additional database query is better than the redundant save.

Fixes #528

show more ...


# 748e747f 09-Apr-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Manual coding style fixes

Method and variable visibility, camel case method names. Some exclusions due to inheritance


# d6d97f60 09-Apr-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Automatic coding style fixes


# 88b58a21 30-Mar-2018 Szymon Olewniczak <solewniczak@rid.pl>

This commit adds '%lastsummary%' special column for page schemas. The column contains the summary of last page revision.


# 3aad9612 28-Nov-2016 Michael Grosse <grosse@cosmocode.de>

fix: resolve conflict of type\Page and meta\Page

These two classes having the same name caused an error that on some
pages, after saving the page, the page itself remained blank.
The error-log conta

fix: resolve conflict of type\Page and meta\Page

These two classes having the same name caused an error that on some
pages, after saving the page, the page itself remained blank.
The error-log contained the following:

[Mon Nov 28 09:05:52 2016] [error] [client 91.65.183.141] PHP Fatal
error: Cannot use dokuwiki\\plugin\\struct\\types\\Page as Page because
the name is already in use in
[...]/lib/plugins/struct/meta/Search.php on line 7,
referer: [...]

show more ...


# 8d1ed4ce 17-Nov-2016 Michael Grosse <grosse@cosmocode.de>

refactor: Save page data only once per page


# 9abde7b5 17-Nov-2016 Michael Grosse <grosse@cosmocode.de>

fix: store the ip if last editor not logged in


# 109edca8 16-Nov-2016 Michael Grosse <grosse@cosmocode.de>

feat: store user and rev of all pages

Rename `meta/Title.php` `meta/Page.php` since it now handles the user
and timestamp for the last change as well.

This is done in preparation to adding a %laste

feat: store user and rev of all pages

Rename `meta/Title.php` `meta/Page.php` since it now handles the user
and timestamp for the last change as well.

This is done in preparation to adding a %lasteditor% selector showing
the last editor of a page and changing the %lastupdated% to show the
time when the page was last changed instead of showing the time when the
struct data of the page was last updated.

SPR-622

show more ...


# a7cffaf2 15-Nov-2016 Andreas Gohr <gohr@cosmocode.de>

fix title storage

The action component used the wrong key to get the current page. It
checked the info of the last revision which might not always be
available.


# 7cbcfbdb 07-Nov-2016 Andreas Gohr <gohr@cosmocode.de>

better handling of failing sqlite plugin init. fixes #200


# 1c9ef013 18-Jul-2016 Andreas Gohr <gohr@cosmocode.de>

store page titles in DB for reference

All page titles are now stored in the database to reference them later
in queries for the page type.