History log of /dokuwiki/lib/ (Results 4126 – 4150 of 4525)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
3cb0d4e115-Sep-2006 Andreas Gohr <andi@splitbrain.org>

script fix for IE

darcs-hash:20060915150152-7ad00-9ee841597a011119b96964a1468b1f517fab857a.gz

e45b34cd11-Sep-2006 Ben Coburn <btcoburn@silicodon.net>

changelog redesign update

- Improves handling of deleted revisions.
- Import plugin disables after import.
- Check act reports if plugin is still enabled after the import.
- Import correctly handles

changelog redesign update

- Improves handling of deleted revisions.
- Import plugin disables after import.
- Check act reports if plugin is still enabled after the import.
- Import correctly handles summaries without the minor prefix.
- Newlines and tabs are now striped out of type, sum,
and extra in the changelog.

darcs-hash:20060911014738-05dcb-2f6c9fdffb6346f7d3190610a72b290090b28097.gz

show more ...

d818621608-Sep-2006 Ben Coburn <btcoburn@silicodon.net>

suppress boring errors

Suppress any errors from set_time_limit,
unlink, and file_exists functions.
see: http://www.freelists.org/archives/dokuwiki/09-2006/msg00004.html

darcs-hash:20060908193433-05

suppress boring errors

Suppress any errors from set_time_limit,
unlink, and file_exists functions.
see: http://www.freelists.org/archives/dokuwiki/09-2006/msg00004.html

darcs-hash:20060908193433-05dcb-013617431870ab5bfb2ce8c6e99ba5af13493228.gz

show more ...

4b5f4f4e11-Sep-2006 chris <chris@jalakai.co.uk>

parser caching update

This patch primarily updates p_cached_xhtml() and p_cached_instructions() to
allow their caching logic to be surrounded by an event trigger.

p_cached_xhtml() has been rewritte

parser caching update

This patch primarily updates p_cached_xhtml() and p_cached_instructions() to
allow their caching logic to be surrounded by an event trigger.

p_cached_xhtml() has been rewritten as the more general p_cached_output() to
support other render output formats besides 'xhtml'. All calls to
p_cached_xhtml() have been changed to refer to the new function.

New event:

name: PARSER_CACHE_USE
data: cache object (see below)
action: determine if cache file can be used
preventable: yes
result: bool, true to use cache file, false otherwise

Cache operations have been generalised in a new class, cache, extended to
cache_parser, cache_renderer & cache_instructions. Details can be found in
inc/cache.php

For handling of above event, key properties are:
- page, if present the wiki page id,
may not always be present, e.g. when called for locale xhtml files
- file, source file
- mode, renderer mode (e.g. 'xhtml') or 'i' for instructions

Other changes:
- cache class counts cache hits against attempts, results are stored in
{cache_dir}/cache_stats.txt
- adds metadata dependency to renderer page cache
- replaces purgefile dependency for renderer cache with metadata
'relation references' (internal link) dependency for wiki pages only

darcs-hash:20060911021418-9b6ab-19601ed194b8c8e45236ab72c3e23d78bf777e6c.gz

show more ...

c6ea345d09-Sep-2006 chris <chris@jalakai.co.uk>

minor update to default template

- main.php & detail.php
add check for being run by DokuWiki, die() if not.

darcs-hash:20060909093603-9b6ab-0f8e31e246adba8adc888dbba1f924ff0e455d63.gz

12cd3c9804-Sep-2006 Andreas Gohr <andi@splitbrain.org>

another update for the IE+HTTPS init event problem

darcs-hash:20060904182033-7ad00-c72dfa5fa9f5c44e0fdf09db922a4915935169f7.gz

cb42b03d03-Sep-2006 Anika Henke <a.c.henke@arcor.de>

removed superfluous <br /> after inline tables

darcs-hash:20060903193759-d5083-276d7cb9622d9a009de2aedca8bfba880c3ffbdd.gz

4fe314ea03-Sep-2006 Andreas Gohr <andi@splitbrain.org>

https fix for window.onload

This should fix an issue with IE6 and https where the window.onload magic
would raise a security warning. See
http://dean.edwards.name/weblog/2006/06/again/#comment5776
h

