diff options
author | Jonas Smedegaard <dr@jones.dk> | 2008-08-30 04:25:21 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2008-08-30 04:25:21 +0200 |
commit | 70090d29241b365d5532360afed8782d3c7dfd2e (patch) | |
tree | f9466399988f7e7fc9d2901b0ca6689fe01bc58c /ikiwiki/pagespec | |
parent | 08184b4275de1db66ad5da4c9245772f18af86c8 (diff) |
Sync with ikiwiki 2.62.1.
Diffstat (limited to 'ikiwiki/pagespec')
-rw-r--r-- | ikiwiki/pagespec/attachment.mdwn | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ikiwiki/pagespec/attachment.mdwn b/ikiwiki/pagespec/attachment.mdwn index 2a1f8aa..6b86c51 100644 --- a/ikiwiki/pagespec/attachment.mdwn +++ b/ikiwiki/pagespec/attachment.mdwn @@ -4,8 +4,8 @@ else="This wiki has attachments **disabled**."]] If attachments are enabled, the wiki admin can control what types of -attachments will be accepted, by entering a [[ikiwiki/PageSpec]] in the -"Allowed Attachments" field of their preferences page. +attachments will be accepted, via the `allowed_attachments` +configuration setting. For example, to limit arbitrary files to 50 kilobytes, but allow larger mp3 files to be uploaded by joey into a specific directory, and @@ -13,7 +13,7 @@ check all attachments for virii, something like this could be used: virusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) and maxsize(15mb)) or (!ispage() and maxsize(50kb))) -The regular [[ikiwiki/PageSpec]] syntax is expanded with thw following +The regular [[ikiwiki/PageSpec]] syntax is expanded with the following additional tests: * maxsize(size) |