History log of /dokuwiki/conf/ (Results 201 – 225 of 303)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
f6e0e34017-Sep-2006 Andreas Gohr <andi@splitbrain.org>

disable debugging by default

darcs-hash:20060917183150-7ad00-1672f8ef23dc49b6cdfd43d29338dab6a14a928c.gz

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

update for updatecheck function

Messages are now displayed to all users if ACL is not enabled. The update-URL
changed to http://update.dokuwiki.org/check/

darcs-hash:20060917145025-7ad00-1d64b90e51

update for updatecheck function

Messages are now displayed to all users if ACL is not enabled. The update-URL
changed to http://update.dokuwiki.org/check/

darcs-hash:20060917145025-7ad00-1d64b90e51c1a49567a28b132caf79ae0f124c8e.gz

show more ...

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

updatecheck feature

This patch adds a feature to let DokuWiki automatically check if updates are
available or any other important messages (like security warnings) and then
display this info to the

updatecheck feature

This patch adds a feature to let DokuWiki automatically check if updates are
available or any other important messages (like security warnings) and then
display this info to the admin user.

DokuWiki will contact the URL http://www.splitbrain.org/lib/exe/msg.php
with a parameter telling it which messages it already know (read from
conf/msg) - the server side script then will return all new messages.

The messages will be displayed until DokuWiki was upgraded or conf/msg
was updated manually. Messages are cached and only checked once a day.

The messenger URL will probably change before the next release.

darcs-hash:20060916210229-7ad00-7ac592650e171ae4144b0eb47a751a4ca480f031.gz

show more ...


/dokuwiki/_test/cases/inc/common_clientip.test.php
/dokuwiki/_test/cases/inc/utf8_substr.test.php
/dokuwiki/bin/.htaccess
/dokuwiki/bin/dwpage.php
/dokuwiki/bin/indexer.php
/dokuwiki/bin/wantedpages.php
dokuwiki.php
/dokuwiki/doku.php
/dokuwiki/inc/DifferenceEngine.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/auth/plain.class.php
/dokuwiki/inc/cache.php
/dokuwiki/inc/changelog.php
/dokuwiki/inc/common.php
/dokuwiki/inc/fulltext.php
/dokuwiki/inc/html.php
/dokuwiki/inc/indexer.php
/dokuwiki/inc/infoutils.php
/dokuwiki/inc/init.php
/dokuwiki/inc/io.php
/dokuwiki/inc/lang/da/registermail.txt
/dokuwiki/inc/lang/de/registermail.txt
/dokuwiki/inc/lang/en/registermail.txt
/dokuwiki/inc/lang/es/registermail.txt
/dokuwiki/inc/lang/et/registermail.txt
/dokuwiki/inc/lang/fr/registermail.txt
/dokuwiki/inc/lang/it/registermail.txt
/dokuwiki/inc/lang/ja/registermail.txt
/dokuwiki/inc/lang/pl/registermail.txt
/dokuwiki/inc/lang/sk/lang.php
/dokuwiki/inc/lang/sk/registermail.txt
/dokuwiki/inc/lang/uk/registermail.txt
/dokuwiki/inc/pageutils.php
/dokuwiki/inc/parser/metadata.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/parserutils.php
/dokuwiki/inc/pluginutils.php
/dokuwiki/inc/template.php
/dokuwiki/inc/utf8.php
/dokuwiki/lib/exe/detail.php
/dokuwiki/lib/exe/indexer.php
/dokuwiki/lib/images/notify.png
/dokuwiki/lib/plugins/base.php
/dokuwiki/lib/plugins/config/lang/de/lang.php
/dokuwiki/lib/plugins/config/lang/en/lang.php
/dokuwiki/lib/plugins/config/lang/ja/lang.php
/dokuwiki/lib/plugins/config/settings/config.class.php
/dokuwiki/lib/plugins/config/settings/config.metadata.php
/dokuwiki/lib/plugins/importoldchangelog/action.php
/dokuwiki/lib/plugins/plugin/admin.php
/dokuwiki/lib/plugins/syntax.php
/dokuwiki/lib/plugins/usermanager/lang/de/lang.php
/dokuwiki/lib/plugins/usermanager/lang/en/lang.php
/dokuwiki/lib/plugins/usermanager/lang/ja/lang.php
/dokuwiki/lib/scripts/events.js
/dokuwiki/lib/styles/style.css
/dokuwiki/lib/tpl/default/design.css
/dokuwiki/lib/tpl/default/detail.php
/dokuwiki/lib/tpl/default/main.php
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.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
/dokuwiki/lib/exe/indexer.php
/dokuwiki/lib/plugins/config/lang/en/lang.php
/dokuwiki/lib/plugins/config/settings/config.metadata.php
/dokuwiki/lib/plugins/importoldchangelog/action.php
/dokuwiki/lib/plugins/plugin/admin.php
/dokuwiki/lib/tpl/default/detail.php
/dokuwiki/lib/tpl/default/main.php
/dokuwiki/lib/tpl/default/mediamanager.php
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 ...

ff3ed99f23-Aug-2006 marcel <marcel@rucksackreinigung.de>

Added bz2 compression support for Attic

darcs-hash:20060823211149-9c1ae-569f295c33dc798a429a373f48cb09122334ea29.gz


