History log of /dokuwiki/inc/parser/metadata.php (Results 51 – 75 of 77)
Revision Date Author Comments
# ef47e298 28-Feb-2009 Andreas Gohr <andi@splitbrain.org>

fixed previous attempt to fix metadata for externally edited pages

darcs-hash:20090228232625-7ad00-d0f0e8569d60f65d511994b401dd4c469bc44f60.gz


# 482cff99 28-Feb-2009 Andreas Gohr <andi@splitbrain.org>

fix metadata for externally created pages

darcs-hash:20090228195740-7ad00-7a37cb3f9d3921ee630361eae3e90e5a8466642c.gz


# aa5a2937 27-Feb-2009 Andreas Gohr <andi@splitbrain.org>

Store first image in metadata

darcs-hash:20090227164755-7ad00-c3ce407acd4f397e84e18f1bd18d57f154e283e2.gz


# fa8adffe 13-Dec-2008 Andreas Gohr <andi@splitbrain.org>

removed some illogical path setups

darcs-hash:20081213090400-7ad00-4e21cd75978bb07513f32f5d750658e8d777c59e.gz


# fe9ec250 19-Nov-2008 Chris Smith <chris.eureka@jalakai.co.uk>

FS#630: allow $conf['useheading'] to individually apply to content links and/or navigation links

$conf['useheading'] values are now:
- 0 : off, use page name in link text
- 'content' :

FS#630: allow $conf['useheading'] to individually apply to content links and/or navigation links

$conf['useheading'] values are now:
- 0 : off, use page name in link text
- 'content' : use first heading text for links in wiki page content
- 'navigation' : use first heading text for links in non-page content, e.g. breadcrumps, backlinks, search results, etc.
- 1 : use first heading text in all links
(for backwards compatibility, any other values are mapped to 0 or 1 by empty() function.)

$conf['useheading'] value should now be checked using the useHeading($linktype) function,
where linktype can be "content" or "navigation"

darcs-hash:20081119140758-f07c6-6e26456d50dcecc949fada31b0d4e72877fde1cc.gz

show more ...


# bc769d32 18-Jan-2008 Andreas Gohr <andi@splitbrain.org>

correct UTF-8 trimming of abstracts in metarenderer FS#1233

darcs-hash:20080118224834-7ad00-bda8d919c3fdf4bafe8509dca35aa437b38e1ac6.gz


# 00976812 30-Sep-2007 Andreas Gohr <andi@splitbrain.org>

don't use realpath() anymore (FS#1261 and others)

The use of realpath() to clean up relative file names caused some
trouble in certain setups relying on symlinks or having restricitve
file structure

don't use realpath() anymore (FS#1261 and others)

The use of realpath() to clean up relative file names caused some
trouble in certain setups relying on symlinks or having restricitve
file structure setups.

This patch replaces all realpath() calls with a PHP only replacement
which should solve those problems.

darcs-hash:20070930184250-7ad00-512ff04c95f57fc9eaf104f80372237a3c94286f.gz

show more ...


# b58f5d31 25-Sep-2007 Tom N Harris <tnharris@whoopdedo.org>

Fix not checking capture in metadata renderer

darcs-hash:20070925201030-6942e-7c2ac56c877cb6772d500b2391ddc490dc6fdec5.gz


# b8595a66 05-Aug-2007 Andreas Gohr <andi@splitbrain.org>

separated TOC from page

This patch introduces a tpl_toc() function which can be used to freely place
the Table of Contents in a template. When used, tpl_content should be called
with a parameter of

separated TOC from page

This patch introduces a tpl_toc() function which can be used to freely place
the Table of Contents in a template. When used, tpl_content should be called
with a parameter of false to supress the automatic TOC placement.

Note: if tpl_toc() us run *before* tpl_content(), TOCs will not work in the
preview. A work around is to run tpl_content() in a output buffer first.

This patch also adds a getTOC() function for admin plugins which allows plugin
authors to put create their own TOC which will be placed correctly in the
template. A convenience function html_mktocitem() is available.

