History log of /dokuwiki/inc/io.php (Results 76 – 100 of 115)
Revision Date Author Comments
# 8e0b019f 16-Sep-2006 Andreas Gohr <andi@splitbrain.org>

permission setting in io_rename fixed #912

darcs-hash:20060916145350-7ad00-cb78b531006e1f1875b2d8e8bc648740e5021736.gz


# d8186216 08-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 ...


# ff3ed99f 23-Aug-2006 marcel <marcel@rucksackreinigung.de>

Added bz2 compression support for Attic

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


# cc7d0c94 05-Jul-2006 Ben Coburn <btcoburn@silicodon.net>

IO action events

Adds page and namespace events:
IO_WIKIPAGE_READ
IO_WIKIPAGE_WRITE
IO_NAMESPACE_CREATED
IO_NAMESPACE_DELETED

The namespace events are purely advisory,
while the wikipage ev

IO action events

Adds page and namespace events:
IO_WIKIPAGE_READ
IO_WIKIPAGE_WRITE
IO_NAMESPACE_CREATED
IO_NAMESPACE_DELETED

The namespace events are purely advisory,
while the wikipage events allow page content
to be modified between DokuWiki and the disk.

These events are primarily intended to simplify
keeping other tools in sync with the semantic
structure of a DokuWiki site. As an added benefit,
the events allow plugins to conduct automated
processing of raw wiki page content.

The namespace events cover the separate namespace
trees for both pages and media. The "name" of the
tree that the event belongs to is included in the
event data.

darcs-hash:20060705105652-05dcb-f44024e852a2adf1a14b8a7d69c46db067e72307.gz

show more ...


# 847b8298 15-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 ...


# 77b98903 17-May-2006 Andreas Gohr <andi@splitbrain.org>

avoid trolling in io_lock()

darcs-hash:20060517165023-7ad00-f3583cd929bf80721593f8fc77fb74bd6b864b03.gz


# 7421c3cc 11-May-2006 Andreas Gohr <andi@splitbrain.org>

more info is gathered on metaupdate in background indexer

The background indexer now gathers info on contributors and modification
dates from the changelog when adding the missing meta info.

A new

more info is gathered on metaupdate in background indexer

The background indexer now gathers info on contributors and modification
dates from the changelog when adding the missing meta info.

A new io_grep function was added which might be useful for other parts in
the Wiki as well.

darcs-hash:20060511191450-7ad00-baba1b48ea03b823c88a480862c612316f159b5a.gz

show more ...


# ee4c4a1b 11-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 ...


# 755f1e03 07-Mar-2006 Andreas Gohr <andi@splitbrain.org>

clean media directories after medeia deletion FS#734

darcs-hash:20060307184706-7ad00-c57e9e6c54879afaf17858fe642478fcb91af983.gz


# 1ca31cfe 04-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 ...


# 0d8850c4 03-Mar-2006 Andreas Gohr <andi@splitbrain.org>

better permission checking

init.php now checks for the accessability of the data directories
(executebit on UNIX systems)

darcs-hash:20060303173252-7ad00-7ce3281926ac93f282d9865e9617ec4d179c2c23.gz


# db9d7f2f 28-Feb-2006 Andreas Gohr <andi@splitbrain.org>

fixed problem with io_sweepNS() on windows systems

darcs-hash:20060228224239-7ad00-74183c4f12a176a1c7712fac6278ca5d4ff9b705.gz


# 44881d27 24-Feb-2006 Troels Liebe Bentsen <tlb@rapanden.dk>

Fix umask bug and do a code cleanup of chmod/mkdir usage so set the correct permissions, this should also fix problems with dokuwiki making setuid files on some umasks.

* Don't set the umask() any

Fix umask bug and do a code cleanup of chmod/mkdir usage so set the correct permissions, this should also fix problems with dokuwiki making setuid files on some umasks.

* Don't set the umask() anymore, this is not good form and we don't really know what is it in the old code anyway as it was not done properly.
* Retire the dmask config option introduce 2 new ones called fmode and dmode, this is more in line with posix and should make more sense.
* Use chmod for setting the correct permissions but only if it's needed.
* Set changing of permissions off by default as i should work properly in most Apache setups without and it does not make sense on windows anyway.