/dokuwiki/_test/cases/inc/common_clientip.test.php
/dokuwiki/_test/cases/inc/pageutils_clean_id.test.php
/dokuwiki/_test/cases/inc/pageutils_resolve_pageid.test.php
/dokuwiki/_test/cases/inc/parser/parser.group.php
/dokuwiki/_test/cases/inc/parser/parser.inc.php
/dokuwiki/_test/cases/inc/parser/parser_eol.test.php
/dokuwiki/_test/cases/inc/parser/parser_footnote.test.php
/dokuwiki/_test/cases/inc/parser/parser_formatting.test.php
/dokuwiki/_test/cases/inc/parser/parser_headers.test.php
/dokuwiki/_test/cases/inc/parser/parser_i18n.test.php
/dokuwiki/_test/cases/inc/parser/parser_links.test.php
/dokuwiki/_test/cases/inc/parser/parser_lists.test.php
/dokuwiki/_test/cases/inc/parser/parser_preformatted.test.php
/dokuwiki/_test/cases/inc/parser/parser_quote.test.php
/dokuwiki/_test/cases/inc/parser/parser_replacements.test.php
/dokuwiki/_test/cases/inc/parser/parser_table.test.php
/dokuwiki/_test/cases/inc/parser/parser_unformatted.test.php
/dokuwiki/_test/cases/lib/exe/js_js_compress.test.php
/dokuwiki/_test/index.php
/dokuwiki/_test/lib/testmanager.php
dokuwiki.php
/dokuwiki/data/pages/wiki/syntax.txt
/dokuwiki/inc/auth.php
/dokuwiki/inc/auth/mysql.class.php
/dokuwiki/inc/auth/punbb.class.php
/dokuwiki/inc/common.php
/dokuwiki/inc/events.php
/dokuwiki/inc/fulltext.php
/dokuwiki/inc/geshi.php
/dokuwiki/inc/init.php
/dokuwiki/inc/io.php
/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/draft.txt
/dokuwiki/inc/lang/da/lang.php
/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/pwconfirm.txt
/dokuwiki/inc/lang/da/read.txt
/dokuwiki/inc/lang/da/registermail.txt
/dokuwiki/inc/lang/da/searchpage.txt
/dokuwiki/inc/lang/de/draft.txt
/dokuwiki/inc/lang/de/editrev.txt
/dokuwiki/inc/lang/de/install.html
/dokuwiki/inc/lang/de/lang.php
/dokuwiki/inc/lang/de/locked.txt
/dokuwiki/inc/lang/de/mailtext.txt
/dokuwiki/inc/lang/de/newpage.txt
/dokuwiki/inc/lang/de/norev.txt
/dokuwiki/inc/lang/de/password.txt
/dokuwiki/inc/lang/de/pwconfirm.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/draft.txt
/dokuwiki/inc/lang/en/lang.php
/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/draft.txt
/dokuwiki/inc/lang/es/editrev.txt
/dokuwiki/inc/lang/es/install.html
/dokuwiki/inc/lang/es/lang.php
/dokuwiki/inc/lang/es/mailtext.txt
/dokuwiki/inc/lang/es/newpage.txt
/dokuwiki/inc/lang/es/norev.txt
/dokuwiki/inc/lang/es/pwconfirm.txt
/dokuwiki/inc/lang/es/read.txt
/dokuwiki/inc/lang/es/registermail.txt
/dokuwiki/inc/lang/es/revisions.txt
/dokuwiki/inc/lang/es/searchpage.txt
/dokuwiki/inc/lang/es/showrev.txt
/dokuwiki/inc/lang/et/draft.txt
/dokuwiki/inc/lang/et/lang.php
/dokuwiki/inc/lang/et/pwconfirm.txt
/dokuwiki/inc/lang/et/registermail.txt
/dokuwiki/inc/lang/et/resendpwd.txt
/dokuwiki/inc/lang/et/stopwords.txt
/dokuwiki/inc/lang/et/subscribermail.txt
/dokuwiki/inc/lang/et/updateprofile.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/install.html
/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/draft.txt
/dokuwiki/inc/lang/fr/editrev.txt
/dokuwiki/inc/lang/fr/install.html
/dokuwiki/inc/lang/fr/lang.php
/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/preview.txt
/dokuwiki/inc/lang/fr/pwconfirm.txt
/dokuwiki/inc/lang/fr/read.txt
/dokuwiki/inc/lang/fr/registermail.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/draft.txt
/dokuwiki/inc/lang/it/editrev.txt
/dokuwiki/inc/lang/it/install.html
/dokuwiki/inc/lang/it/lang.php
/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/pwconfirm.txt
/dokuwiki/inc/lang/it/read.txt
/dokuwiki/inc/lang/it/registermail.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/draft.txt
/dokuwiki/inc/lang/ja/editrev.txt
/dokuwiki/inc/lang/ja/index.txt
/dokuwiki/inc/lang/ja/install.html
/dokuwiki/inc/lang/ja/lang.php
/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/pwconfirm.txt
/dokuwiki/inc/lang/ja/read.txt
/dokuwiki/inc/lang/ja/recent.txt
/dokuwiki/inc/lang/ja/register.txt
/dokuwiki/inc/lang/ja/registermail.txt
/dokuwiki/inc/lang/ja/resendpwd.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/admin.txt
/dokuwiki/inc/lang/pl/draft.txt
/dokuwiki/inc/lang/pl/editrev.txt
/dokuwiki/inc/lang/pl/install.html
/dokuwiki/inc/lang/pl/lang.php
/dokuwiki/inc/lang/pl/mailtext.txt
/dokuwiki/inc/lang/pl/pwconfirm.txt
/dokuwiki/inc/lang/pl/registermail.txt
/dokuwiki/inc/lang/pl/resendpwd.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/sk/draft.txt
/dokuwiki/inc/lang/sk/install.html
/dokuwiki/inc/lang/sk/pwconfirm.txt
/dokuwiki/inc/lang/sk/registermail.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/admin.txt
/dokuwiki/inc/lang/uk/backlinks.txt
/dokuwiki/inc/lang/uk/conflict.txt
/dokuwiki/inc/lang/uk/denied.txt
/dokuwiki/inc/lang/uk/diff.txt
/dokuwiki/inc/lang/uk/draft.txt
/dokuwiki/inc/lang/uk/edit.txt
/dokuwiki/inc/lang/uk/editrev.txt
/dokuwiki/inc/lang/uk/index.txt
/dokuwiki/inc/lang/uk/install.html
/dokuwiki/inc/lang/uk/lang.php
/dokuwiki/inc/lang/uk/locked.txt
/dokuwiki/inc/lang/uk/login.txt
/dokuwiki/inc/lang/uk/mailtext.txt
/dokuwiki/inc/lang/uk/newpage.txt
/dokuwiki/inc/lang/uk/norev.txt
/dokuwiki/inc/lang/uk/password.txt
/dokuwiki/inc/lang/uk/preview.txt
/dokuwiki/inc/lang/uk/pwconfirm.txt
/dokuwiki/inc/lang/uk/read.txt
/dokuwiki/inc/lang/uk/recent.txt
/dokuwiki/inc/lang/uk/register.txt
/dokuwiki/inc/lang/uk/registermail.txt
/dokuwiki/inc/lang/uk/resendpwd.txt
/dokuwiki/inc/lang/uk/revisions.txt
/dokuwiki/inc/lang/uk/searchpage.txt
/dokuwiki/inc/lang/uk/showrev.txt
/dokuwiki/inc/lang/uk/stopwords.txt
/dokuwiki/inc/lang/uk/subscribermail.txt
/dokuwiki/inc/lang/uk/updateprofile.txt
/dokuwiki/inc/lang/uk/wordblock.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
/dokuwiki/inc/media.php
/dokuwiki/inc/pageutils.php
/dokuwiki/inc/parser/handler.php
/dokuwiki/inc/parser/lexer.php
/dokuwiki/inc/parser/parser.php
/dokuwiki/inc/parser/renderer.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/parserutils.php
/dokuwiki/inc/pluginutils.php
/dokuwiki/inc/template.php
/dokuwiki/inc/utf8.php
/dokuwiki/install.php
/dokuwiki/lib/exe/ajax.php
/dokuwiki/lib/exe/detail.php
/dokuwiki/lib/exe/js.php
/dokuwiki/lib/exe/spellcheck.php
/dokuwiki/lib/plugins/acl/lang/cs/lang.php
/dokuwiki/lib/plugins/acl/lang/el/lang.php
/dokuwiki/lib/plugins/acl/lang/fr/intro.txt
/dokuwiki/lib/plugins/acl/lang/ja/intro.txt
/dokuwiki/lib/plugins/acl/lang/pl/lang.php
/dokuwiki/lib/plugins/acl/lang/uk/intro.txt
/dokuwiki/lib/plugins/acl/lang/uk/lang.php
/dokuwiki/lib/plugins/acl/lang/vi/intro.txt
/dokuwiki/lib/plugins/acl/lang/vi/lang.php
/dokuwiki/lib/plugins/config/admin.php
/dokuwiki/lib/plugins/config/lang/da/lang.php
/dokuwiki/lib/plugins/config/lang/de/lang.php
/dokuwiki/lib/plugins/config/lang/es/lang.php
/dokuwiki/lib/plugins/config/lang/fr/lang.php
/dokuwiki/lib/plugins/config/lang/it/lang.php
/dokuwiki/lib/plugins/config/lang/ja/intro.txt
/dokuwiki/lib/plugins/config/lang/ja/lang.php
/dokuwiki/lib/plugins/config/lang/pl/lang.php
/dokuwiki/lib/plugins/config/lang/uk/intro.txt
/dokuwiki/lib/plugins/config/lang/uk/lang.php
/dokuwiki/lib/plugins/config/settings/config.class.php
/dokuwiki/lib/plugins/config/style.css
/dokuwiki/lib/plugins/plugin/admin.php
/dokuwiki/lib/plugins/plugin/lang/de/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/de/lang.php
/dokuwiki/lib/plugins/plugin/lang/en/lang.php
/dokuwiki/lib/plugins/plugin/lang/es/lang.php
/dokuwiki/lib/plugins/plugin/lang/fr/lang.php
/dokuwiki/lib/plugins/plugin/lang/ja/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/ja/lang.php
/dokuwiki/lib/plugins/plugin/lang/pl/lang.php
/dokuwiki/lib/plugins/plugin/lang/sk/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/sk/lang.php
/dokuwiki/lib/plugins/plugin/lang/uk/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/uk/lang.php
/dokuwiki/lib/plugins/usermanager/admin.php
/dokuwiki/lib/plugins/usermanager/lang/de/lang.php
/dokuwiki/lib/plugins/usermanager/lang/en/lang.php
/dokuwiki/lib/plugins/usermanager/lang/es/lang.php
/dokuwiki/lib/plugins/usermanager/lang/fr/lang.php
/dokuwiki/lib/plugins/usermanager/lang/ja/lang.php
/dokuwiki/lib/plugins/usermanager/lang/pl/lang.php
/dokuwiki/lib/plugins/usermanager/lang/sk/add.txt
/dokuwiki/lib/plugins/usermanager/lang/sk/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/sk/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/sk/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/sk/lang.php
/dokuwiki/lib/plugins/usermanager/lang/sk/list.txt
/dokuwiki/lib/plugins/usermanager/lang/uk/add.txt
/dokuwiki/lib/plugins/usermanager/lang/uk/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/uk/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/uk/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/uk/lang.php
/dokuwiki/lib/plugins/usermanager/lang/uk/list.txt
/dokuwiki/lib/scripts/spellcheck.js
/dokuwiki/lib/styles/spellcheck.css
/dokuwiki/lib/tpl/default/design.css
/dokuwiki/lib/tpl/default/images/inputshadow.png
/dokuwiki/lib/tpl/default/layout.css
/dokuwiki/lib/tpl/default/media.css
/dokuwiki/lib/tpl/default/style.ini
8af2e4bb28-Jul-2006 Andreas Gohr <andi@splitbrain.org>

