History log of /dokuwiki/inc/parser/metadata.php (Results 26 – 50 of 77)
Revision Date Author Comments
# 6d2af55d 05-Mar-2014 Christopher Smith <chris@jalakai.co.uk>

suppress errors where list() may not fill all vars


# 2ada8709 25-Feb-2014 Christopher Smith <chris@jalakai.co.uk>

add renderers to autolader


# 9269d0b1 29-Oct-2013 Michael Hamann <michael@content-space.de>

Fix the media usage index to include local links


# 2f7a0e94 11-Sep-2013 Matt Perry <matt@mattperry.com>

Fix CodeSniffer whitespace violoations

Removed extraneous whitespace to eliminate errors reported by the
Squiz.WhiteSpace.SuperfluousWhitespace sniff.


# 0ea51e63 23-Aug-2013 Matt Perry <matt@mattperry.com>

Fix CodeSniffer violations for PHP files

Fix violations for Generic.PHP.LowerCaseConstant.Found


# 7ef8e99f 22-Aug-2013 Matt Perry <matt@mattperry.com>

Fix CodeSniffer violations

Change indentation to ensure code confirms to CodeSniffer rules.


# 66d935e7 17-Aug-2013 Michael Hamann <michael@content-space.de>

Fix backlinks for internal links with parameters

This adds the parameter extraction code from the xhtml renderer to the
metadata renderer in order to not to include the parameters in the id
that is

Fix backlinks for internal links with parameters

This adds the parameter extraction code from the xhtml renderer to the
metadata renderer in order to not to include the parameters in the id
that is recorded as link target. A test case checks that the link is
actually returned as backlink (fails without the fix).

show more ...


# ffec1009 31-Jul-2013 Michael Hamann <michael@content-space.de>

Index media file usage in the metadata index and use it in ft_mediause()


# 3e7e6067 21-May-2013 Klap-in <klapinklapin@gmail.com>

apply media_isexternal


# e8b5a4f9 28-Jul-2012 Andreas Gohr <andi@splitbrain.org>

fix E_STRICT errors FS#2427

This commit fixes all E_STRICT messages shown when running the test
suite. There might be more problems not covered by tests, yet.

For compatibility reasons with plugins

fix E_STRICT errors FS#2427

This commit fixes all E_STRICT messages shown when running the test
suite. There might be more problems not covered by tests, yet.

For compatibility reasons with plugins, E_STRICT errors are still
supressed.

show more ...


# 20f04039 01-Mar-2012 Danny <danny0838@hotmail.com>

Fix a stupid typo


# f01b3e16 17-Dec-2011 Danny <danny0838@gmail.com>

Slight fix to match current version.


# 85038eab 17-Dec-2011 Danny <danny0838@gmail.com>

Rework for missing commit 08162f005f3ced0555de590dc1a53155af99d998


# 67c15ece 07-May-2011 Michael Hamann <michael@content-space.de>

Change when metadata is rendered - only when really needed

This changes the cache logic for metadata. It introduces a new mode that
tries to avoid rendering the page again for simple requests but st

Change when metadata is rendered - only when really needed

This changes the cache logic for metadata. It introduces a new mode that
tries to avoid rendering the page again for simple requests but still
updates the metadata when the page has been changed (but not when the
cache timeout has been reached or purge is used). It simply compares the
time of the last rendering with the last modified time of the page.

The old boolean $render parameter has been changed into an int with
three possible values. Compatibility for the old parameter is provided
using a check with is_numeric using the following mapping:
- false is still don't render (0 is the new value for that)
- true is using that new render logic which means that many plugins will
still work unchanged even if they request a lot of data using
$render=true (1 is the new value for that providing full compatibility
in the case 1 has been used instead of true)

The default value for p_get_first_heading is now that new simple cache
logic, the default value for getting metadata is the cache logic which
should be used with care but is the only way to request (rendered)
metadata that can change because of plugin installations or upgrades.

