Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
backup /
extensions /
ParserFunctions /
Delete
Unzip
Name
Size
Permission
Date
Action
COPYING
14.91
KB
-rw-r--r--
2010-10-03 00:36
Convert.php
28.08
KB
-rw-r--r--
2011-09-13 02:36
Expr.php
15.77
KB
-rw-r--r--
2011-01-29 14:54
ParserFunctions.i18n.magic.php
19.24
KB
-rw-r--r--
2011-05-20 02:11
ParserFunctions.i18n.php
304.71
KB
-rw-r--r--
2011-09-08 19:11
ParserFunctions.php
4.94
KB
-rw-r--r--
2011-09-13 02:36
ParserFunctions_body.php
24.14
KB
-rw-r--r--
2011-10-03 16:18
README
671
B
-rw-r--r--
2011-01-10 06:24
convertTests.txt
4.87
KB
-rw-r--r--
2011-09-13 02:36
exprTests.txt
454
B
-rw-r--r--
2009-02-14 15:45
funcsParserTests.txt
2.64
KB
-rw-r--r--
2010-07-09 23:11
stringFunctionTests.txt
397
B
-rw-r--r--
2010-07-09 23:11
testExpr.php
938
B
-rw-r--r--
2010-10-03 00:36
Save
Rename
# Force the test runner to ensure the extension is loaded # fixme... this doesn't seem to work :D #!! functionhooks #time #!! endfunctionhooks # fixme: #time seems to be accepting input as local time, which strikes me as wrong !! article ParserFunctions page !! text A sample page so we can test ifexist. This used to be a Main Page, but that caused duplicate article warnings when running the normal tests at the same time. !! endarticle !! article File:Dionysos-Brunnen am Kölner Dom.jpg !! text blah blah !! endarticle !! test Input times should probably be UTC, not local time !! input {{#time:c|15 January 2001}} !!result <p>2001-01-15T00:00:00+00:00 </p> !! end !! test Time test in traditional range... !! input {{#time:Y|15 January 2001}} !! result <p>2001 </p> !! end !! test Time test prior to 1970 Unix creation myth !! input {{#time:Y|5 April 1967}} !! result <p>1967 </p> !! end !! test Time test after the 2038 32-bit Apocalype !! input {{#time:Y|28 July 2061}} !! result <p>2061 </p> !! end !! test Bug 19093: Default values don't fall through in switch !! input <{{#switch: foo | bar | #default = DEF }}> <{{#switch: foo | #default | bar = DEF }}> !! result <p><DEF> <DEF> </p> !! end !! test {{#ifexist}} !! input {{#ifexist:Media:Foobar.jpg|Found|Not found}} {{#ifexist:ParserFunctions page|Found|Not found}} {{#ifexist:Missing|Found|Not found}} !! result <p>Found Found Not found </p> !! end !! test #if !! input {{#if: | yes | no}} {{#if: string | yes | no}} {{#if: | yes | no}} {{#if: | yes | no}} {{#if: 1==2 | yes | no}} {{#if: foo | yes }} {{#if: | yes }}(empty) {{#if: foo | | no}}(empty) {{#if: {{{1}}} | yes | no}} {{#if: {{{1|}}} | yes | no}} !! result <p>no yes no no yes yes (empty) (empty) yes no </p> !! end !! test #ifeq !!input {{#ifeq: 01 | 1 | yes | no}} {{#ifeq: 0 | -0 | yes | no}} {{#ifeq: foo | bar | yes | no}} {{#ifeq: foo | Foo | yes | no}} {{#ifeq: "01" | "1" | yes | no}} !! result <p>yes yes no no no </p> !! end !! test #iferror !!input {{#iferror: {{#expr: 1 + 2 }} | error | correct }} {{#iferror: {{#expr: 1 + X }} | error | correct }} {{#iferror: {{#expr: 1 + 2 }} | error }} {{#iferror: {{#expr: 1 + X }} | error }} {{#iferror: {{#expr: 1 + 2 }} }} {{#iferror: {{#expr: 1 + X }} }}empty !! result <p>correct error 3 error 3 empty </p> !! end !! test #ifexpr !! input {{#ifexpr: | yes | no}} {{#ifexpr: 1 > 0 | yes }} {{#ifexpr: 1 < 0 | yes }}empty {{#ifexpr: 1 > 0 | | no}}empty {{#ifexpr: 1 < 0 | | no}} {{#ifexpr: 1 > 0 }}empty !! result <p>no yes empty empty no empty </p> !! end !! test Bug 22866: #ifexpr should evaluate "-0" as false !! input {{#ifexpr: (-1)*0 | true | false }} !! result <p>false </p> !! end