default policy for installer

darcs-hash:20060728093653-7ad00-fc481b0ae7707516de089bfd88dba3eee0f33f3d.gz


acl.auth.php.dist
/dokuwiki/inc/events.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/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/lang/da/lang.php
/dokuwiki/inc/lang/en/install.html
/dokuwiki/inc/lang/en/lang.php
/dokuwiki/inc/parserutils.php
/dokuwiki/inc/template.php
/dokuwiki/install.php
/dokuwiki/lib/plugins/config/lang/da/lang.php
/dokuwiki/lib/plugins/plugin/admin.php
1d5856cf14-Jul-2006 Andreas Gohr <andi@splitbrain.org>

two-stage password reset

This patch changes the password reset function to a two-stage process.
After requesting a new password a confirmation email is sent first, only
if the link contained in this

two-stage password reset

This patch changes the password reset function to a two-stage process.
After requesting a new password a confirmation email is sent first, only
if the link contained in this mail is used the password is changed for real.

This makes sure malicious people can't reset passwords for other users.

darcs-hash:20060714110548-7ad00-c1e23fd51cc2d2f16473914421ebe0f9c3b2ba8c.gz

show more ...

409d7af702-Jul-2006 Andreas Gohr <andi@splitbrain.org>

disableactions support

This patch adds a config option to disable certain internal action commands of
DokuWiki's main dispatcher.

The options resendpasswd and openregister were removed because they

disableactions support

This patch adds a config option to disable certain internal action commands of
DokuWiki's main dispatcher.

The options resendpasswd and openregister were removed because they can now set
through this new option.

The config plugin needs to be adjusted.

darcs-hash:20060702121622-7ad00-1e80e77bcfb0ae561fe7abd79cfbe1bb158be720.gz

show more ...


/dokuwiki/_test/cases/inc/parser/parser_headers.test.php
/dokuwiki/_test/cases/inc/utf8_stripspecials.test.php
/dokuwiki/_test/cases/inc/utf8_substr.test.php
/dokuwiki/_test/cases/lib/exe/js_js_compress.test.php
dokuwiki.php
/dokuwiki/data/meta/_dummy
/dokuwiki/data/pages/wiki/dokuwiki.txt
/dokuwiki/data/pages/wiki/syntax.txt
/dokuwiki/inc/actions.php
/dokuwiki/inc/aspell.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/common.php
/dokuwiki/inc/confutils.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/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/indexer.php
/dokuwiki/inc/lang/fi/lang.php
/dokuwiki/inc/lang/zh-tw/lang.php
/dokuwiki/inc/lang/zh-tw/resendpwd.txt
/dokuwiki/inc/lang/zh-tw/updateprofile.txt
/dokuwiki/inc/pageutils.php
/dokuwiki/inc/parser/handler.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/parserutils.php
/dokuwiki/inc/template.php
/dokuwiki/lib/exe/css.php
/dokuwiki/lib/exe/indexer.php
/dokuwiki/lib/exe/js.php
/dokuwiki/lib/images/fileicons/bz2.png
/dokuwiki/lib/images/fileicons/conf.png
/dokuwiki/lib/images/fileicons/deb.png
/dokuwiki/lib/images/fileicons/doc.png
/dokuwiki/lib/images/fileicons/file.png
/dokuwiki/lib/images/fileicons/gif.png
/dokuwiki/lib/images/fileicons/gz.png
/dokuwiki/lib/images/fileicons/htm.png
/dokuwiki/lib/images/fileicons/html.png
/dokuwiki/lib/images/fileicons/jpeg.png
/dokuwiki/lib/images/fileicons/jpg.png
/dokuwiki/lib/images/fileicons/odc.png
/dokuwiki/lib/images/fileicons/odf.png
/dokuwiki/lib/images/fileicons/odg.png
/dokuwiki/lib/images/fileicons/odi.png
/dokuwiki/lib/images/fileicons/odp.png
/dokuwiki/lib/images/fileicons/ods.png
/dokuwiki/lib/images/fileicons/odt.png
/dokuwiki/lib/images/fileicons/pdf.png
/dokuwiki/lib/images/fileicons/png.png
/dokuwiki/lib/images/fileicons/ppt.png
/dokuwiki/lib/images/fileicons/ps.png
/dokuwiki/lib/images/fileicons/rpm.png
/dokuwiki/lib/images/fileicons/rtf.png
/dokuwiki/lib/images/fileicons/swf.png
/dokuwiki/lib/images/fileicons/sxc.png
/dokuwiki/lib/images/fileicons/sxd.png
/dokuwiki/lib/images/fileicons/sxi.png
/dokuwiki/lib/images/fileicons/sxw.png
/dokuwiki/lib/images/fileicons/tar.png
/dokuwiki/lib/images/fileicons/tgz.png
/dokuwiki/lib/images/fileicons/txt.png
/dokuwiki/lib/images/fileicons/xls.png
/dokuwiki/lib/images/fileicons/xml.png
/dokuwiki/lib/images/fileicons/zip.png
/dokuwiki/lib/plugins/acl/lang/el/intro.txt
/dokuwiki/lib/plugins/acl/lang/el/lang.php
/dokuwiki/lib/plugins/acl/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/config/lang/en/lang.php
/dokuwiki/lib/plugins/config/settings/config.metadata.php
/dokuwiki/lib/plugins/plugin/admin.php
/dokuwiki/lib/plugins/plugin/style.css
/dokuwiki/lib/plugins/usermanager/lang/el/add.txt
/dokuwiki/lib/plugins/usermanager/lang/el/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/el/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/el/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/el/lang.php
/dokuwiki/lib/plugins/usermanager/lang/el/list.txt
/dokuwiki/lib/plugins/usermanager/lang/zh-tw/add.txt
/dokuwiki/lib/plugins/usermanager/lang/zh-tw/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/zh-tw/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/zh-tw/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/usermanager/lang/zh-tw/list.txt
/dokuwiki/lib/scripts/events.js
/dokuwiki/lib/scripts/media.js
/dokuwiki/lib/scripts/script.js
/dokuwiki/lib/scripts/spellcheck.js
/dokuwiki/lib/styles/style.css
/dokuwiki/lib/tpl/default/design.css
/dokuwiki/lib/tpl/default/layout.css
/dokuwiki/lib/tpl/default/print.css
/dokuwiki/lib/tpl/default/rtl.css
a06e4bdb15-Jun-2006 Sebastian Harl <sh@tokkee.org>

