History log of /dokuwiki/lib/ (Results 3001 – 3025 of 4512)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
359fab8b30-Nov-2010 Michael Hamann <michael@content-space.de>

Revert "Fix for $conf['breadcrumbs'] < 0, FS#2107", new fix

This reverts commit 4871414204799044c31aa2764c4b4ca020e2331d.
Additionally there is a new fix for FS#2107 that doesn't introduce a lot
of

Revert "Fix for $conf['breadcrumbs'] < 0, FS#2107", new fix

This reverts commit 4871414204799044c31aa2764c4b4ca020e2331d.
Additionally there is a new fix for FS#2107 that doesn't introduce a lot
of checks but instead ensures that the configuration option can't be set
to negative values when the configuration manager is used.

show more ...

38dc5fa630-Nov-2010 Michael Hamann <michael@content-space.de>

Added min and max options for configuration metadata

e3776c0629-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 ...


/dokuwiki/_test/cases/inc/IXR_Library_IXR_Message.test.php
/dokuwiki/_test/cases/inc/IXR_Library_date.test.php
/dokuwiki/_test/cases/inc/auth_aclcheck.test.php
/dokuwiki/_test/cases/inc/auth_admincheck.test.php
/dokuwiki/_test/cases/inc/auth_nameencode.test.php
/dokuwiki/_test/cases/inc/auth_password.test.php
/dokuwiki/_test/cases/inc/common_clientip.test.php
/dokuwiki/_test/cases/inc/common_obfuscate.test.php
/dokuwiki/_test/cases/inc/common_pagetemplate.test.php
/dokuwiki/_test/cases/inc/indexer_idx_indexlengths.test.php
/dokuwiki/_test/cases/inc/init_fullpath.test.php
/dokuwiki/_test/cases/inc/init_getbaseurl.test.php
/dokuwiki/_test/cases/inc/mail_isvalid.test.php
/dokuwiki/_test/cases/inc/mail_quoted_printable_encode.php
/dokuwiki/_test/cases/inc/mail_send.php
/dokuwiki/_test/cases/inc/pageutils_clean_id.test.php
/dokuwiki/_test/cases/inc/pageutils_getid.test.php
/dokuwiki/_test/cases/inc/pageutils_resolve_id.test.php
/dokuwiki/_test/cases/inc/pageutils_resolve_pageid.test.php
/dokuwiki/_test/cases/inc/safefn.test.php
/dokuwiki/_test/cases/inc/utf8_correctidx.test.php
/dokuwiki/_test/cases/inc/utf8_html.test.php
/dokuwiki/_test/cases/inc/utf8_romanize.test.php
/dokuwiki/_test/cases/inc/utf8_stripspecials.test.php
/dokuwiki/_test/cases/inc/utf8_substr.test.php
/dokuwiki/_test/cases/inc/utf8_unicode.test.php
/dokuwiki/_test/cases/inc/utf8_utf16be.test.php
/dokuwiki/_test/cases/lib/exe/css_css_compress.test.php
/dokuwiki/_test/cases/lib/exe/js_js_compress.test.php
/dokuwiki/bin/indexer.php
/dokuwiki/feed.php
/dokuwiki/inc/DifferenceEngine.php
/dokuwiki/inc/HTTPClient.php
/dokuwiki/inc/actions.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/auth/ad.class.php
/dokuwiki/inc/auth/basic.class.php
/dokuwiki/inc/auth/ldap.class.php
/dokuwiki/inc/auth/mysql.class.php
/dokuwiki/inc/auth/pgsql.class.php
/dokuwiki/inc/auth/plain.class.php
/dokuwiki/inc/common.php
/dokuwiki/inc/confutils.php
/dokuwiki/inc/feedcreator.class.php
/dokuwiki/inc/fulltext.php
/dokuwiki/inc/indexer.php
/dokuwiki/inc/lang/en/lang.php
/dokuwiki/inc/lang/et/lang.php
/dokuwiki/inc/lang/km/lang.php
/dokuwiki/inc/lang/ku/lang.php
/dokuwiki/inc/lang/mg/lang.php
/dokuwiki/inc/lang/vi/lang.php
/dokuwiki/inc/parser/handler.php
/dokuwiki/inc/parser/lexer.php
/dokuwiki/inc/parser/metadata.php
/dokuwiki/inc/parser/parser.php
/dokuwiki/inc/parser/renderer.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/parser/xhtmlsummary.php
/dokuwiki/inc/search.php
/dokuwiki/inc/template.php
/dokuwiki/inc/toolbar.php
exe/ajax.php
exe/css.php
exe/fetch.php
exe/indexer.php
exe/js.php
exe/opensearch.php
exe/xmlrpc.php
plugins/acl/lang/en/lang.php
plugins/acl/lang/et/lang.php
plugins/acl/lang/vi/lang.php
plugins/admin.php
plugins/info/syntax.php
plugins/plugin/lang/en/lang.php
plugins/revert/admin.php
plugins/revert/lang/en/lang.php
plugins/syntax.php
4871414226-Nov-2010 Michael Hamann <michael@content-space.de>