darcs-hash:20060224211655-ee6b9-68f7bb59417d6f0033cfd3764146923daa4dcf1b.gz

show more ...


# ac9115b0 18-Feb-2006 Troels Liebe Bentsen <tlb@rapanden.dk>

Fix wrong umask usage and so we set the correct file premissions.

darcs-hash:20060218183251-ee6b9-798ab2994526311b1e58f04e7684b39b51426887.gz


# 98c86858 17-Feb-2006 Andreas Gohr <andi@splitbrain.org>

file cleanups

This patch cleans up the source code to satisfy the coding guidelines (see
http://wiki.splitbrain.org/wiki:development#coding_style)

It converts files to UNIX lineendings and removes

file cleanups

This patch cleans up the source code to satisfy the coding guidelines (see
http://wiki.splitbrain.org/wiki:development#coding_style)

It converts files to UNIX lineendings and removes tabs and trailing
whitespace. Not all files were cleaned yet.

darcs-hash:20060217222040-7ad00-bba3d2bee3b5aa7cbb5184258abd50805cd071bf.gz

show more ...


# ce070a9f 02-Feb-2006 chris <chris@jalakai.co.uk>

fix for PHP5/Win, avoid initialising an array as a function parameter

darcs-hash:20060202232249-9b6ab-714f97dd150f2e0e7bef5458ab74f5336a1e5f8c.gz


# bf5e5a5b 21-Jan-2006 Andreas Gohr <andi@splitbrain.org>

Windows compatible rename #683

darcs-hash:20060121194539-7ad00-c880c0980513a3ccb45253c02e1a02d4cbdd6009.gz


# e34c0709 18-Nov-2005 Andreas Gohr <andi@splitbrain.org>

fixed a very rare problem with io_readfile and unserialize

darcs-hash:20051118194856-7ad00-5b7f8dea8371acd85ccfe31ac6f748cb2b619486.gz


# 8b06d178 20-Oct-2005 chris <chris@teacherscpd.co.uk>

auth update, incl. auth object, plain.class.php; resend password & update profile actions

darcs-hash:20051020181434-50fdc-44222aa2074bb0e39a1c240c516259579b380740.gz


# 73ccfcb9 11-Sep-2005 chris <chris@teacherscpd.co.uk>

io_download mod to allow use of attachment names, plugin manager fix to use new io_download

darcs-hash:20050911142126-50fdc-dd1b45c40b33153c3ea993ec53c11d063c34154c.gz


# 9b307a83 31-Aug-2005 Andreas Gohr <andi@splitbrain.org>

HTTP Client added

This patch adds an HTTP client written in PHP. It supports proxy
handling and SSL if PHP was compiled with it.

darcs-hash:20050831205550-7ad00-6dcdff0208d7f18a8ff731febb155d126742

HTTP Client added

This patch adds an HTTP client written in PHP. It supports proxy
handling and SSL if PHP was compiled with it.

darcs-hash:20050831205550-7ad00-6dcdff0208d7f18a8ff731febb155d126742c768.gz

show more ...


# 1380fc45 06-Aug-2005 Andreas Gohr <andi@splitbrain.org>

changes to the page subscription feature

darcs-hash:20050806212000-7ad00-c5ab54a33289f8be0ce99443f82f0b3cf1bdbf0d.gz


# b158d625 27-Jun-2005 Steven Danz <steven-danz@kc.rr.com>

track_changes.patch

Second go at including changes to allow users to sign up on
mailing lists so they may receive emails each time the page
they are interested in is updated.

darcs-hash:20050627021

track_changes.patch

Second go at including changes to allow users to sign up on
mailing lists so they may receive emails each time the page
they are interested in is updated.

darcs-hash:20050627021748-3ed6d-5f6993f51ab649e3928a513b0fbe7c421d880325.gz

show more ...


# 034138e2 12-Jul-2005 Rainer Weinhold <mom.mom@gmx.net>

safemode hack fixes #179

darcs-hash:20050712210940-99f23-80c16d578f58f955c9c99f27a1b2a0f3f7eb5d11.gz


# 90eb8392 26-Jun-2005 andi <andi@splitbrain.org>

added file locking support

darcs-hash:20050626161253-9977f-5600ca7134aa7244b08407d5a44c065a34091f20.gz


12345