register notify #826

A small patch for dokuwiki which enables dokuwiki to notify the
administrator about new user registrations

darcs-hash:20060615194419-022eb-51630aff3c6d93abc656742fc0bc723b93f97

register notify #826

A small patch for dokuwiki which enables dokuwiki to notify the
administrator about new user registrations

darcs-hash:20060615194419-022eb-51630aff3c6d93abc656742fc0bc723b93f97734.gz

show more ...

847b829815-Jun-2006 Andreas Gohr <andi@splitbrain.org>

$conf['fetchsize'] added

This patch adds an option to configure the maximum size for files the fetch.php
will ever download. Setting this to 0 completely turns of the caching of external
media files

$conf['fetchsize'] added

This patch adds an option to configure the maximum size for files the fetch.php
will ever download. Setting this to 0 completely turns of the caching of external
media files.

Disadvantages of setting a low or zero fetchsize:

* fetch.php needs to download images to be able to resize them. When the used
fetchsize prevents the downloading the images can only be resized by the
browser which means the browser will need to download the fullsized image first.

* If the linked external media files vanishes it will no longer display in the
wiki because it is not cached.

Advantages of setting a low or zero fetchsize:

* fetch.php may be used for a possible denial of service attack by requesting
many big external files.

* The created cache files may take a lot of space on the server

I recommend to leave the setting at 2MB for internal and private wikis and lower
the setting to about 200 to 500 Kb for bigger public Wikis.

Note: the caching of files uploaded through the media manager is not affected by
this setting.

darcs-hash:20060615184847-7ad00-04fc39928f7d72e56f5c5e271013ef265436e6c9.gz

show more ...


/dokuwiki/.htaccess.dist
/dokuwiki/_test/cases/inc/mail_quoted_printable_encode.php
/dokuwiki/_test/cases/inc/pageutils_resolve_pageid.test.php
/dokuwiki/_test/cases/inc/parser/parser_headers.test.php
/dokuwiki/_test/cases/inc/parser/parser_i18n.test.php
/dokuwiki/_test/cases/lib/exe/js_js_compress.test.php
dokuwiki.php
/dokuwiki/feed.php
/dokuwiki/inc/HTTPClient.php
/dokuwiki/inc/SimplePie.php
/dokuwiki/inc/actions.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/auth/mysql.class.php
/dokuwiki/inc/auth/pgsql.class.php
/dokuwiki/inc/common.php
/dokuwiki/inc/html.php
/dokuwiki/inc/init.php
/dokuwiki/inc/io.php
/dokuwiki/inc/lang/cs/lang.php
/dokuwiki/inc/lang/cs/resendpwd.txt
/dokuwiki/inc/lang/cs/updateprofile.txt
/dokuwiki/inc/lang/en/editrev.txt
/dokuwiki/inc/lang/en/lang.php
/dokuwiki/inc/lang/en/locked.txt
/dokuwiki/inc/lang/en/mailtext.txt
/dokuwiki/inc/lang/en/subscribermail.txt
/dokuwiki/inc/lang/sk/admin.txt
/dokuwiki/inc/lang/sk/lang.php
/dokuwiki/inc/lang/sk/resendpwd.txt
/dokuwiki/inc/lang/sk/showrev.txt
/dokuwiki/inc/lang/sk/stopwords.txt
/dokuwiki/inc/lang/sk/subscribermail.txt
/dokuwiki/inc/lang/sk/updateprofile.txt
/dokuwiki/inc/lang/zh-tw/lang.php
/dokuwiki/inc/mail.php
/dokuwiki/inc/media.php
/dokuwiki/inc/pageutils.php
/dokuwiki/inc/parser/handler.php
/dokuwiki/inc/parser/metadata.php
/dokuwiki/inc/parser/parser.php
/dokuwiki/inc/parser/renderer.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/parserutils.php
/dokuwiki/inc/utf8.php
/dokuwiki/lib/exe/ajax.php
/dokuwiki/lib/exe/css.php
/dokuwiki/lib/exe/fetch.php
/dokuwiki/lib/exe/indexer.php
/dokuwiki/lib/exe/js.php
/dokuwiki/lib/exe/mediamanager.php
/dokuwiki/lib/exe/spellcheck.php
/dokuwiki/lib/images/magnifier.png
/dokuwiki/lib/images/wrap.gif
/dokuwiki/lib/plugins/acl/lang/sk/intro.txt
/dokuwiki/lib/plugins/acl/lang/sk/lang.php
/dokuwiki/lib/plugins/config/lang/cs/intro.txt
/dokuwiki/lib/plugins/config/lang/cs/lang.php
/dokuwiki/lib/plugins/plugin/lang/cs/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/cs/lang.php
/dokuwiki/lib/plugins/usermanager/lang/cs/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/cs/lang.php
/dokuwiki/lib/scripts/media.js
/dokuwiki/lib/scripts/script.js
/dokuwiki/lib/styles/style.css
/dokuwiki/lib/tpl/default/design.css
/dokuwiki/lib/tpl/default/media.css
/dokuwiki/lib/tpl/default/mediamanager.php
f8f8e2de25-May-2006 Andreas Gohr <andi@splitbrain.org>

gzip_output defaults to 0 now

darcs-hash:20060525113648-7ad00-ddc022eea6a5257ba63253a385c1f50b968d0c6e.gz

077dc9d523-May-2006 Andreas Gohr <andi@splitbrain.org>

fixed rfc interwiki link

darcs-hash:20060523191005-7ad00-fcf447b92eb25239e67f3af977e1c6f6031d2f24.gz