Fix for $conf['breadcrumbs'] < 0, FS#2107

This fixes an infinite loop in breadcrumbs() and makes the behaviors in
all places where breadcrumbs are used consistent so that non-numeric
values, values

Fix for $conf['breadcrumbs'] < 0, FS#2107

This fixes an infinite loop in breadcrumbs() and makes the behaviors in
all places where breadcrumbs are used consistent so that non-numeric
values, values < 0 and 0 are treated the same way.

show more ...

9821486722-Nov-2010 Michael Hamann <michael@content-space.de>

Render metadata when needed

This changes fundamentally when metadata is rendered. This commit
introduces a new cache file for every page that just contains a
timestamp and is updated whenever the me

Render metadata when needed

This changes fundamentally when metadata is rendered. This commit
introduces a new cache file for every page that just contains a
timestamp and is updated whenever the metadata of that page is rendered.

Metadata is rendered when p_get_metadata is called and the last
rendering has been before a page, metadata, configuration or renderer
update or purge is set like in the xhtml renderer cache.

Metadata is no longer automatically rendered when the xhtml renderer
cache isn't used but will still be rendered when needed as
p_get_metadata is called in the cache.

Metadata is also no longer rendered in the indexer script when missing
as that is already done by pageinfo() before anything else is done so
the indexer script won't be called when there is no metadata file.

show more ...

ba6984cf20-Nov-2010 Caleb Maclennan <caleb@alerque.com>

Turkish language update

11d7187b18-Nov-2010 YooS C <dryoo@live.com>

Korean language update

7ae265d318-Nov-2010 Zbyněk Švec <Zbynek.Svec@septim.cz>

Czech language update

7c2ef4e817-Nov-2010 Tom N Harris <tnharris@whoopdedo.org>

Use a different indexer version when external tokenizer is enabled

1c07b9e616-Nov-2010 Tom N Harris <tnharris@whoopdedo.org>

Use external program to split pages into words

An external tokenizer inserts extra spaces to mark words in the input text.
The text is sent through STDIN and STDOUT file handles.

A good choice for

Use external program to split pages into words

An external tokenizer inserts extra spaces to mark words in the input text.
The text is sent through STDIN and STDOUT file handles.

A good choice for Chinese and Japanese is MeCab.
http://sourceforge.net/projects/mecab/
With the command line 'mecab -O wakati'

show more ...

ee0891d814-Nov-2010 Tom N Harris <tnharris@whoopdedo.org>

Do not assume that index files will be backward compatible

1172f8dc13-Nov-2010 Adrian Lang <dokuwiki@adrianlang.de>

Introduce metadata write wrapper p_save_metadata

p_purge_metadata now updates the metadata cache and the INFO array like the other metadata writing functions

ba9418bc13-Nov-2010 Hakan Sandell <sandell.hakan@gmail.com>

Added XMLRPC dokuwiki:appendPage

8079aa0b13-Nov-2010 Anika Henke <anika@selfthinker.org>

initialised media options modal popup with display:none in JS

c44e5a8813-Nov-2010 Anika Henke <anika@selfthinker.org>

added minimal needed styles for modal windows

9a83dc0d13-Nov-2010 Anika Henke <anika@selfthinker.org>

improved lib styles

cdf966f113-Nov-2010 Dominik Eckelmann <deckelmann@gmail.com>

removed fixme comment

ebb2973713-Nov-2010 Dominik Eckelmann <deckelmann@gmail.com>

fixed mediamanager options + ie6 fix (FS#2074)

afca7e7e12-Nov-2010 Anika Henke <anika@selfthinker.org>

FS#1839: take favicon from mediadir (if it exists)

8cf5aee507-Nov-2010 Anika Henke <anika@selfthinker.org>

added missing styles to print.css (underline, centered images and clearer)

9c1c56fd05-Nov-2010 Elan Ruusamäe <glen@delfi.ee>

- copy over identical sxw,odt fileicons

4ad466ff05-Nov-2010 Elan Ruusamäe <glen@delfi.ee>

- copy over identical tgz,gz fileicons

2fb33dcf05-Nov-2010 Elan Ruusamäe <glen@delfi.ee>

- copy over identical sxi,odp fileicons

b1f351c405-Nov-2010 Elan Ruusamäe <glen@delfi.ee>

- copy over identical html,htm fileicons

d22e55a405-Nov-2010 Elan Ruusamäe <glen@delfi.ee>

- copy over identical sxc,ods,odc fileicons

1...<<121122123124125126127128129130>>...181