The config manager was adjusted to make ue of this new feature, but some bugs
might remain.

darcs-hash:20070805132405-7ad00-77d2c3cdf66cc62b2d408cc6580f938636a109af.gz

show more ...


# 07f89c3c 17-May-2007 Anika Henke <a.c.henke@arcor.de>

added block mode for embedded html+php (FS#541) -- same syntax but in capital letters (<HTML>+<PHP>)

darcs-hash:20070517233213-d5083-9dbccf77383575912ad75533ca690302557e0f79.gz


# 57d757d1 13-May-2007 Andreas Gohr <andi@splitbrain.org>

distinction between apostrophes and single quotes FS#1127

This patch adds another parser mode for apostrophes. Now single quote closing
markers are handled different from apostrophes for better loca

distinction between apostrophes and single quotes FS#1127

This patch adds another parser mode for apostrophes. Now single quote closing
markers are handled different from apostrophes for better local typograpy
support.

Needs testing and languages updates.

darcs-hash:20070513084024-7ad00-d20fe093a093c265d357b178e199c1596b484996.gz

show more ...


# 5f70445d 03-Mar-2007 Andreas Gohr <andi@splitbrain.org>

added getFormat() function to renderer

Each renderer has to supply a getFormat() function returning the format it
produces. Usually this is the same as the classname of the renderer (or Plugin)
says

added getFormat() function to renderer

Each renderer has to supply a getFormat() function returning the format it
produces. Usually this is the same as the classname of the renderer (or Plugin)
says but it does not need to be necessarily.

Fixes a problem with the wrong format being reported to plugins when a
render plugin was used.

darcs-hash:20070303214102-7ad00-3f87d8a10e94f4c6c30bacc8f43486b94ecdb146.gz

show more ...


# 9bee852e 02-Mar-2007 Andreas Gohr <andi@splitbrain.org>

skip images in links for metadata renderer

darcs-hash:20070302102035-7ad00-65b1bcf0140b1aa434dc321b8e84b614f9b65e2f.gz


# 71b40da2 11-Feb-2007 Anika Henke <a.c.henke@arcor.de>

language-specific quotation marks (FS#438)

darcs-hash:20070211172015-d5083-2cab923b001391012a0a469746438d4d4087a718.gz


# e7856bea 06-Feb-2007 chris <chris@jalakai.co.uk>

refactor renderer header() to separate out adding toc items

adds a new render method toc_additem($id, $text, $level)

This allows toc items to be added separately from the header() function, allowin

refactor renderer header() to separate out adding toc items

adds a new render method toc_additem($id, $text, $level)

This allows toc items to be added separately from the header() function, allowing
plugins to generate their own table of content items without having to copy dw
core code (which may in the future change).

darcs-hash:20070206014821-9b6ab-218184e543f6b348e710acc2fe30a8ec329c66a8.gz

show more ...


# fc18c0fb 26-Jan-2007 chris <chris@jalakai.co.uk>

fix FS#1010

darcs-hash:20070126204145-9b6ab-db7eba9c6045584a381eb83ae48787627973532b.gz


# 44881bd0 03-Jan-2007 henning.noren <henning.noren@gmail.com>

tf_rename_lower.patch

Name the TRUE/FALSE-constants consistently as lowercase everywhere.
This might also be an tiny optimization in some environments.

darcs-hash:20070103205700-d2a3e-e7ec0aedb938d

tf_rename_lower.patch

Name the TRUE/FALSE-constants consistently as lowercase everywhere.
This might also be an tiny optimization in some environments.

darcs-hash:20070103205700-d2a3e-e7ec0aedb938d563f583116a2d5b17f3a3fea36c.gz

show more ...


# 64e9144a 12-Dec-2006 chris <chris@jalakai.co.uk>

fix rss refresh to take into account other refresh settings on the same page

darcs-hash:20061212200847-9b6ab-a844e9fec24e1ef63a8315026d518f0625beae4e.gz


# 0a7e3bce 26-Nov-2006 chris <chris@jalakai.co.uk>

metadata update to support both persistent and non-persistent metadata

Key changes:
- metadata stored on disk in two arrays, 'current' & 'persistent'
- p_set_metadata has an additional parameter, $p

metadata update to support both persistent and non-persistent metadata

Key changes:
- metadata stored on disk in two arrays, 'current' & 'persistent'
- p_set_metadata has an additional parameter, $persistent, which defaults to true
- metadata set within the renderer defaults to non-persistent
- new event hook, PARSER_METADATA_RENDER, which wraps around metadata rendering process. For
full details of this event refer to the event list documentation at splitbrain.

The patch includes automatic conversion of metadata in current form to the new format

For more details also see http://www.freelists.org/archives/dokuwiki/11-2006/msg00221.html
and any follow-up messages.

darcs-hash:20061126152144-9b6ab-a4e40c221e0274b13da07dc2fc1d2100f5f3a50e.gz

show more ...


# 5fe80182 04-Nov-2006 chris <chris@jalakai.co.uk>

no forcing of ASCII in section IDs for metadata (#882)

darcs-hash:20061104153643-9b6ab-d5db971def3e4415488b7b7af1d29d7bcd3bc2e3.gz


# 0a69dff7 25-Sep-2006 chris <chris@jalakai.co.uk>

amendments to previous patch updating rss & cache

rss syntax extended to include a refresh parameter
<digits><period> period can be d,h,m for days, hours, minutes respectively
i

amendments to previous patch updating rss & cache

rss syntax extended to include a refresh parameter
<digits><period> period can be d,h,m for days, hours, minutes respectively
if not specified will default to 4 hours
dokuwiki imposes a minimum of 10 minutes

metadata now used "date valid age" (seconds) rather than "date valid end"

darcs-hash:20060925201222-9b6ab-c8e6d8e40bb178295bab874fce5147ccff35fbbb.gz

show more ...


# ce6b63d9 24-Sep-2006 chris <chris@jalakai.co.uk>

cache, metadata & purgefile updates

Cache
- add dependency for metadata renderer file
- check metadata for end of page life, "date valid end".

Metadata Renderer
- RSS syntax mode now sets rendered

cache, metadata & purgefile updates

Cache
- add dependency for metadata renderer file
- check metadata for end of page life, "date valid end".

Metadata Renderer
- RSS syntax mode now sets rendered page expiry, "date valid end"
and includes the feed URL in "relation haspart".

Purgefile
For all wiki installations the purgefile records the earliest
time before which no cache purge (based on data consistency)
is required. Cache files older than this time MAY need to be
purged.
- remove purgeonadd configuration setting

darcs-hash:20060924202157-9b6ab-4531e91411c41914eeab2b6a8160c3d46b001cee.gz

show more ...


# 3be6e394 01-Sep-2006 chris <chris@jalakai.co.uk>

update backlink search to use metadata

darcs-hash:20060901002016-9b6ab-716518138edf541a869510d7c2934b9474547fc3.gz


# 4aca4bf5 07-Jun-2006 Andreas Gohr <gohr@cosmocode.de>

reset title in metadata renderer

darcs-hash:20060607073358-6e07b-90180a3098b55c577c49d5e182839bfb1298d1c1.gz


# a4a2d4cf 07-May-2006 Andreas Gohr <andi@splitbrain.org>

metadata hnalding updates, header fixes

This removes the meta instruction again in favour of the new meta renderer.
Most tests work now again, a few tweaks were done on the header handler
to render

metadata hnalding updates, header fixes

This removes the meta instruction again in favour of the new meta renderer.
Most tests work now again, a few tweaks were done on the header handler
to render certain headers as it did in earlier versions.

darcs-hash:20060507153113-7ad00-bd299fbe1762482c72d109f9bca776f12bcea7c8.gz

show more ...


1234