interwiki.conf
/dokuwiki/data/pages/wiki/syntax.txt
/dokuwiki/inc/auth/mysql.class.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/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/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/lang.php
/dokuwiki/inc/lang/lt/lang.php
/dokuwiki/inc/lang/lt/resendpwd.txt
/dokuwiki/inc/lang/lt/updateprofile.txt
/dokuwiki/inc/lang/ru/lang.php
/dokuwiki/inc/media.php
/dokuwiki/inc/template.php
/dokuwiki/lib/exe/fetch.php
/dokuwiki/lib/exe/mediamanager.php
/dokuwiki/lib/images/at.gif
/dokuwiki/lib/images/fileicons/bz2.png
/dokuwiki/lib/images/fileicons/conf.png
/dokuwiki/lib/images/fileicons/deb.png
/dokuwiki/lib/images/fileicons/file.png
/dokuwiki/lib/images/list-minus.gif
/dokuwiki/lib/images/list-plus.gif
/dokuwiki/lib/images/minus.gif
/dokuwiki/lib/images/pencil.png
/dokuwiki/lib/images/plus.gif
/dokuwiki/lib/images/trash.png
/dokuwiki/lib/plugins/config/admin.php
/dokuwiki/lib/plugins/config/lang/en/lang.php
/dokuwiki/lib/plugins/config/lang/lt/intro.txt
/dokuwiki/lib/plugins/config/lang/ru/lang.php
/dokuwiki/lib/plugins/config/settings/config.class.php
/dokuwiki/lib/plugins/config/settings/extra.class.php
/dokuwiki/lib/plugins/plugin/lang/lt/admin_plugin.txt
/dokuwiki/lib/plugins/usermanager/lang/lt/add.txt
/dokuwiki/lib/plugins/usermanager/lang/lt/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/lt/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/lt/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/lt/list.txt
/dokuwiki/lib/scripts/edit.js
/dokuwiki/lib/scripts/media.js
/dokuwiki/lib/tpl/default/media.css
/dokuwiki/lib/tpl/default/mediamanager.php
3df7209819-May-2006 Andreas Gohr <andi@splitbrain.org>

new mediamanager

This patch adds a completely rewritten media popup. The following noteworthy
changes were made:

- media manager uses a collapsible namespace tree
- media manager uses AJAX if avail

new mediamanager

This patch adds a completely rewritten media popup. The following noteworthy
changes were made:

- media manager uses a collapsible namespace tree
- media manager uses AJAX if available
- media manager popup can be kept open when selecting a media file
- only one template is used for the media manager :!: Template
- Editable image metadata is configured in conf/mediameta.php now
- The JS cookie mechanism was enhanced to store key/value pairs
- Language strings can be exported to JS in js.php

darcs-hash:20060519165023-7ad00-4932b4553fc919aa4a8b8187958b823acf4f8cee.gz

show more ...

524be65d16-May-2006 Ben Coburn <btcoburn@silicodon.net>

gzip content-encoding option

- Enables gzip compression of output xhtml for browsers that support it.
For example the wiki:syntax page takes up 46.80KB raw, but only 9.88KB gzip encoded.
- S

gzip content-encoding option

- Enables gzip compression of output xhtml for browsers that support it.
For example the wiki:syntax page takes up 46.80KB raw, but only 9.88KB gzip encoded.
- Setting is configurable through the config plugin.

darcs-hash:20060516084132-05dcb-d8d1c7911a951b00e166c5a94f46a2cf1cfa5846.gz

show more ...

2b03e74d16-May-2006 Ben Coburn <btcoburn@silicodon.net>

jpg quality option

- Adds a jpg quality setting for scaled images
(Some images were getting too many jpg artifacts
at the hard-coded compression setting.)
- Creates a group for the medi

jpg quality option

- Adds a jpg quality setting for scaled images
(Some images were getting too many jpg artifacts
at the hard-coded compression setting.)
- Creates a group for the media settings in the
config plugin.

darcs-hash:20060516062321-05dcb-a175b0de3264322a335cf60d8ee96317f7b03144.gz

show more ...


/dokuwiki/_test/runtests.php
dokuwiki.php
/dokuwiki/doku.php
/dokuwiki/feed.php
/dokuwiki/inc/FeedParser.php
/dokuwiki/inc/HTTPClient.php
/dokuwiki/inc/SimplePie.php
/dokuwiki/inc/actions.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/events.php
/dokuwiki/inc/geshi.php
/dokuwiki/inc/geshi/actionscript-french.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/html4strict.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/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/smarty.php
/dokuwiki/inc/geshi/sql.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/xml.php
/dokuwiki/inc/html.php
/dokuwiki/inc/indexer.php
/dokuwiki/inc/init.php
/dokuwiki/inc/io.php
/dokuwiki/inc/lang/fo/admin.txt
/dokuwiki/inc/lang/fo/backlinks.txt
/dokuwiki/inc/lang/fo/conflict.txt
/dokuwiki/inc/lang/fo/denied.txt
/dokuwiki/inc/lang/fo/diff.txt
/dokuwiki/inc/lang/fo/edit.txt
/dokuwiki/inc/lang/fo/editrev.txt
/dokuwiki/inc/lang/fo/index.txt
/dokuwiki/inc/lang/fo/lang.php
/dokuwiki/inc/lang/fo/locked.txt
/dokuwiki/inc/lang/fo/login.txt
/dokuwiki/inc/lang/fo/mailtext.txt
/dokuwiki/inc/lang/fo/newpage.txt
/dokuwiki/inc/lang/fo/norev.txt
/dokuwiki/inc/lang/fo/password.txt
/dokuwiki/inc/lang/fo/preview.txt
/dokuwiki/inc/lang/fo/read.txt
/dokuwiki/inc/lang/fo/recent.txt
/dokuwiki/inc/lang/fo/register.txt
/dokuwiki/inc/lang/fo/resendpwd.txt
/dokuwiki/inc/lang/fo/revisions.txt
/dokuwiki/inc/lang/fo/searchpage.txt
/dokuwiki/inc/lang/fo/showrev.txt
/dokuwiki/inc/lang/fo/stopwords.txt
/dokuwiki/inc/lang/fo/subscribermail.txt
/dokuwiki/inc/lang/fo/updateprofile.txt
/dokuwiki/inc/lang/fo/wordblock.txt
/dokuwiki/inc/lang/fr/admin_acl.txt
/dokuwiki/inc/lang/it/edit.txt
/dokuwiki/inc/lang/it/index.txt
/dokuwiki/inc/lang/it/lang.php
/dokuwiki/inc/lang/it/login.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/resendpwd.txt
/dokuwiki/inc/lang/it/updateprofile.txt
/dokuwiki/inc/lang/nl/lang.php
/dokuwiki/inc/parser/handler.php
/dokuwiki/inc/parser/metadata.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/parserutils.php
/dokuwiki/inc/search.php
/dokuwiki/inc/template.php
/dokuwiki/inc/toolbar.php
/dokuwiki/lib/exe/css.php
/dokuwiki/lib/exe/fetch.php
/dokuwiki/lib/exe/indexer.php
/dokuwiki/lib/exe/js.php
/dokuwiki/lib/plugins/acl/lang/it/intro.txt
/dokuwiki/lib/plugins/acl/lang/it/lang.php
/dokuwiki/lib/plugins/base.php
/dokuwiki/lib/plugins/config/admin.php
/dokuwiki/lib/plugins/config/lang/da/lang.php
/dokuwiki/lib/plugins/config/lang/en/lang.php
/dokuwiki/lib/plugins/config/lang/it/intro.txt
/dokuwiki/lib/plugins/config/lang/it/lang.php
/dokuwiki/lib/plugins/config/settings/config.class.php
/dokuwiki/lib/plugins/config/settings/config.metadata.php
/dokuwiki/lib/plugins/config/settings/extra.class.php
/dokuwiki/lib/plugins/config/style.css
/dokuwiki/lib/plugins/plugin/admin.php
/dokuwiki/lib/plugins/plugin/lang/it/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/it/lang.php
/dokuwiki/lib/plugins/syntax.php
/dokuwiki/lib/plugins/usermanager/admin.php
/dokuwiki/lib/plugins/usermanager/lang/it/add.txt
/dokuwiki/lib/plugins/usermanager/lang/it/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/it/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/it/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/it/lang.php
/dokuwiki/lib/plugins/usermanager/lang/it/list.txt
/dokuwiki/lib/scripts/edit.js
/dokuwiki/lib/scripts/events.js
/dokuwiki/lib/scripts/script.js
b083dd6817-Apr-2006 Andreas Gohr <andi@splitbrain.org>