https fix for window.onload

This should fix an issue with IE6 and https where the window.onload magic
would raise a security warning. See
http://dean.edwards.name/weblog/2006/06/again/#comment5776
http://dean.edwards.name/weblog/2006/06/again/#comment5788

needs testing

darcs-hash:20060903162438-7ad00-b29cd50387d1fef95bb688910b41e6b64cfeebca.gz

show more ...

aa84c75b03-Sep-2006 Andreas Gohr <andi@splitbrain.org>

german language update

darcs-hash:20060903081832-7ad00-9ea6aaaf2fb84fa543d3606e634e973711591597.gz

71726d7830-Aug-2006 Ben Coburn <btcoburn@silicodon.net>

scalable changelog redesign

This patch provides a rewritten changelog system that is designed to run
efficiently on both small and large wikis. The patch includes a plugin to
convert changelogs from

scalable changelog redesign

This patch provides a rewritten changelog system that is designed to run
efficiently on both small and large wikis. The patch includes a plugin to
convert changelogs from the current format. The conversion is
non-destructive and happens automatically. For more information on the new
changelog format see "http://wiki.splitbrain.org/wiki:changelog".

Structure
In short the changelog is now stored in per-page changelog files, with a
recent changes cache. The recent changes cache is kept in
"/data/meta/_dokuwiki.changes" and trimmed daily. The per-page changelogs
are kept in "/data/meta/<ns>/<page_id>.changes" files. To preserve
revision information for revisions stored in the attic, the "*.changes"
files are not removed when their page is deleted. This allows the full
life-cycle of page creation, deletion, and reversion to be tracked.

Format
The changelog line format now uses a general "line type" field in place of
the special "minor" change syntax. There is also an extra field that can
be used to store arbitrary data associated with special line types. The
reverted line type (R) is a good example. There the extra field holds the
revision date used as the source for reverting the page. See the wiki for
the complete syntax description.

Code Notes
The changelog functions have been rewritten to load the whole file only if
it is small. For larger files, the function loads only the relevant
chunk(s). Parsed changelog lines are cached in memory to speed future
function calls.

getRevisionInfo
A binary search is used to locate the chunk expected to contain the
requested revision. The whole chunk is parsed, and adjacent lines are
optimistically cached to speed consecutive calls.

getRevisions
Reads the changelog file backwards (newest first) in chunks until the
requested number of lines have been read. Parsed changelog lines are
cached for subsequent calls to getRevisionInfo. Because revisions are read
from the changelog they are no longer guaranteed to exist in the attic.

(Note: Even with lines of arbitrary length getRevisionInfo and
getRevisions never split changelog lines while reading. This is done by
sliding the "file pointer" forward to the end of a line after each blind
seek.)

isMinor
Removed. To detect a minor edit check the type as follows:
$parsed_logline['type']

darcs-hash:20060830182753-05dcb-1c5ea17f581197a33732a8d11da223d809c03506.gz

show more ...