show more ...


# 14739a20 06-Feb-2011 Andreas Gohr <andi@splitbrain.org>

Revert "merged branch 'danny0838:rewrite_block' and resolved conflict"

Anika's merge did not pul in the individual patches as one would expect.

Then I messed up when trying to fix this by merging w

Revert "merged branch 'danny0838:rewrite_block' and resolved conflict"

Anika's merge did not pul in the individual patches as one would expect.

Then I messed up when trying to fix this by merging with danny's repo
again but used the wrong branch. So we're still missing two patches. To
have them apply cleanly I have to revert Anika's merge here. Another
merge for the missing two patches will follow.

This reverts commit b17e20ac9cca30b612968d02f06fa9c5df5c01f0.

show more ...


# b17e20ac 06-Feb-2011 Anika Henke <anika@selfthinker.org>

merged branch 'danny0838:rewrite_block' and resolved conflict


# 682a7e10 22-Dec-2010 Andreas Gohr <gohr@cosmocode.de>

skip empty image title from abstract


# a8e72133 22-Dec-2010 Andreas Gohr <gohr@cosmocode.de>

store the creator's login name in metadata FS#1397


# e3776c06 29-Nov-2010 Michael Hamann <michael@content-space.de>

Remove enc=utf-8 in VIM modeline as it is not allowed in VIM 7.3

As of VIM 7.3 it is no longer possible to specify the encoding in the
modeline. This gives an error message whenever such a file is o

Remove enc=utf-8 in VIM modeline as it is not allowed in VIM 7.3

As of VIM 7.3 it is no longer possible to specify the encoding in the
modeline. This gives an error message whenever such a file is opened,
thus this commit removes the enc setting from the modeline.

show more ...


# a2ea2dc1 16-Mar-2010 Adrian Lang <lang@cosmocode.de>

Fix special link displaying in abstract


# c0322273 13-Nov-2009 Adrian Lang <lang@cosmocode.de>

Less E_NOTICEs, removed spell checker leftover

darcs-hash:20091113123458-e4919-d4841ea9c627059a4afa8e0032dd889b3cc579cb.gz


# c66972f2 04-Nov-2009 Adrian Lang <lang@cosmocode.de>

Emit less E_NOTICEs and E_STRICTs

Changes of behaviour are:
* Allow the user name, title & description \e2\80\9c0\e2\80\9d
* Default to Port 443 if using HTTPS
* Set $INFO['isadmin'] and $IN

Emit less E_NOTICEs and E_STRICTs

Changes of behaviour are:
* Allow the user name, title & description \e2\80\9c0\e2\80\9d
* Default to Port 443 if using HTTPS
* Set $INFO['isadmin'] and $INFO['ismanager'] to \e2\80\9cfalse\e2\80\9d even if no user is
logged in
* Do not pass empty fragment field in the event data for event
ACTION_SHOW_REDIRECT
* Handle chunked encoding in HTTPClient

darcs-hash:20091104100115-e4919-5cf6397d4a457e3f98a8ca49fbdab03f2147721d.gz

show more ...


# 25b97867 03-Nov-2009 hakan.sandell <hakan.sandell@mydata.se>

rowspan with ::: implemented in parser/handler

darcs-hash:20091103161002-9a5f4-2114938a7e62a924b9fe424b63584a4747286563.gz


# 4b7f9e70 28-May-2009 Tom N Harris <tnharris@whoopdedo.org>

Change expensive uses of split to the much faster explode.

darcs-hash:20090528215438-6942e-bf1b875e689ade6bd1a17e3d812ce16bf35c84a6.gz


# 620f4930 10-Apr-2009 Andreas Gohr <andi@splitbrain.org>

fix header links in metadata FS#1617

Ignore-this: b580164b5ba3eca3120bc35d8680c9fc

darcs-hash:20090410184955-7ad00-480cd8c07a994ca4ac2e71f7f8dd294276f2d98d.gz


1234