changed man> interwikilink to reflect recent changes

darcs-hash:20060417164547-7ad00-7270f4d88b027d179b1f600fc347eea8db8a8f83.gz


/dokuwiki/.htaccess.dist
/dokuwiki/_test/cases/inc/pageutils_resolve_id.test.php
/dokuwiki/bin/dwpage.php
interwiki.conf
/dokuwiki/doku.php
/dokuwiki/feed.php
/dokuwiki/inc/FeedParser.php
/dokuwiki/inc/actions.php
/dokuwiki/inc/auth/ldap.class.php
/dokuwiki/inc/common.php
/dokuwiki/inc/events.php
/dokuwiki/inc/feedcreator.class.php
/dokuwiki/inc/geshi.php
/dokuwiki/inc/geshi/actionscript-french.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/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/freebasic.php
/dokuwiki/inc/geshi/gml.php
/dokuwiki/inc/geshi/html4strict.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/robots.php
/dokuwiki/inc/geshi/ruby.php
/dokuwiki/inc/geshi/scheme.php
/dokuwiki/inc/geshi/sdlbasic.php
/dokuwiki/inc/geshi/smarty.php
/dokuwiki/inc/geshi/sql.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/xml.php
/dokuwiki/inc/html.php
/dokuwiki/inc/lang/es/admin.txt
/dokuwiki/inc/lang/es/lang.php
/dokuwiki/inc/lang/es/resendpwd.txt
/dokuwiki/inc/lang/es/subscribermail.txt
/dokuwiki/inc/lang/es/updateprofile.txt
/dokuwiki/inc/lang/pt-br/backlinks.txt
/dokuwiki/inc/lang/pt-br/conflict.txt
/dokuwiki/inc/lang/pt-br/denied.txt
/dokuwiki/inc/lang/pt-br/diff.txt
/dokuwiki/inc/lang/pt-br/edit.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/password.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/pt-br/stopwords.txt
/dokuwiki/inc/lang/pt-br/wordblock.txt
/dokuwiki/inc/pageutils.php
/dokuwiki/inc/parser/handler.php
/dokuwiki/inc/parser/metadata.php
/dokuwiki/inc/parser/parser.php
/dokuwiki/inc/parser/wiki.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/parserutils.php
/dokuwiki/inc/pluginutils.php
/dokuwiki/inc/template.php
/dokuwiki/inc/utf8.php
/dokuwiki/lib/exe/css.php
/dokuwiki/lib/exe/js.php
/dokuwiki/lib/images/fileicons/conf.png
/dokuwiki/lib/images/fileicons/deb.png
/dokuwiki/lib/images/fileicons/doc.png
/dokuwiki/lib/images/fileicons/file.png
/dokuwiki/lib/images/fileicons/gz.png
/dokuwiki/lib/images/fileicons/htm.png
/dokuwiki/lib/images/fileicons/html.png
/dokuwiki/lib/images/fileicons/index.php
/dokuwiki/lib/images/fileicons/odc.png
/dokuwiki/lib/images/fileicons/odf.png
/dokuwiki/lib/images/fileicons/odg.png
/dokuwiki/lib/images/fileicons/odi.png
/dokuwiki/lib/images/fileicons/odp.png
/dokuwiki/lib/images/fileicons/ods.png
/dokuwiki/lib/images/fileicons/odt.png
/dokuwiki/lib/images/fileicons/pdf.png
/dokuwiki/lib/images/fileicons/ppt.png
/dokuwiki/lib/images/fileicons/ps.png
/dokuwiki/lib/images/fileicons/rpm.png
/dokuwiki/lib/images/fileicons/rtf.png
/dokuwiki/lib/images/fileicons/sxc.png
/dokuwiki/lib/images/fileicons/sxd.png
/dokuwiki/lib/images/fileicons/sxi.png
/dokuwiki/lib/images/fileicons/sxw.png
/dokuwiki/lib/images/fileicons/tgz.png
/dokuwiki/lib/images/fileicons/txt.png
/dokuwiki/lib/images/fileicons/xls.png
/dokuwiki/lib/images/fileicons/xml.png
/dokuwiki/lib/images/fileicons/zip.png
/dokuwiki/lib/plugins/acl/admin.php
/dokuwiki/lib/plugins/acl/lang/es/intro.txt
/dokuwiki/lib/plugins/acl/lang/es/lang.php
/dokuwiki/lib/plugins/action.php
/dokuwiki/lib/plugins/admin.php
/dokuwiki/lib/plugins/base.php
/dokuwiki/lib/plugins/config/admin.php
/dokuwiki/lib/plugins/config/lang/en/lang.php
/dokuwiki/lib/plugins/config/lang/es/intro.txt
/dokuwiki/lib/plugins/config/settings/config.class.php
/dokuwiki/lib/plugins/config/settings/config.metadata.php
/dokuwiki/lib/plugins/info/syntax.php
/dokuwiki/lib/plugins/plugin/admin.php
/dokuwiki/lib/plugins/plugin/lang/es/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/es/lang.php
/dokuwiki/lib/plugins/syntax.php
/dokuwiki/lib/plugins/usermanager/admin.php
/dokuwiki/lib/plugins/usermanager/lang/es/add.txt
/dokuwiki/lib/plugins/usermanager/lang/es/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/es/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/es/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/es/lang.php
/dokuwiki/lib/plugins/usermanager/lang/es/list.txt
/dokuwiki/lib/tpl/default/design.css
/dokuwiki/lib/tpl/default/main.php
fbf8293924-Mar-2006 Ben Coburn <btcoburn@silicodon.net>

RSS update time and 304 Not Modified

- Gives the wiki administrator control over how often the RSS feed is regenerated.
- The RSS feed now handles conditional requests and returns HTTP '304 Not

RSS update time and 304 Not Modified

- Gives the wiki administrator control over how often the RSS feed is regenerated.
- The RSS feed now handles conditional requests and returns HTTP '304 Not Modified'
responses when possible.