/dokuwiki/_test/cases/inc/pageutils_clean_id.test.php
/dokuwiki/_test/cases/inc/utf8_correctidx.test.php
/dokuwiki/conf/dokuwiki.php
/dokuwiki/data/pages/wiki/syntax.txt
/dokuwiki/inc/auth.php
/dokuwiki/inc/common.php
/dokuwiki/inc/fulltext.php
/dokuwiki/inc/geshi.php
/dokuwiki/inc/geshi/actionscript.php
/dokuwiki/inc/geshi/ada.php
/dokuwiki/inc/geshi/apache.php
/dokuwiki/inc/geshi/applescript.php
/dokuwiki/inc/geshi/asm.php
/dokuwiki/inc/geshi/asp.php
/dokuwiki/inc/geshi/autoit.php
/dokuwiki/inc/geshi/bash.php
/dokuwiki/inc/geshi/blitzbasic.php
/dokuwiki/inc/geshi/c.php
/dokuwiki/inc/geshi/c_mac.php
/dokuwiki/inc/geshi/caddcl.php
/dokuwiki/inc/geshi/cadlisp.php
/dokuwiki/inc/geshi/cfdg.php
/dokuwiki/inc/geshi/cfm.php
/dokuwiki/inc/geshi/cpp.php
/dokuwiki/inc/geshi/csharp.php
/dokuwiki/inc/geshi/css.php
/dokuwiki/inc/geshi/d.php
/dokuwiki/inc/geshi/delphi.php
/dokuwiki/inc/geshi/diff.php
/dokuwiki/inc/geshi/div.php
/dokuwiki/inc/geshi/dos.php
/dokuwiki/inc/geshi/eiffel.php
/dokuwiki/inc/geshi/fortran.php
/dokuwiki/inc/geshi/freebasic.php
/dokuwiki/inc/geshi/gml.php
/dokuwiki/inc/geshi/groovy.php
/dokuwiki/inc/geshi/html4strict.php
/dokuwiki/inc/geshi/idl.php
/dokuwiki/inc/geshi/ini.php
/dokuwiki/inc/geshi/inno.php
/dokuwiki/inc/geshi/java.php
/dokuwiki/inc/geshi/java5.php
/dokuwiki/inc/geshi/javascript.php
/dokuwiki/inc/geshi/lisp.php
/dokuwiki/inc/geshi/lua.php
/dokuwiki/inc/geshi/matlab.php
/dokuwiki/inc/geshi/mpasm.php
/dokuwiki/inc/geshi/mysql.php
/dokuwiki/inc/geshi/nsis.php
/dokuwiki/inc/geshi/objc.php
/dokuwiki/inc/geshi/ocaml-brief.php
/dokuwiki/inc/geshi/ocaml.php
/dokuwiki/inc/geshi/oobas.php
/dokuwiki/inc/geshi/oracle8.php
/dokuwiki/inc/geshi/pascal.php
/dokuwiki/inc/geshi/perl.php
/dokuwiki/inc/geshi/php-brief.php
/dokuwiki/inc/geshi/php.php
/dokuwiki/inc/geshi/python.php
/dokuwiki/inc/geshi/qbasic.php
/dokuwiki/inc/geshi/reg.php
/dokuwiki/inc/geshi/robots.php
/dokuwiki/inc/geshi/ruby.php
/dokuwiki/inc/geshi/sas.php
/dokuwiki/inc/geshi/scheme.php
/dokuwiki/inc/geshi/sdlbasic.php
/dokuwiki/inc/geshi/smalltalk.php
/dokuwiki/inc/geshi/smarty.php
/dokuwiki/inc/geshi/sql.php
/dokuwiki/inc/geshi/tcl.php
/dokuwiki/inc/geshi/text.php
/dokuwiki/inc/geshi/tsql.php
/dokuwiki/inc/geshi/vb.php
/dokuwiki/inc/geshi/vbnet.php
/dokuwiki/inc/geshi/vhdl.php
/dokuwiki/inc/geshi/visualfoxpro.php
/dokuwiki/inc/geshi/winbatch.php
/dokuwiki/inc/geshi/xml.php
/dokuwiki/inc/html.php
/dokuwiki/inc/init.php
/dokuwiki/inc/lang/en/registermail.txt
/dokuwiki/inc/pageutils.php
/dokuwiki/inc/template.php
/dokuwiki/inc/utf8.php
exe/indexer.php
plugins/config/lang/en/lang.php
plugins/config/settings/config.metadata.php
plugins/importoldchangelog/action.php
plugins/plugin/admin.php
e1d60f5826-Aug-2006 Andreas Gohr <andi@splitbrain.org>

strip tags from title #883

This patch no longer uses htmlspecialchars on $conf['title'] when
used in the page title - instead strip_tags is applied. This streamlines
the use of $conf['title']

darcs

strip tags from title #883

This patch no longer uses htmlspecialchars on $conf['title'] when
used in the page title - instead strip_tags is applied. This streamlines
the use of $conf['title']

darcs-hash:20060826180943-7ad00-c8cc155c1e92fad05b85f77841834f782cbf6281.gz

show more ...

fd49f8df25-Aug-2006 chris <chris@jalakai.co.uk>

update config plugin

- add $conf['compression'] meta data and en lang strings
- remove $conf['usegzip'] meta data and en lang strings