darcs-hash:20060324133315-05dcb-3b814e28523f2a0717222a4940d6fbbb28576cf5.gz

show more ...

ee4c4a1b11-Mar-2006 Andreas Gohr <andi@splitbrain.org>

Automatic draft saving

DokuWiki now automatically creates a draft file of the currently edited
page. In case of an editing interuption (eg. Browsercrash) the draftfile
can be continued later.

darcs

Automatic draft saving

DokuWiki now automatically creates a draft file of the currently edited
page. In case of an editing interuption (eg. Browsercrash) the draftfile
can be continued later.

darcs-hash:20060311200148-7ad00-919337a51e001136178d175a1755cd26122e9726.gz

show more ...


/dokuwiki/_test/cases/inc/auth_nameencode.test.php
/dokuwiki/_test/cases/inc/common_clientIP.test.php
/dokuwiki/_test/cases/inc/mail_quoted_printable_encode.php
dokuwiki.php
/dokuwiki/inc/actions.php
/dokuwiki/inc/aspell.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/auth/ldap.class.php
/dokuwiki/inc/common.php
/dokuwiki/inc/html.php
/dokuwiki/inc/init.php
/dokuwiki/inc/io.php
/dokuwiki/inc/lang/cs/lang.php
/dokuwiki/inc/lang/en/lang.php
/dokuwiki/inc/lang/lv/admin.txt
/dokuwiki/inc/lang/lv/backlinks.txt
/dokuwiki/inc/lang/lv/conflict.txt
/dokuwiki/inc/lang/lv/denied.txt
/dokuwiki/inc/lang/lv/diff.txt
/dokuwiki/inc/lang/lv/edit.txt
/dokuwiki/inc/lang/lv/editrev.txt
/dokuwiki/inc/lang/lv/lang.php
/dokuwiki/inc/lang/lv/locked.txt
/dokuwiki/inc/lang/lv/mailtext.txt
/dokuwiki/inc/lang/lv/newpage.txt
/dokuwiki/inc/lang/lv/norev.txt
/dokuwiki/inc/lang/lv/preview.txt
/dokuwiki/inc/lang/lv/read.txt
/dokuwiki/inc/lang/lv/recent.txt
/dokuwiki/inc/lang/lv/resendpwd.txt
/dokuwiki/inc/lang/lv/revisions.txt
/dokuwiki/inc/lang/lv/searchpage.txt
/dokuwiki/inc/lang/lv/stopwords.txt
/dokuwiki/inc/lang/lv/subscribermail.txt
/dokuwiki/inc/lang/lv/updateprofile.txt
/dokuwiki/inc/mail.php
/dokuwiki/inc/parser/parser.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/template.php
/dokuwiki/inc/toolbar.php
/dokuwiki/lib/exe/ajax.php
/dokuwiki/lib/exe/js.php
/dokuwiki/lib/exe/media.php
/dokuwiki/lib/plugins/acl/admin.php
/dokuwiki/lib/plugins/acl/lang/lv/lang.php
/dokuwiki/lib/plugins/acl/style.css
/dokuwiki/lib/plugins/config/lang/da/lang.php
/dokuwiki/lib/plugins/config/lang/de/lang.php
/dokuwiki/lib/plugins/config/lang/ja/lang.php
/dokuwiki/lib/plugins/config/settings/config.class.php
/dokuwiki/lib/plugins/plugin/lang/cs/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/cs/lang.php
/dokuwiki/lib/plugins/plugin/lang/da/lang.php
/dokuwiki/lib/plugins/usermanager/admin.php
/dokuwiki/lib/plugins/usermanager/lang/cs/add.txt
/dokuwiki/lib/plugins/usermanager/lang/cs/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/cs/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/cs/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/cs/lang.php
/dokuwiki/lib/plugins/usermanager/lang/cs/list.txt
/dokuwiki/lib/plugins/usermanager/lang/lv/add.txt
/dokuwiki/lib/plugins/usermanager/lang/lv/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/lv/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/lv/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/lv/lang.php
/dokuwiki/lib/plugins/usermanager/lang/lv/list.txt
/dokuwiki/lib/plugins/usermanager/style.css
/dokuwiki/lib/scripts/edit.js
/dokuwiki/lib/scripts/script.js
/dokuwiki/lib/styles/style.css
/dokuwiki/lib/tpl/default/design.css
/dokuwiki/lib/tpl/default/layout.css
/dokuwiki/lib/tpl/default/main.php
40e23b5e05-Mar-2006 Andreas Gohr <andi@splitbrain.org>

wordblock update

darcs-hash:20060305140026-7ad00-498d21dbef19baf2b760d3c49edbf55125f6acc3.gz


wordblock.conf
/dokuwiki/data/pages/wiki/syntax.txt
/dokuwiki/inc/actions.php
/dokuwiki/inc/html.php
/dokuwiki/inc/lang/ar/edit.txt
/dokuwiki/inc/lang/ca/edit.txt
/dokuwiki/inc/lang/cs/edit.txt
/dokuwiki/inc/lang/da/edit.txt
/dokuwiki/inc/lang/de/edit.txt
/dokuwiki/inc/lang/de/lang.php
/dokuwiki/inc/lang/en/edit.txt
/dokuwiki/inc/lang/eo/edit.txt
/dokuwiki/inc/lang/es/edit.txt
/dokuwiki/inc/lang/et/edit.txt
/dokuwiki/inc/lang/eu/edit.txt
/dokuwiki/inc/lang/fi/edit.txt
/dokuwiki/inc/lang/fr/edit.txt
/dokuwiki/inc/lang/he/edit.txt
/dokuwiki/inc/lang/he/lang.php
/dokuwiki/inc/lang/hu/edit.txt
/dokuwiki/inc/lang/id/edit.txt
/dokuwiki/inc/lang/it/edit.txt
/dokuwiki/inc/lang/ja/edit.txt
/dokuwiki/inc/lang/ko/edit.txt
/dokuwiki/inc/lang/lt/edit.txt
/dokuwiki/inc/lang/lv/edit.txt
/dokuwiki/inc/lang/nl/edit.txt
/dokuwiki/inc/lang/no/edit.txt
/dokuwiki/inc/lang/pl/edit.txt
/dokuwiki/inc/lang/pt-br/edit.txt
/dokuwiki/inc/lang/pt/edit.txt
/dokuwiki/inc/lang/ro/edit.txt
/dokuwiki/inc/lang/ru/backlinks.txt
/dokuwiki/inc/lang/ru/denied.txt
/dokuwiki/inc/lang/ru/edit.txt
/dokuwiki/inc/lang/ru/lang.php
/dokuwiki/inc/lang/ru/locked.txt
/dokuwiki/inc/lang/ru/login.txt
/dokuwiki/inc/lang/ru/mailtext.txt
/dokuwiki/inc/lang/ru/norev.txt
/dokuwiki/inc/lang/ru/password.txt
/dokuwiki/inc/lang/ru/preview.txt
/dokuwiki/inc/lang/ru/register.txt
/dokuwiki/inc/lang/ru/resendpwd.txt
/dokuwiki/inc/lang/ru/revisions.txt
/dokuwiki/inc/lang/ru/showrev.txt
/dokuwiki/inc/lang/ru/stopwords.txt
/dokuwiki/inc/lang/ru/subscribermail.txt
/dokuwiki/inc/lang/ru/wordblock.txt
/dokuwiki/inc/lang/sk/edit.txt
/dokuwiki/inc/lang/sl/edit.txt
/dokuwiki/inc/lang/sr/edit.txt
/dokuwiki/inc/lang/sv/edit.txt
/dokuwiki/inc/lang/tr/edit.txt
/dokuwiki/inc/lang/vi/edit.txt
/dokuwiki/inc/lang/zh-tw/edit.txt
/dokuwiki/inc/lang/zh/edit.txt
/dokuwiki/inc/template.php
/dokuwiki/lib/plugins/config/admin.php
/dokuwiki/lib/plugins/config/lang/de/lang.php
/dokuwiki/lib/plugins/config/lang/en/lang.php
/dokuwiki/lib/plugins/config/lang/ru/lang.php
/dokuwiki/lib/plugins/config/settings/config.class.php
/dokuwiki/lib/plugins/config/settings/config.metadata.php
/dokuwiki/lib/plugins/config/settings/extra.class.php
/dokuwiki/lib/plugins/config/style.css
/dokuwiki/lib/plugins/usermanager/style.css
/dokuwiki/lib/tpl/default/design.css
/dokuwiki/lib/tpl/default/detail.php
/dokuwiki/lib/tpl/default/main.php
/dokuwiki/lib/tpl/default/media.php
/dokuwiki/lib/tpl/default/mediaedit.php
/dokuwiki/lib/tpl/default/mediaref.php
1ca31cfe04-Mar-2006 Andreas Gohr <andi@splitbrain.org>

simplified file permission handling

This patch simpliefies the configuration of the file and directory creation
modes. There is no need to set the umask anymore. Only the wanted permissions
for file

simplified file permission handling

This patch simpliefies the configuration of the file and directory creation
modes. There is no need to set the umask anymore. Only the wanted permissions
for files and directories are set. An init function compares the wanted modes
with the ones that would be choosen by the system automatically (consulting
the system's umask) and sets the modes for chmod when needed.

darcs-hash:20060304154038-7ad00-5ef1db3a87e42563a602f9d050c681d2ea74682f.gz

show more ...

56146e0d04-Mar-2006 Andreas Gohr <andi@splitbrain.org>

make umask an empty string for system default

darcs-hash:20060304001433-7ad00-51931e5a0eccec14b63ef215b0fa535bb2484a29.gz

6733ffad03-Mar-2006 Guy Brand <gb@isis.u-strasbg.fr>

umask/mode should not be commented out

darcs-hash:20060303204706-19e2d-d7f95669aa1b703c31db1fe36e08b7368a49d337.gz

fde8d20b03-Mar-2006 Andreas Gohr <andi@splitbrain.org>

fixed phpfn interwiki link

darcs-hash:20060303224553-7ad00-89da1f7b672f34fd5acbcb06914f3907ed34bab2.gz


/dokuwiki/.htaccess.dist
interwiki.conf
/dokuwiki/data/pages/wiki/dokuwiki.txt
/dokuwiki/feed.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/auth/punbb.class.php
/dokuwiki/inc/html.php
/dokuwiki/inc/init.php
/dokuwiki/inc/io.php
/dokuwiki/inc/lang/ja/lang.php
/dokuwiki/inc/lang/ja/newpage.txt
/dokuwiki/inc/lang/ja/register.txt
/dokuwiki/inc/lang/ja/resendpwd.txt
/dokuwiki/inc/lang/ja/searchpage.txt
/dokuwiki/inc/lang/ja/updateprofile.txt
/dokuwiki/inc/lang/pl/lang.php
/dokuwiki/inc/lang/pl/recent.txt
/dokuwiki/inc/lang/pl/register.txt
/dokuwiki/inc/lang/pl/searchpage.txt
/dokuwiki/inc/lang/pl/wordblock.txt
/dokuwiki/inc/lang/ru/admin.txt
/dokuwiki/inc/lang/ru/resendpwd.txt
/dokuwiki/inc/lang/ru/subscribermail.txt
/dokuwiki/inc/lang/ru/updateprofile.txt
/dokuwiki/inc/parser/lexer.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/utf8.php
/dokuwiki/lib/exe/css.php
/dokuwiki/lib/plugins/acl/admin.php
/dokuwiki/lib/plugins/acl/lang/ru/intro.txt
/dokuwiki/lib/plugins/acl/lang/ru/lang.php
/dokuwiki/lib/plugins/config/admin.php
/dokuwiki/lib/plugins/config/lang/da/lang.php
/dokuwiki/lib/plugins/config/lang/en/lang.php
/dokuwiki/lib/plugins/config/lang/ja/intro.txt
/dokuwiki/lib/plugins/config/lang/ja/lang.php
/dokuwiki/lib/plugins/config/lang/pl/intro.txt
/dokuwiki/lib/plugins/config/lang/pl/lang.php
/dokuwiki/lib/plugins/config/lang/ru/intro.txt
/dokuwiki/lib/plugins/config/lang/ru/lang.php
/dokuwiki/lib/plugins/config/settings/config.class.php
/dokuwiki/lib/plugins/config/settings/config.metadata.php
/dokuwiki/lib/plugins/config/style.css
/dokuwiki/lib/plugins/plugin/admin.php
/dokuwiki/lib/plugins/plugin/lang/da/lang.php
/dokuwiki/lib/plugins/plugin/lang/pl/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/pl/lang.php
/dokuwiki/lib/plugins/plugin/lang/ru/admin_plugin.txt
/dokuwiki/lib/plugins/plugin/lang/ru/lang.php
/dokuwiki/lib/plugins/plugin/style.css
/dokuwiki/lib/plugins/usermanager/admin.php
/dokuwiki/lib/plugins/usermanager/lang/ja/add.txt
/dokuwiki/lib/plugins/usermanager/lang/ja/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/ja/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/ja/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/ja/lang.php
/dokuwiki/lib/plugins/usermanager/lang/ja/list.txt
/dokuwiki/lib/plugins/usermanager/lang/pl/add.txt
/dokuwiki/lib/plugins/usermanager/lang/pl/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/pl/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/pl/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/pl/lang.php
/dokuwiki/lib/plugins/usermanager/lang/pl/list.txt
/dokuwiki/lib/plugins/usermanager/lang/ru/add.txt
/dokuwiki/lib/plugins/usermanager/lang/ru/delete.txt
/dokuwiki/lib/plugins/usermanager/lang/ru/edit.txt
/dokuwiki/lib/plugins/usermanager/lang/ru/intro.txt
/dokuwiki/lib/plugins/usermanager/lang/ru/lang.php
/dokuwiki/lib/plugins/usermanager/lang/ru/list.txt
/dokuwiki/lib/scripts/script.js
/dokuwiki/lib/styles/spellcheck.css
/dokuwiki/lib/tpl/default/design.css
b744177902-Mar-2006 Andreas Gohr <gohr@cosmocode.de>

no default targets

Using the target attribute is considered bad practice. This patch removes
the default targets from dokuwiki.conf and fixes the footer.html of the
default template accordingly

dar

no default targets

Using the target attribute is considered bad practice. This patch removes
the default targets from dokuwiki.conf and fixes the footer.html of the
default template accordingly

darcs-hash:20060302134306-6e07b-cae2e54472687abb50f7cb97bd6c479b7c7d97d7.gz

show more ...

12345678910>>...13