Other language strings will need to be updated.

darcs-hash:200

update config plugin

- add $conf['compression'] meta data and en lang strings
- remove $conf['usegzip'] meta data and en lang strings

Other language strings will need to be updated.

darcs-hash:20060825223047-9b6ab-b0c8c6af57847690a6d398d0bd98af9a51911c21.gz

show more ...

a6858c6a23-Aug-2006 chris <chris@jalakai.co.uk>

user manager update

- add capability to send notification emails to users on
creation and password modification (bug#640)
- add success and fail messages for new user addition
- fix bug when modif

user manager update

- add capability to send notification emails to users on
creation and password modification (bug#640)
- add success and fail messages for new user addition
- fix bug when modification of username wasn't allowed,
'Edit user' fields weren't populated
- fix (php5 only?) bug where default group wasn't given to
a new user if no groups were specified
- added explanatory notes concerning default group and
password notification emails

This patch adds several new strings to the plugin's lang.php

darcs-hash:20060823115626-9b6ab-ea98ef630c79b28b52141957deb3efc307a9291d.gz

show more ...

350a873018-Aug-2006 Andreas Gohr <andi@splitbrain.org>

slovak language update

darcs-hash:20060818142400-7ad00-b90e76acbfc37f99d4317fea26d063f67ffb4488.gz

3cb4b39f09-Aug-2006 Ben Coburn <btcoburn@silicodon.net>

Add AJAX_CALL_UNKNOWN event

Allows action plugins to support custom ajax calls.
The event data is the call name from $_POST['call'].
When handling a custom ajax call, remember to use
$event->prevent

Add AJAX_CALL_UNKNOWN event

Allows action plugins to support custom ajax calls.
The event data is the call name from $_POST['call'].
When handling a custom ajax call, remember to use
$event->preventDefault();
to avoid having the
'AJAX call <call> unknown!'
message appended to the output.

darcs-hash:20060809194501-05dcb-0082e4f2a83fc8657fc7cdcf32d44aac8d1a6b99.gz

show more ...

43e1f4d908-Aug-2006 chris <chris@jalakai.co.uk>

plugin manager update - another fix for php5

darcs-hash:20060808131143-9b6ab-1bf57f66c6d1b10305f1bf190c7d507130f84eaa.gz

7a24876f07-Aug-2006 Andreas Gohr <andi@splitbrain.org>

make image details indexable

darcs-hash:20060807205738-7ad00-5492ba5fe3e854f9dc233254535e4e897847353c.gz

346cbc5507-Aug-2006 Andreas Gohr <andi@splitbrain.org>

japanese language update

darcs-hash:20060807200813-7ad00-ca46ec6eca59cc368fbace6f7de337e4d1e997a5.gz

62132d0d07-Aug-2006 chris <chris@jalakai.co.uk>

plugin manager update

fix ordering of plugins for php5

darcs-hash:20060807132242-9b6ab-2dc8e4508dc721908ec6453fc09acec1de23687d.gz

8dbc24f206-Aug-2006 Andreas Gohr <andi@splitbrain.org>

various language fixes

This patch makes sure all languages files have UNIX style line endings
and use correct UTF-8 encoding

darcs-hash:20060806143836-7ad00-2d9c48c5be303565ce461ec977c8792df61fbdd1

various language fixes

This patch makes sure all languages files have UNIX style line endings
and use correct UTF-8 encoding

darcs-hash:20060806143836-7ad00-2d9c48c5be303565ce461ec977c8792df61fbdd1.gz

show more ...


/dokuwiki/inc/lang/ar/locked.txt
/dokuwiki/inc/lang/ar/mailtext.txt
/dokuwiki/inc/lang/ar/newpage.txt
/dokuwiki/inc/lang/ar/norev.txt
/dokuwiki/inc/lang/ar/password.txt
/dokuwiki/inc/lang/ar/revisions.txt
/dokuwiki/inc/lang/ar/searchpage.txt
/dokuwiki/inc/lang/ar/subscribermail.txt
/dokuwiki/inc/lang/ca/conflict.txt
/dokuwiki/inc/lang/cs/editrev.txt
/dokuwiki/inc/lang/cs/locked.txt
/dokuwiki/inc/lang/cs/mailtext.txt
/dokuwiki/inc/lang/cs/newpage.txt
/dokuwiki/inc/lang/cs/norev.txt
/dokuwiki/inc/lang/cs/password.txt
/dokuwiki/inc/lang/cs/read.txt
/dokuwiki/inc/lang/cs/revisions.txt
/dokuwiki/inc/lang/cs/searchpage.txt
/dokuwiki/inc/lang/cs/showrev.txt
/dokuwiki/inc/lang/cs/subscribermail.txt
/dokuwiki/inc/lang/da/locked.txt
/dokuwiki/inc/lang/da/newpage.txt
/dokuwiki/inc/lang/da/norev.txt
/dokuwiki/inc/lang/da/password.txt
/dokuwiki/inc/lang/da/read.txt
/dokuwiki/inc/lang/da/registermail.txt
/dokuwiki/inc/lang/da/searchpage.txt
/dokuwiki/inc/lang/de/editrev.txt
/dokuwiki/inc/lang/de/locked.txt
/dokuwiki/inc/lang/de/newpage.txt
/dokuwiki/inc/lang/de/norev.txt
/dokuwiki/inc/lang/de/password.txt
/dokuwiki/inc/lang/de/read.txt
/dokuwiki/inc/lang/de/revisions.txt
/dokuwiki/inc/lang/de/searchpage.txt
/dokuwiki/inc/lang/de/showrev.txt
/dokuwiki/inc/lang/el/admin.txt
/dokuwiki/inc/lang/el/denied.txt
/dokuwiki/inc/lang/el/diff.txt
/dokuwiki/inc/lang/el/index.txt
/dokuwiki/inc/lang/el/locked.txt
/dokuwiki/inc/lang/el/login.txt
/dokuwiki/inc/lang/el/preview.txt
/dokuwiki/inc/lang/el/recent.txt
/dokuwiki/inc/lang/el/revisions.txt
/dokuwiki/inc/lang/el/searchpage.txt
/dokuwiki/inc/lang/en/norev.txt
/dokuwiki/inc/lang/en/read.txt
/dokuwiki/inc/lang/en/revisions.txt
/dokuwiki/inc/lang/en/showrev.txt
/dokuwiki/inc/lang/eo/editrev.txt
/dokuwiki/inc/lang/eo/locked.txt
/dokuwiki/inc/lang/eo/mailtext.txt
/dokuwiki/inc/lang/eo/newpage.txt
/dokuwiki/inc/lang/eo/norev.txt
/dokuwiki/inc/lang/eo/read.txt
/dokuwiki/inc/lang/eo/revisions.txt
/dokuwiki/inc/lang/eo/searchpage.txt
/dokuwiki/inc/lang/eo/showrev.txt
/dokuwiki/inc/lang/es/editrev.txt
/dokuwiki/inc/lang/es/mailtext.txt
/dokuwiki/inc/lang/es/newpage.txt
/dokuwiki/inc/lang/es/norev.txt
/dokuwiki/inc/lang/es/read.txt
/dokuwiki/inc/lang/es/revisions.txt
/dokuwiki/inc/lang/es/searchpage.txt
/dokuwiki/inc/lang/es/showrev.txt
/dokuwiki/inc/lang/eu/editrev.txt
/dokuwiki/inc/lang/eu/lang.php
/dokuwiki/inc/lang/eu/locked.txt
/dokuwiki/inc/lang/eu/mailtext.txt
/dokuwiki/inc/lang/eu/newpage.txt
/dokuwiki/inc/lang/eu/norev.txt
/dokuwiki/inc/lang/eu/password.txt
/dokuwiki/inc/lang/eu/read.txt
/dokuwiki/inc/lang/eu/revisions.txt
/dokuwiki/inc/lang/eu/searchpage.txt
/dokuwiki/inc/lang/eu/showrev.txt
/dokuwiki/inc/lang/fi/subscribermail.txt
/dokuwiki/inc/lang/fo/locked.txt
/dokuwiki/inc/lang/fo/newpage.txt
/dokuwiki/inc/lang/fo/norev.txt
/dokuwiki/inc/lang/fo/password.txt
/dokuwiki/inc/lang/fo/read.txt
/dokuwiki/inc/lang/fo/searchpage.txt
/dokuwiki/inc/lang/fr/backlinks.txt
/dokuwiki/inc/lang/fr/editrev.txt
/dokuwiki/inc/lang/fr/locked.txt
/dokuwiki/inc/lang/fr/mailtext.txt
/dokuwiki/inc/lang/fr/newpage.txt
/dokuwiki/inc/lang/fr/norev.txt
/dokuwiki/inc/lang/fr/read.txt
/dokuwiki/inc/lang/fr/revisions.txt
/dokuwiki/inc/lang/fr/searchpage.txt
/dokuwiki/inc/lang/fr/showrev.txt
/dokuwiki/inc/lang/fr/subscribermail.txt
/dokuwiki/inc/lang/he/editrev.txt
/dokuwiki/inc/lang/he/lang.php
/dokuwiki/inc/lang/he/mailtext.txt
/dokuwiki/inc/lang/he/newpage.txt
/dokuwiki/inc/lang/he/norev.txt
/dokuwiki/inc/lang/he/read.txt
/dokuwiki/inc/lang/he/revisions.txt
/dokuwiki/inc/lang/he/searchpage.txt
/dokuwiki/inc/lang/he/showrev.txt
/dokuwiki/inc/lang/hu/editrev.txt
/dokuwiki/inc/lang/hu/lang.php
/dokuwiki/inc/lang/hu/locked.txt
/dokuwiki/inc/lang/hu/mailtext.txt
/dokuwiki/inc/lang/hu/newpage.txt
/dokuwiki/inc/lang/hu/norev.txt
/dokuwiki/inc/lang/hu/password.txt
/dokuwiki/inc/lang/hu/read.txt
/dokuwiki/inc/lang/hu/revisions.txt
/dokuwiki/inc/lang/hu/searchpage.txt
/dokuwiki/inc/lang/hu/showrev.txt
/dokuwiki/inc/lang/it/editrev.txt
/dokuwiki/inc/lang/it/install.html
/dokuwiki/inc/lang/it/locked.txt
/dokuwiki/inc/lang/it/mailtext.txt
/dokuwiki/inc/lang/it/newpage.txt
/dokuwiki/inc/lang/it/norev.txt
/dokuwiki/inc/lang/it/password.txt
/dokuwiki/inc/lang/it/read.txt
/dokuwiki/inc/lang/it/revisions.txt
/dokuwiki/inc/lang/it/searchpage.txt
/dokuwiki/inc/lang/it/showrev.txt
/dokuwiki/inc/lang/it/subscribermail.txt
/dokuwiki/inc/lang/ja/admin.txt
/dokuwiki/inc/lang/ja/backlinks.txt
/dokuwiki/inc/lang/ja/conflict.txt
/dokuwiki/inc/lang/ja/denied.txt
/dokuwiki/inc/lang/ja/diff.txt
/dokuwiki/inc/lang/ja/editrev.txt
/dokuwiki/inc/lang/ja/index.txt
/dokuwiki/inc/lang/ja/locked.txt
/dokuwiki/inc/lang/ja/login.txt
/dokuwiki/inc/lang/ja/mailtext.txt
/dokuwiki/inc/lang/ja/newpage.txt
/dokuwiki/inc/lang/ja/norev.txt
/dokuwiki/inc/lang/ja/password.txt
/dokuwiki/inc/lang/ja/preview.txt
/dokuwiki/inc/lang/ja/read.txt
/dokuwiki/inc/lang/ja/recent.txt
/dokuwiki/inc/lang/ja/register.txt
/dokuwiki/inc/lang/ja/revisions.txt
/dokuwiki/inc/lang/ja/searchpage.txt
/dokuwiki/inc/lang/ja/showrev.txt
/dokuwiki/inc/lang/ja/subscribermail.txt
/dokuwiki/inc/lang/ja/wordblock.txt
/dokuwiki/inc/lang/ko/editrev.txt
/dokuwiki/inc/lang/ko/locked.txt
/dokuwiki/inc/lang/ko/mailtext.txt
/dokuwiki/inc/lang/ko/newpage.txt
/dokuwiki/inc/lang/ko/norev.txt
/dokuwiki/inc/lang/ko/password.txt
/dokuwiki/inc/lang/ko/revisions.txt
/dokuwiki/inc/lang/ko/searchpage.txt
/dokuwiki/inc/lang/ko/showrev.txt
/dokuwiki/inc/lang/lt/editrev.txt
/dokuwiki/inc/lang/lt/locked.txt
/dokuwiki/inc/lang/lt/mailtext.txt
/dokuwiki/inc/lang/lt/newpage.txt
/dokuwiki/inc/lang/lt/norev.txt
/dokuwiki/inc/lang/lt/password.txt
/dokuwiki/inc/lang/lt/read.txt
/dokuwiki/inc/lang/lt/revisions.txt
/dokuwiki/inc/lang/lt/searchpage.txt
/dokuwiki/inc/lang/lt/showrev.txt
/dokuwiki/inc/lang/lt/subscribermail.txt
/dokuwiki/inc/lang/nl/editrev.txt
/dokuwiki/inc/lang/nl/newpage.txt
/dokuwiki/inc/lang/nl/norev.txt
/dokuwiki/inc/lang/nl/password.txt
/dokuwiki/inc/lang/nl/read.txt
/dokuwiki/inc/lang/nl/revisions.txt
/dokuwiki/inc/lang/nl/searchpage.txt
/dokuwiki/inc/lang/nl/showrev.txt
/dokuwiki/inc/lang/no/showrev.txt
/dokuwiki/inc/lang/pl/subscribermail.txt
/dokuwiki/inc/lang/pt-br/backlinks.txt
/dokuwiki/inc/lang/pt-br/conflict.txt
/dokuwiki/inc/lang/pt-br/diff.txt
/dokuwiki/inc/lang/pt-br/editrev.txt
/dokuwiki/inc/lang/pt-br/index.txt
/dokuwiki/inc/lang/pt-br/lang.php
/dokuwiki/inc/lang/pt-br/locked.txt
/dokuwiki/inc/lang/pt-br/login.txt
/dokuwiki/inc/lang/pt-br/mailtext.txt
/dokuwiki/inc/lang/pt-br/newpage.txt
/dokuwiki/inc/lang/pt-br/norev.txt
/dokuwiki/inc/lang/pt-br/preview.txt
/dokuwiki/inc/lang/pt-br/read.txt
/dokuwiki/inc/lang/pt-br/recent.txt
/dokuwiki/inc/lang/pt-br/register.txt
/dokuwiki/inc/lang/pt-br/revisions.txt
/dokuwiki/inc/lang/pt-br/searchpage.txt
/dokuwiki/inc/lang/pt-br/showrev.txt
/dokuwiki/inc/lang/ro/editrev.txt
/dokuwiki/inc/lang/ro/locked.txt
/dokuwiki/inc/lang/ro/mailtext.txt
/dokuwiki/inc/lang/ro/newpage.txt
/dokuwiki/inc/lang/ro/norev.txt
/dokuwiki/inc/lang/ro/password.txt
/dokuwiki/inc/lang/ro/read.txt
/dokuwiki/inc/lang/ro/revisions.txt
/dokuwiki/inc/lang/ro/searchpage.txt
/dokuwiki/inc/lang/ro/showrev.txt
/dokuwiki/inc/lang/ru/editrev.txt
/dokuwiki/inc/lang/ru/locked.txt
/dokuwiki/inc/lang/ru/mailtext.txt
/dokuwiki/inc/lang/ru/norev.txt
/dokuwiki/inc/lang/ru/password.txt
/dokuwiki/inc/lang/ru/read.txt
/dokuwiki/inc/lang/ru/revisions.txt
/dokuwiki/inc/lang/ru/searchpage.txt
/dokuwiki/inc/lang/ru/showrev.txt
/dokuwiki/inc/lang/ru/subscribermail.txt
/dokuwiki/inc/lang/sl/editrev.txt
/dokuwiki/inc/lang/sl/locked.txt
/dokuwiki/inc/lang/sl/mailtext.txt
/dokuwiki/inc/lang/sl/newpage.txt
/dokuwiki/inc/lang/sl/norev.txt
/dokuwiki/inc/lang/sl/password.txt
/dokuwiki/inc/lang/sl/read.txt
/dokuwiki/inc/lang/sl/revisions.txt
/dokuwiki/inc/lang/sl/searchpage.txt
/dokuwiki/inc/lang/sl/showrev.txt
/dokuwiki/inc/lang/sr/editrev.txt
/dokuwiki/inc/lang/sr/locked.txt
/dokuwiki/inc/lang/sr/mailtext.txt
/dokuwiki/inc/lang/sr/newpage.txt
/dokuwiki/inc/lang/sr/norev.txt
/dokuwiki/inc/lang/sr/password.txt
/dokuwiki/inc/lang/sr/read.txt
/dokuwiki/inc/lang/sr/revisions.txt
/dokuwiki/inc/lang/sr/searchpage.txt
/dokuwiki/inc/lang/sr/showrev.txt
/dokuwiki/inc/lang/sr/subscribermail.txt
/dokuwiki/inc/lang/sv/showrev.txt
/dokuwiki/inc/lang/uk/locked.txt
/dokuwiki/inc/lang/vi/admin.txt
/dokuwiki/inc/lang/vi/backlinks.txt
/dokuwiki/inc/lang/vi/conflict.txt
/dokuwiki/inc/lang/vi/denied.txt
/dokuwiki/inc/lang/vi/diff.txt
/dokuwiki/inc/lang/vi/editrev.txt
/dokuwiki/inc/lang/vi/index.txt
/dokuwiki/inc/lang/vi/lang.php
/dokuwiki/inc/lang/vi/locked.txt
/dokuwiki/inc/lang/vi/login.txt
/dokuwiki/inc/lang/vi/mailtext.txt
/dokuwiki/inc/lang/vi/newpage.txt
/dokuwiki/inc/lang/vi/norev.txt
/dokuwiki/inc/lang/vi/password.txt
/dokuwiki/inc/lang/vi/preview.txt
/dokuwiki/inc/lang/vi/read.txt
/dokuwiki/inc/lang/vi/recent.txt
/dokuwiki/inc/lang/vi/register.txt
/dokuwiki/inc/lang/vi/revisions.txt
/dokuwiki/inc/lang/vi/searchpage.txt
/dokuwiki/inc/lang/vi/showrev.txt
/dokuwiki/inc/lang/vi/wordblock.txt
/dokuwiki/inc/lang/zh-tw/subscribermail.txt
plugins/acl/lang/cs/lang.php
plugins/acl/lang/el/lang.php
plugins/acl/lang/ja/intro.txt
plugins/acl/lang/vi/intro.txt
plugins/acl/lang/vi/lang.php
plugins/plugin/lang/de/admin_plugin.txt
7757c81006-Aug-2006 polinnia <polinnia@tin.it>

IT-20060806-patch

completed IT translation for new release of Dokuwiki

darcs-hash:20060806094947-57bea-f82fb29ada061db880bbab84d7cee79711f3e49b.gz

86a7937005-Aug-2006 Anika Henke <a.c.henke@arcor.de>

semantic css placeholders - part 2

darcs-hash:20060805150015-d5083-4ac2de4b475c70d386745aefd606ffb396cf8f92.gz

47878d3505-Aug-2006 Anika Henke <a.c.henke@arcor.de>

semantic css placeholders - part 1

darcs-hash:20060805141743-d5083-35b1edef7cd407f93b593e0a1cbbf1f548e86add.gz

f255651b31-Jul-2006 miguel.pagano <miguel.pagano@gmail.com>

Missing Spanish translations

darcs-hash:20060731224944-072b4-a965cc88f22614bde7d57fa2d714c749933d66f8.gz

b895ecb202-Aug-2006 Grzegorz Zur <grzegorz.zur@gmail.com>

polish lang update

darcs-hash:20060802132121-e561a-20e7882da3fe22eb06598a52d4e80fe64af441f0.gz

1...<<161162163164165166167168169170>>...181