From 9a5e1c6a185496cf9afa30ddc6b2b4c00cfd62cc Mon Sep 17 00:00:00 2001 From: Tobias Sarnowski <tobias@trustedco.de> Date: Mon, 16 Apr 2012 13:35:21 +0000 Subject: [PATCH] fixed configuration loading and datadir misdirection --- _testing/README | 6 +- .../integrationtests/basic/hooks.test.php | 20 - _testing/inttests.conf/acl.auth.php.dist | 21 + _testing/inttests.conf/acronyms.conf | 145 ++++++ _testing/inttests.conf/dokuwiki.php | 171 ++++++ _testing/inttests.conf/entities.conf | 22 + _testing/inttests.conf/interwiki.conf | 131 +++++ _testing/inttests.conf/license.php | 36 ++ _testing/inttests.conf/local.php | 3 + _testing/inttests.conf/local.php.dist | 16 + _testing/inttests.conf/mediameta.php | 91 ++++ _testing/inttests.conf/mime.conf | 64 +++ _testing/inttests.conf/mysql.conf.php.example | 253 +++++++++ _testing/inttests.conf/plugins.local.php | 8 + _testing/inttests.conf/plugins.required.php | 11 + _testing/inttests.conf/scheme.conf | 11 + _testing/inttests.conf/smileys.conf | 28 + _testing/inttests.conf/users.auth.php.dist | 10 + _testing/inttests.conf/wordblock.conf | 32 ++ _testing/inttests.data/_dummy | 0 _testing/inttests.data/attic/_dummy | 0 _testing/inttests.data/cache/_dummy | 0 _testing/inttests.data/deleted.files | 257 +++++++++ _testing/inttests.data/index/_dummy | 0 _testing/inttests.data/locks/_dummy | 0 .../inttests.data/media/wiki/dokuwiki-128.png | Bin 0 -> 33615 bytes _testing/inttests.data/media_attic/_dummy | 0 _testing/inttests.data/media_meta/_dummy | 0 _testing/inttests.data/meta/_dummy | 0 .../inttests.data/pages/wiki/dokuwiki.txt | 64 +++ _testing/inttests.data/pages/wiki/syntax.txt | 486 ++++++++++++++++++ _testing/inttests.data/security.png | Bin 0 -> 7917 bytes _testing/inttests.data/security.xcf | Bin 0 -> 12093 bytes _testing/inttests.data/tmp/_dummy | 0 .../bootstrap.php => inttests.php} | 47 +- .../{integrationtests.xml => inttests.xml} | 4 +- .../basic => inttests}/basic.test.php | 0 _testing/inttests/hooks.test.php | 17 + 38 files changed, 1928 insertions(+), 26 deletions(-) delete mode 100644 _testing/integrationtests/basic/hooks.test.php create mode 100644 _testing/inttests.conf/acl.auth.php.dist create mode 100644 _testing/inttests.conf/acronyms.conf create mode 100644 _testing/inttests.conf/dokuwiki.php create mode 100644 _testing/inttests.conf/entities.conf create mode 100644 _testing/inttests.conf/interwiki.conf create mode 100644 _testing/inttests.conf/license.php create mode 100644 _testing/inttests.conf/local.php create mode 100644 _testing/inttests.conf/local.php.dist create mode 100644 _testing/inttests.conf/mediameta.php create mode 100644 _testing/inttests.conf/mime.conf create mode 100644 _testing/inttests.conf/mysql.conf.php.example create mode 100644 _testing/inttests.conf/plugins.local.php create mode 100644 _testing/inttests.conf/plugins.required.php create mode 100644 _testing/inttests.conf/scheme.conf create mode 100644 _testing/inttests.conf/smileys.conf create mode 100644 _testing/inttests.conf/users.auth.php.dist create mode 100644 _testing/inttests.conf/wordblock.conf create mode 100644 _testing/inttests.data/_dummy create mode 100644 _testing/inttests.data/attic/_dummy create mode 100644 _testing/inttests.data/cache/_dummy create mode 100644 _testing/inttests.data/deleted.files create mode 100644 _testing/inttests.data/index/_dummy create mode 100644 _testing/inttests.data/locks/_dummy create mode 100644 _testing/inttests.data/media/wiki/dokuwiki-128.png create mode 100644 _testing/inttests.data/media_attic/_dummy create mode 100644 _testing/inttests.data/media_meta/_dummy create mode 100644 _testing/inttests.data/meta/_dummy create mode 100644 _testing/inttests.data/pages/wiki/dokuwiki.txt create mode 100644 _testing/inttests.data/pages/wiki/syntax.txt create mode 100644 _testing/inttests.data/security.png create mode 100644 _testing/inttests.data/security.xcf create mode 100644 _testing/inttests.data/tmp/_dummy rename _testing/{integrationtests/bootstrap.php => inttests.php} (63%) rename _testing/{integrationtests.xml => inttests.xml} (76%) rename _testing/{integrationtests/basic => inttests}/basic.test.php (100%) create mode 100644 _testing/inttests/hooks.test.php diff --git a/_testing/README b/_testing/README index 802e2b875..e94580d9a 100644 --- a/_testing/README +++ b/_testing/README @@ -28,5 +28,9 @@ Bad tests are tests that do not run out of the box. * inc/parser/xhtml_links +==== Integration Tests ==== + > phpunit -c inttests.xml + ==== TODO ==== - * integration tests (+plugins) \ No newline at end of file + * integration tests (+plugins) + diff --git a/_testing/integrationtests/basic/hooks.test.php b/_testing/integrationtests/basic/hooks.test.php deleted file mode 100644 index 0ba389659..000000000 --- a/_testing/integrationtests/basic/hooks.test.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -class HooksTest extends PHPUnit_Framework_TestCase { - - var $hookTriggered = false; - - function hookTriggered() { - $this->hookTriggered = true; - } - - function testHookTriggering() { - global $EVENT_HANDLER; - $EVENT_HANDLER->register_hook('TPL_CONTENT_DISPLAY', 'AFTER', $this, 'hookTriggered'); - - $request = new TestRequest(); - $request->execute(); - - $this->assertTrue($this->hookTriggered, 'Hook was not triggered as expected!'); - } -} diff --git a/_testing/inttests.conf/acl.auth.php.dist b/_testing/inttests.conf/acl.auth.php.dist new file mode 100644 index 000000000..14344d778 --- /dev/null +++ b/_testing/inttests.conf/acl.auth.php.dist @@ -0,0 +1,21 @@ +# acl.auth.php +# <?php exit()?> +# Don't modify the lines above +# +# Access Control Lists +# +# Editing this file by hand shouldn't be necessary. Use the ACL +# Manager interface instead. +# +# If your auth backend allows special char like spaces in groups +# or user names you need to urlencode them (only chars <128, leave +# UTF-8 multibyte chars as is) +# +# none 0 +# read 1 +# edit 2 +# create 4 +# upload 8 +# delete 16 + +* @ALL 8 diff --git a/_testing/inttests.conf/acronyms.conf b/_testing/inttests.conf/acronyms.conf new file mode 100644 index 000000000..058e85550 --- /dev/null +++ b/_testing/inttests.conf/acronyms.conf @@ -0,0 +1,145 @@ +# Acronyms. + +ACL Access Control List +AFAICS As far as I can see +AFAIK As far as I know +AFAIR As far as I remember +AJAX Asynchronous JavaScript and XML +AIM AOL (America Online) Instant Messenger +AOL America Online +API Application Programming Interface +ASAP As soon as possible +ASCII American Standard Code for Information Interchange +ASP Active Server Pages +BTW By the way +CGI Common Gateway Interface +CMS Content Management System +CSS Cascading Style Sheets +CVS Concurrent Versions System +DBA Database Administrator +DHCP Dynamic Host Configuration Protocol +DHTML Dynamic HyperText Markup Language +DMCA Digital Millenium Copyright Act +DNS Domain Name System +DOM Document Object Model +DTD Document Type Definition +EOF End of file +EOL End of line +EOM End of message +EOT End of text +ESMTP Extended Simple Mail Transfer Protocol +FAQ Frequently Asked Questions +FDL GNU Free Documentation License +FTP File Transfer Protocol +FOSS Free & Open-Source Software +FLOSS Free/Libre and Open Source Software +FUD Fear, Uncertainty, and Doubt +GB Gigabyte +GHz Gigahertz +GIF Graphics Interchange Format +GPL GNU General Public License +GUI Graphical User Interface +HTML HyperText Markup Language +HTTP Hyper Text Transfer Protocol +IANAL I am not a lawyer (but) +ICANN Internet Corporation for Assigned Names and Numbers +ICQ I seek you (Instant Messenger) +IE5 Internet Explorer 5 +IE6 Internet Explorer 6 +IE Internet Explorer +IIRC If I remember correctly +IIS Internet Information Services +IMAP Internet Message Access Protocol +IMHO In my humble opinion +IMO In my opinion +IOW In other words +IRC Internet Relay Chat +IRL In real life +ISO International Organization for Standardization +ISP Internet Service Provider +JDK Java Development Kit +JPEG Joint Photographics Experts Group +JPG Joint Photographics Experts Group +JS JavaScript +KISS Keep it simple stupid +LAN Local Area Network +LDAP Lightweight Directory Access Protocol +LGPL GNU Lesser General Public License +LOL Laughing out loud +MathML Mathematical Markup Language +MB Megabyte +MHz Megahertz +MIME Multipurpose Internet Mail Extension +MIT Massachusetts Institute of Technology +MML Mathematical Markup Language +MP3 Moving Picture Experts Group Layer 3 +MPEG Moving Picture Experts Group +MSDN Microsoft Developer Network +MS Microsoft +MSIE Microsoft Internet Explorer +NIS Network Information Service +NS4.7 Netscape 4.7 +NS4 Netscape 4 +NS6 Netscape 6 +NS7 Netscape 7 +OMG Oh my God +OPML Outline Processor Markup Language +OS Operating System +OSS Open Source Software +OTOH On the other hand +P2P Peer to Peer +PDA Personal Digital Assistant +PDF Portable Document Format +Perl Practical Extraction and Report Language +PERL Practical Extraction and Report Language +PHP Hypertext Preprocessor +PICS Platform for Internet Content Selection +PIN Personal Identification Number +PITA Pain in the Ass +PNG Portable Network Graphics +POP3 Post Office Protocol 3 +POP Post Office Protocol +QoS Quality of Service +RAID Redundant Array of Inexpensive Disks +RDF Resource Description Framework +RFC Request for Comments +ROTFL Rolling on the floor laughing +RPC Remote Procedure Call +RSS Rich Site Summary +RTFM Read The Fine Manual +RTF Rich Text File +SCSI Small Computer System Interface +SDK Software Development Kit +SGML Standard General Markup Language +SMIL Synchronized Multimedia Integration Language +SMTP Simple Mail Transfer Protocol +SOAP Simple Object Access Protocol +spec specification +SQL Structured Query Language +SSH Secure Shell +SSI Server Side Includes +SSL Secure Sockets Layer +SVG Scalable Vector Graphics +TIA Thanks in advance +TIFF Tagged Image File Format +TLD Top Level Domain +TOC Table of Contents +URI Uniform Resource Identifier +URL Uniform Resource Locator +URN Uniform Resource Name +VBA Visual Basic for Applications +VB Visual Basic +W3C World Wide Web Consortium +WAN Wide Area Network +WAP Wireless Access Protocol +WML Wireless Markup Language +WTF? What the f*** +WWW World Wide Web +WYSIWYG What You See Is What You Get +XHTML Extensible HyperText Markup Language +XML Extensible Markup Language +XSD XML (Extensible Markup Language) Schema Definition +XSL Extensible Stylesheet Language +XSLT Extensible Stylesheet Language Transformations +XUL XML User Interface Language +YMMV Your mileage may vary diff --git a/_testing/inttests.conf/dokuwiki.php b/_testing/inttests.conf/dokuwiki.php new file mode 100644 index 000000000..5c0b28114 --- /dev/null +++ b/_testing/inttests.conf/dokuwiki.php @@ -0,0 +1,171 @@ +<?php +/** + * This is DokuWiki's Main Configuration file + * + * All the default values are kept here, you should not modify it but use + * a local.php file instead to override the settings from here. + * + * This is a piece of PHP code so PHP syntax applies! + * + * For help with the configuration see http://www.dokuwiki.org/config + */ + + +/* Datastorage and Permissions */ + +$conf['fmode'] = 0644; //set file creation mode +$conf['dmode'] = 0755; //set directory creation mode +$conf['lang'] = 'en'; //your language +$conf['basedir'] = ''; //absolute dir from serveroot - blank for autodetection +$conf['baseurl'] = ''; //URL to server including protocol - blank for autodetect +$conf['cookiedir'] = ''; //Cookie path. Leave blank for using baseurl. +$conf['savedir'] = './data'; //where to store all the files +$conf['allowdebug'] = 0; //allow debug output, enable if needed 0|1 +$conf['mediarevisions'] = 1; //enable/disable media revisions + +/* Display Options */ + +$conf['start'] = 'start'; //name of start page +$conf['title'] = 'DokuWiki'; //what to show in the title +$conf['template'] = 'dokuwiki'; //see lib/tpl directory +$conf['tagline'] = ''; //tagline in header (if template supports it) +$conf['sidebar'] = 'sidebar'; //name of sidebar in root namespace (if template supports it) +$conf['license'] = 'cc-by-nc-sa'; //see conf/license.php +$conf['fullpath'] = 0; //show full path of the document or relative to datadir only? 0|1 +$conf['recent'] = 20; //how many entries to show in recent +$conf['breadcrumbs'] = 10; //how many recent visited pages to show +$conf['youarehere'] = 0; //show "You are here" navigation? 0|1 +$conf['typography'] = 1; //smartquote conversion 0=off, 1=doublequotes, 2=all quotes +$conf['htmlok'] = 0; //may raw HTML be embedded? This may break layout and XHTML validity 0|1 +$conf['phpok'] = 0; //may PHP code be embedded? Never do this on the internet! 0|1 +$conf['dformat'] = '%Y/%m/%d %H:%M'; //dateformat accepted by PHPs strftime() function +$conf['signature'] = ' --- //[[@MAIL@|@NAME@]] @DATE@//'; //signature see wiki:config for details +$conf['toptoclevel'] = 1; //Level starting with and below to include in AutoTOC (max. 5) +$conf['tocminheads'] = 3; //Minimum amount of headlines that determines if a TOC is built +$conf['maxtoclevel'] = 3; //Up to which level include into AutoTOC (max. 5) +$conf['maxseclevel'] = 3; //Up to which level create editable sections (max. 5) +$conf['camelcase'] = 0; //Use CamelCase for linking? (I don't like it) 0|1 +$conf['deaccent'] = 1; //deaccented chars in pagenames (1) or romanize (2) or keep (0)? +$conf['useheading'] = 0; //use the first heading in a page as its name +$conf['refcheck'] = 1; //check for references before deleting media files +$conf['refshow'] = 0; //how many references should be shown, 5 is a good value +$conf['showuseras'] = 'loginname'; // 'loginname' users login name + // 'username' users full name + // 'email' e-mail address (will be obfuscated as per mailguard) + // 'email_link' e-mail address as a mailto: link (obfuscated) + +/* Antispam Features */ + +$conf['usewordblock']= 1; //block spam based on words? 0|1 +$conf['indexdelay'] = 60*60*24*5; //allow indexing after this time (seconds) default is 5 days +$conf['relnofollow'] = 1; //use rel="nofollow" for external links? +$conf['mailguard'] = 'hex'; //obfuscate email addresses against spam harvesters? + //valid entries are: + // 'visible' - replace @ with [at], . with [dot] and - with [dash] + // 'hex' - use hex entities to encode the mail address + // 'none' - do not obfuscate addresses +$conf['iexssprotect']= 1; // check for JavaScript and HTML in uploaded files 0|1 + +/* Authentication Options - read http://www.splitbrain.org/dokuwiki/wiki:acl */ + +$conf['useacl'] = 0; //Use Access Control Lists to restrict access? +$conf['autopasswd'] = 1; //autogenerate passwords and email them to user +$conf['authtype'] = 'plain'; //which authentication backend should be used +$conf['passcrypt'] = 'smd5'; //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411) +$conf['defaultgroup']= 'user'; //Default groups new Users are added to +$conf['superuser'] = '!!not set!!'; //The admin can be user or @group or comma separated list user1,@group1,user2 +$conf['manager'] = '!!not set!!'; //The manager can be user or @group or comma separated list user1,@group1,user2 +$conf['profileconfirm'] = 1; //Require current password to confirm changes to user profile +$conf['disableactions'] = ''; //comma separated list of actions to disable +$conf['sneaky_index'] = 0; //check for namespace read permission in index view (0|1) (1 might cause unexpected behavior) +$conf['auth_security_timeout'] = 900; //time (seconds) auth data is considered valid, set to 0 to recheck on every page view +$conf['securecookie'] = 1; //never send HTTPS cookies via HTTP + +$conf['remote'] = 0; //Enable/disable remote interfaces +$conf['remoteuser'] = '!!not set !!'; //user/groups that have access to remote interface (comma separated) + +/* Advanced Options */ + +$conf['updatecheck'] = 1; //automatically check for new releases? +$conf['userewrite'] = 0; //this makes nice URLs: 0: off 1: .htaccess 2: internal +$conf['useslash'] = 0; //use slash instead of colon? only when rewrite is on +$conf['usedraft'] = 1; //automatically save a draft while editing (0|1) +$conf['sepchar'] = '_'; //word separator character in page names; may be a + // letter, a digit, '_', '-', or '.'. +$conf['canonical'] = 0; //Should all URLs use full canonical http://... style? +$conf['fnencode'] = 'url'; //encode filenames (url|safe|utf-8) +$conf['autoplural'] = 0; //try (non)plural form of nonexisting files? +$conf['compression'] = 'gz'; //compress old revisions: (0: off) ('gz': gnuzip) ('bz2': bzip) + // bz2 generates smaller files, but needs more cpu-power +$conf['cachetime'] = 60*60*24; //maximum age for cachefile in seconds (defaults to a day) +$conf['locktime'] = 15*60; //maximum age for lockfiles (defaults to 15 minutes) +$conf['fetchsize'] = 0; //maximum size (bytes) fetch.php may download from extern, disabled by default +$conf['notify'] = ''; //send change info to this email (leave blank for nobody) +$conf['registernotify'] = ''; //send info about newly registered users to this email (leave blank for nobody) +$conf['mailfrom'] = ''; //use this email when sending mails +$conf['mailprefix'] = ''; //use this as prefix of outgoing mails +$conf['gzip_output'] = 0; //use gzip content encodeing for the output xhtml (if allowed by browser) +$conf['gdlib'] = 2; //the GDlib version (0, 1 or 2) 2 tries to autodetect +$conf['im_convert'] = ''; //path to ImageMagicks convert (will be used instead of GD) +$conf['jpg_quality'] = '70'; //quality of compression when scaling jpg images (0-100) +$conf['subscribers'] = 0; //enable change notice subscription support +$conf['subscribe_time'] = 24*60*60; //Time after which digests / lists are sent (in sec, default 1 day) + //Should be smaller than the time specified in recent_days +$conf['compress'] = 1; //Strip whitespaces and comments from Styles and JavaScript? 1|0 +$conf['cssdatauri'] = 0; //Maximum byte size of small images to embed into CSS, won't work on IE<8 +$conf['hidepages'] = ''; //Regexp for pages to be skipped from RSS, Search and Recent Changes +$conf['send404'] = 0; //Send a HTTP 404 status for non existing pages? +$conf['sitemap'] = 0; //Create a google sitemap? How often? In days. +$conf['rss_type'] = 'rss1'; //type of RSS feed to provide, by default: + // 'rss' - RSS 0.91 + // 'rss1' - RSS 1.0 + // 'rss2' - RSS 2.0 + // 'atom' - Atom 0.3 + // 'atom1' - Atom 1.0 +$conf['rss_linkto'] = 'diff'; //what page RSS entries link to: + // 'diff' - page showing revision differences + // 'page' - the revised page itself + // 'rev' - page showing all revisions + // 'current' - most recent revision of page +$conf['rss_content'] = 'abstract'; //what to put in the items by default? + // 'abstract' - plain text, first paragraph or so + // 'diff' - plain text unified diff wrapped in <pre> tags + // 'htmldiff' - diff as HTML table + // 'html' - the full page rendered in XHTML +$conf['rss_media'] = 'both'; //what should be listed? + // 'both' - page and media changes + // 'pages' - page changes only + // 'media' - media changes only +$conf['rss_update'] = 5*60; //Update the RSS feed every n seconds (defaults to 5 minutes) +$conf['rss_show_summary'] = 1; //Add revision summary to title? 0|1 +$conf['recent_days'] = 7; //How many days of recent changes to keep. (days) +$conf['broken_iua'] = 0; //Platform with broken ignore_user_abort (IIS+CGI) 0|1 +$conf['xsendfile'] = 0; //Use X-Sendfile (1 = lighttpd, 2 = standard) +$conf['renderer_xhtml'] = 'xhtml'; //renderer to use for main page generation +$conf['rememberme'] = 1; //Enable/disable remember me on login + +//Set target to use when creating links - leave empty for same window +$conf['target']['wiki'] = ''; +$conf['target']['interwiki'] = ''; +$conf['target']['extern'] = ''; +$conf['target']['media'] = ''; +$conf['target']['windows'] = ''; + +//Proxy setup - if your Server needs a proxy to access the web set these +$conf['proxy']['host'] = ''; +$conf['proxy']['port'] = ''; +$conf['proxy']['user'] = ''; +$conf['proxy']['pass'] = ''; +$conf['proxy']['ssl'] = 0; +$conf['proxy']['except'] = ''; + +/* Safemode Hack */ + +$conf['safemodehack'] = 0; //read http://www.dokuwiki.org/config:safemodehack ! +$conf['ftp']['host'] = 'localhost'; +$conf['ftp']['port'] = '21'; +$conf['ftp']['user'] = 'user'; +$conf['ftp']['pass'] = 'password'; +$conf['ftp']['root'] = '/home/user/htdocs'; + +$conf['readdircache'] = 0; //time cache in second for the readdir opération, 0 to deactivate. diff --git a/_testing/inttests.conf/entities.conf b/_testing/inttests.conf/entities.conf new file mode 100644 index 000000000..be9ed6d40 --- /dev/null +++ b/_testing/inttests.conf/entities.conf @@ -0,0 +1,22 @@ +# Typography replacements +# +# Order does matter! +# +# You can use HTML entities here, but it is not recomended because it may break +# non-HTML renderers. Use UTF-8 chars directly instead. + +<-> ↔ +-> → +<- ↠+<=> ⇔ +=> ⇒ +<= ⇠+>> » +<< « +--- — +-- – +(c) © +(tm) ™ +(r) ® +... … + diff --git a/_testing/inttests.conf/interwiki.conf b/_testing/inttests.conf/interwiki.conf new file mode 100644 index 000000000..28d603de2 --- /dev/null +++ b/_testing/inttests.conf/interwiki.conf @@ -0,0 +1,131 @@ +# Each URL may contain one of the placeholders {URL} or {NAME} +# {URL} is replaced by the URL encoded representation of the wikiname +# this is the right thing to do in most cases +# {NAME} this is replaced by the wikiname as given in the document +# no further encoding is done +# If no placeholder is defined the urlencoded name is appended to the URL + +# To prevent losing your added InterWiki shortcuts after an upgrade, +# you should add new ones to interwiki.local.conf + +wp http://en.wikipedia.org/wiki/{NAME} +wpfr http://fr.wikipedia.org/wiki/{NAME} +wpde http://de.wikipedia.org/wiki/{NAME} +wpes http://es.wikipedia.org/wiki/{NAME} +wppl http://pl.wikipedia.org/wiki/{NAME} +wpjp http://ja.wikipedia.org/wiki/{NAME} +wpmeta http://meta.wikipedia.org/wiki/{NAME} +doku http://www.dokuwiki.org/ +dokubug http://bugs.dokuwiki.org/index.php?do=details&task_id= +rfc http://www.cs.ccu.edu.tw/~chm91u/rfc2html.php?in= +man http://man.cx/ +amazon http://www.amazon.com/exec/obidos/ASIN/{URL}/splitbrain-20/ +amazon.de http://www.amazon.de/exec/obidos/ASIN/{URL}/splitbrain-21/ +amazon.uk http://www.amazon.co.uk/exec/obidos/ASIN/ +paypal https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business= +phpfn http://www.php.net/{NAME} +coral http://{HOST}.{PORT}.nyud.net:8090/{PATH}?{QUERY} +freecache http://freecache.org/{NAME} +sb http://www.splitbrain.org/go/ +skype skype:{NAME} +google.de http://www.google.de/search?q= +go http://www.google.com/search?q={URL}&btnI=lucky + +# To support VoIP/SIP links +callto callto://{NAME} + +# Standards from http://usemod.com/intermap.txt follow + +AbbeNormal http://www.ourpla.net/cgi-bin/pikie.cgi? +AcadWiki http://xarch.tu-graz.ac.at/autocad/wiki/ +Acronym http://www.acronymfinder.com/af-query.asp?String=exact&Acronym= +Advogato http://www.advogato.org/ +AIWiki http://www.ifi.unizh.ch/ailab/aiwiki/aiw.cgi? +ALife http://news.alife.org/wiki/index.php? +AndStuff http://andstuff.org/wiki.php? +Annotation http://bayle.stanford.edu/crit/nph-med.cgi/ +AnnotationWiki http://www.seedwiki.com/page.cfm?wikiid=368&doc= +AwarenessWiki http://taoriver.net/aware/ +BenefitsWiki http://www.benefitslink.com/cgi-bin/wiki.cgi? +BridgesWiki http://c2.com/w2/bridges/ +C2find http://c2.com/cgi/wiki?FindPage&value= +Cache http://www.google.com/search?q=cache: +CLiki http://ww.telent.net/cliki/ +CmWiki http://www.ourpla.net/cgi-bin/wiki.pl? +CreationMatters http://www.ourpla.net/cgi-bin/wiki.pl? +DejaNews http://www.deja.com/=dnc/getdoc.xp?AN= +DeWikiPedia http://www.wikipedia.de/wiki.cgi? +Dictionary http://www.dict.org/bin/Dict?Database=*&Form=Dict1&Strategy=*&Query= +DiveIntoOsx http://diveintoosx.org/ +DocBook http://docbook.org/wiki/moin.cgi/ +DolphinWiki http://www.object-arts.com/wiki/html/Dolphin/ +EfnetCeeWiki http://purl.net/wiki/c/ +EfnetCppWiki http://purl.net/wiki/cpp/ +EfnetPythonWiki http://purl.net/wiki/python/ +EfnetXmlWiki http://purl.net/wiki/xml/ +EljWiki http://elj.sourceforge.net/phpwiki/index.php/ +EmacsWiki http://www.emacswiki.org/cgi-bin/wiki.pl? +FinalEmpire http://final-empire.sourceforge.net/cgi-bin/wiki.pl? +Foldoc http://www.foldoc.org/foldoc/foldoc.cgi? +FoxWiki http://fox.wikis.com/wc.dll?Wiki~ +FreeBSDman http://www.FreeBSD.org/cgi/man.cgi?apropos=1&query= +Google http://www.google.com/search?q= +GoogleGroups http://groups.google.com/groups?q= +GreenCheese http://www.greencheese.org/ +HammondWiki http://www.dairiki.org/HammondWiki/index.php3? +Haribeau http://wiki.haribeau.de/cgi-bin/wiki.pl? +IAWiki http://www.IAwiki.net/ +IMDB http://us.imdb.com/Title? +JargonFile http://sunir.org/apps/meta.pl?wiki=JargonFile&redirect= +JiniWiki http://www.cdegroot.com/cgi-bin/jini? +JspWiki http://www.ecyrd.com/JSPWiki/Wiki.jsp?page= +KmWiki http://www.voght.com/cgi-bin/pywiki? +KnowHow http://www2.iro.umontreal.ca/~paquetse/cgi-bin/wiki.cgi? +LanifexWiki http://opt.lanifex.com/cgi-bin/wiki.pl? +LegoWiki http://www.object-arts.com/wiki/html/Lego-Robotics/ +LinuxWiki http://www.linuxwiki.de/ +LugKR http://lug-kr.sourceforge.net/cgi-bin/lugwiki.pl? +MathSongsWiki http://SeedWiki.com/page.cfm?wikiid=237&doc= +MbTest http://www.usemod.com/cgi-bin/mbtest.pl? +MeatBall http://www.usemod.com/cgi-bin/mb.pl? +MetaWiki http://sunir.org/apps/meta.pl? +MetaWikiPedia http://meta.wikipedia.com/wiki/ +MoinMoin http://purl.net/wiki/moin/ +MuWeb http://www.dunstable.com/scripts/MuWebWeb? +NetVillage http://www.netbros.com/? +OpenWiki http://openwiki.com/? +OrgPatterns http://www.bell-labs.com/cgi-user/OrgPatterns/OrgPatterns? +PangalacticOrg http://www.pangalactic.org/Wiki/ +PersonalTelco http://www.personaltelco.net/index.cgi/ +PhpWiki http://phpwiki.sourceforge.net/phpwiki/index.php? +Pikie http://pikie.darktech.org/cgi/pikie? +PPR http://c2.com/cgi/wiki? +PurlNet http://purl.oclc.org/NET/ +PythonInfo http://www.python.org/cgi-bin/moinmoin/ +PythonWiki http://www.pythonwiki.de/ +PyWiki http://www.voght.com/cgi-bin/pywiki? +SeaPig http://www.seapig.org/ +SeattleWireless http://seattlewireless.net/? +SenseisLibrary http://senseis.xmp.net/? +Shakti http://cgi.algonet.se/htbin/cgiwrap/pgd/ShaktiWiki/ +SourceForge http://sourceforge.net/{NAME} +Squeak http://minnow.cc.gatech.edu/squeak/ +StrikiWiki http://ch.twi.tudelft.nl/~mostert/striki/teststriki.pl? +SVGWiki http://www.protocol7.com/svg-wiki/default.asp? +Tavi http://tavi.sourceforge.net/index.php? +TmNet http://www.technomanifestos.net/? +TMwiki http://www.EasyTopicMaps.com/?page= +TWiki http://twiki.org/cgi-bin/view/{NAME} +TwistedWiki http://purl.net/wiki/twisted/ +Unreal http://wiki.beyondunreal.com/wiki/ +UseMod http://www.usemod.com/cgi-bin/wiki.pl? +VisualWorks http://wiki.cs.uiuc.edu/VisualWorks/ +WebDevWikiNL http://www.promo-it.nl/WebDevWiki/index.php?page= +WebSeitzWiki http://webseitz.fluxent.com/wiki/ +Why http://clublet.com/c/c/why? +Wiki http://c2.com/cgi/wiki? +WikiPedia http://www.wikipedia.com/wiki/ +WikiWorld http://WikiWorld.com/wiki/index.php/ +YpsiEyeball http://sknkwrks.dyndns.org:1957/writewiki/wiki.pl? +ZWiki http://www.zwiki.org/ + diff --git a/_testing/inttests.conf/license.php b/_testing/inttests.conf/license.php new file mode 100644 index 000000000..89728ab57 --- /dev/null +++ b/_testing/inttests.conf/license.php @@ -0,0 +1,36 @@ +<?php +/** + * This file defines multiple available licenses you can license your + * wiki contents under. Do not change this file, but create a + * license.local.php instead. + */ + +$license['cc-zero'] = array( + 'name' => 'CC0 1.0 Universal', + 'url' => 'http://creativecommons.org/publicdomain/zero/1.0/', +); +$license['publicdomain'] = array( + 'name' => 'Public Domain', + 'url' => 'http://creativecommons.org/licenses/publicdomain/', +); +$license['cc-by'] = array( + 'name' => 'CC Attribution 3.0 Unported', + 'url' => 'http://creativecommons.org/licenses/by/3.0/', +); +$license['cc-by-sa'] = array( + 'name' => 'CC Attribution-Share Alike 3.0 Unported', + 'url' => 'http://creativecommons.org/licenses/by-sa/3.0/', +); +$license['gnufdl'] = array( + 'name' => 'GNU Free Documentation License 1.3', + 'url' => 'http://www.gnu.org/licenses/fdl-1.3.html', +); +$license['cc-by-nc'] = array( + 'name' => 'CC Attribution-Noncommercial 3.0 Unported', + 'url' => 'http://creativecommons.org/licenses/by-nc/3.0/', +); +$license['cc-by-nc-sa'] = array( + 'name' => 'CC Attribution-Noncommercial-Share Alike 3.0 Unported', + 'url' => 'http://creativecommons.org/licenses/by-nc-sa/3.0/', +); + diff --git a/_testing/inttests.conf/local.php b/_testing/inttests.conf/local.php new file mode 100644 index 000000000..3de30ee21 --- /dev/null +++ b/_testing/inttests.conf/local.php @@ -0,0 +1,3 @@ +<?php + +$conf['savedir'] = DOKU_TMP_DATA; //where to store all the files diff --git a/_testing/inttests.conf/local.php.dist b/_testing/inttests.conf/local.php.dist new file mode 100644 index 000000000..0397954f4 --- /dev/null +++ b/_testing/inttests.conf/local.php.dist @@ -0,0 +1,16 @@ +<?php +/** + * This is an example of how a local.php could look like. + * Simply copy the options you want to change from dokuwiki.php + * to this file and change them. + * + * When using the installer, a correct local.php file be generated for + * you automatically. + */ + + +//$conf['title'] = 'My Wiki'; //what to show in the title + +//$conf['useacl'] = 1; //Use Access Control Lists to restrict access? +//$conf['superuser'] = 'joe'; + diff --git a/_testing/inttests.conf/mediameta.php b/_testing/inttests.conf/mediameta.php new file mode 100644 index 000000000..0428a4b88 --- /dev/null +++ b/_testing/inttests.conf/mediameta.php @@ -0,0 +1,91 @@ +<?php +/** + * This configures which meta data will be editable through + * the media manager. Each field of the array is an array with the + * following contents: + * fieldname - Where data will be saved (EXIF or IPTC field) + * label - key to lookup in the $lang var, if not found printed as is + * htmltype - 'text' or 'textarea' + * lookups - array additional fields to lookup the data (EXIF or IPTC fields) + * + * The fields are not ordered continously to make inserting additional items + * in between simpler. + * + * This is a PHP snippet, so PHP syntax applies. + * + * Note: $fields is not a global variable and will not be available to any + * other functions or templates later + * + * You may extend or overwrite this variable in a optional + * conf/mediameta.local.php file + * + * For a list of available EXIF/IPTC fields refer to + * http://www.dokuwiki.org/devel:templates:detail.php + */ + + +$fields = array( + 10 => array('Iptc.Headline', + 'img_title', + 'text'), + + 20 => array('', + 'img_date', + 'date', + array('Date.EarliestTime')), + + 30 => array('', + 'img_fname', + 'text', + array('File.Name')), + + 40 => array('Iptc.Caption', + 'img_caption', + 'textarea', + array('Exif.UserComment', + 'Exif.TIFFImageDescription', + 'Exif.TIFFUserComment')), + + 50 => array('Iptc.Byline', + 'img_artist', + 'text', + array('Exif.TIFFArtist', + 'Exif.Artist', + 'Iptc.Credit')), + + 60 => array('Iptc.CopyrightNotice', + 'img_copyr', + 'text', + array('Exif.TIFFCopyright', + 'Exif.Copyright')), + + 70 => array('', + 'img_format', + 'text', + array('File.Format')), + + 80 => array('', + 'img_fsize', + 'text', + array('File.NiceSize')), + + 90 => array('', + 'img_width', + 'text', + array('File.Width')), + + 100 => array('', + 'img_height', + 'text', + array('File.Height')), + + 110 => array('', + 'img_camera', + 'text', + array('Simple.Camera')), + + 120 => array('Iptc.Keywords', + 'img_keywords', + 'text', + array('Exif.Category')), +); diff --git a/_testing/inttests.conf/mime.conf b/_testing/inttests.conf/mime.conf new file mode 100644 index 000000000..24529b06c --- /dev/null +++ b/_testing/inttests.conf/mime.conf @@ -0,0 +1,64 @@ +# Allowed uploadable file extensions and mimetypes are defined here. +# To extend this file it is recommended to create a mime.local.conf +# file. Mimetypes that should be downloadable and not be opened in the +# should be prefixed with a ! + +jpg image/jpeg +jpeg image/jpeg +gif image/gif +png image/png + +swf application/x-shockwave-flash +mp3 audio/mpeg +ogg audio/ogg +wav audio/wav + +tgz !application/octet-stream +tar !application/x-gtar +gz !application/octet-stream +bz2 !application/octet-stream +zip !application/zip +rar !application/rar +7z !application/x-7z-compressed + +pdf application/pdf +ps !application/postscript + +rpm !application/octet-stream +deb !application/octet-stream + +doc !application/msword +xls !application/msexcel +ppt !application/mspowerpoint +rtf !application/msword + +docx !application/vnd.openxmlformats-officedocument.wordprocessingml.document +xlsx !application/vnd.openxmlformats-officedocument.spreadsheetml.sheet +pptx !application/vnd.openxmlformats-officedocument.presentationml.presentation + +sxw !application/soffice +sxc !application/soffice +sxi !application/soffice +sxd !application/soffice + +odc !application/vnd.oasis.opendocument.chart +odf !application/vnd.oasis.opendocument.formula +odg !application/vnd.oasis.opendocument.graphics +odi !application/vnd.oasis.opendocument.image +odp !application/vnd.oasis.opendocument.presentation +ods !application/vnd.oasis.opendocument.spreadsheet +odt !application/vnd.oasis.opendocument.text + +# You should enable HTML and Text uploads only for restricted Wikis. +# Spammers are known to upload spam pages through unprotected Wikis. +# Note: Enabling HTML opens Cross Site Scripting vulnerabilities +# through JavaScript. Only enable this with trusted users. You +# need to disable the iexssprotect option additionally to +# adding the mime type here +#html text/html +#htm text/html +#txt text/plain +#conf text/plain +#xml text/xml +#csv text/csv + diff --git a/_testing/inttests.conf/mysql.conf.php.example b/_testing/inttests.conf/mysql.conf.php.example new file mode 100644 index 000000000..94bc14e1f --- /dev/null +++ b/_testing/inttests.conf/mysql.conf.php.example @@ -0,0 +1,253 @@ +<?php +/* + * This is an example configuration for the mysql auth module. + * + * This SQL statements are optimized for following table structure. + * If you use a different one you have to change them accordingly. + * See comments of every statement for details. + * + * TABLE users + * uid login pass firstname lastname email + * + * TABLE groups + * gid name + * + * TABLE usergroup + * uid gid + * + * To use this configuration you have to copy them to local.protected.php + * or at least include this file in local.protected.php. + */ + +/* Options to configure database access. You need to set up this + * options carefully, otherwise you won't be able to access you + * database. + */ +$conf['auth']['mysql']['server'] = ''; +$conf['auth']['mysql']['user'] = ''; +$conf['auth']['mysql']['password'] = ''; +$conf['auth']['mysql']['database'] = ''; + +/* This option enables debug messages in the mysql module. It is + * mostly usefull for system admins. + */ +$conf['auth']['mysql']['debug'] = 0; + +/* Normally password encryption is done by DokuWiki (recommended) but for + * some reasons it might be usefull to let the database do the encryption. + * Set 'forwardClearPass' to '1' and the cleartext password is forwarded to + * the database, otherwise the encrypted one. + */ +$conf['auth']['mysql']['forwardClearPass'] = 0; + +/* Multiple table operations will be protected by locks. This array tolds + * the module which tables to lock. If you use any aliases for table names + * these array must also contain these aliases. Any unamed alias will cause + * a warning during operation. See the example below. + */ +$conf['auth']['mysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", "usergroup", "usergroup AS ug"); + +/***********************************************************************/ +/* Basic SQL statements for user authentication (required) */ +/***********************************************************************/ + +/* This statement is used to grant or deny access to the wiki. The result + * should be a table with exact one line containing at least the password + * of the user. If the result table is empty or contains more than one + * row, access will be denied. + * + * The module access the password as 'pass' so a alias might be necessary. + * + * Following patters will be replaced: + * %{user} user name + * %{pass} encrypted or clear text password (depends on 'encryptPass') + * %{dgroup} default group name + */ +$conf['auth']['mysql']['checkPass'] = "SELECT pass + FROM usergroup AS ug + JOIN users AS u ON u.uid=ug.uid + JOIN groups AS g ON g.gid=ug.gid + WHERE login='%{user}' + AND name='%{dgroup}'"; + +/* This statement should return a table with exact one row containing + * information about one user. The field needed are: + * 'pass' containing the encrypted or clear text password + * 'name' the user's full name + * 'mail' the user's email address + * + * Keep in mind that Dokuwiki will access thise information through the + * names listed above so aliasses might be neseccary. + * + * Following patters will be replaced: + * %{user} user name + */ +$conf['auth']['mysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name, email AS mail + FROM users + WHERE login='%{user}'"; + +/* This statement is used to get all groups a user is member of. The + * result should be a table containing all groups the given user is + * member of. The module access the group name as 'group' so a alias + * might be nessecary. + * + * Following patters will be replaced: + * %{user} user name + */ +$conf['auth']['mysql']['getGroups'] = "SELECT name as `group` + FROM groups g, users u, usergroup ug + WHERE u.uid = ug.uid + AND g.gid = ug.gid + AND u.login='%{user}'"; + +/***********************************************************************/ +/* Additional minimum SQL statements to use the user manager */ +/***********************************************************************/ + +/* This statement should return a table containing all user login names + * that meet certain filter criteria. The filter expressions will be added + * case dependend by the module. At the end a sort expression will be added. + * Important is that this list contains no double entries fo a user. Each + * user name is only allowed once in the table. + * + * The login name will be accessed as 'user' to a alias might be neseccary. + * No patterns will be replaced in this statement but following patters + * will be replaced in the filter expressions: + * %{user} in FilterLogin user's login name + * %{name} in FilterName user's full name + * %{email} in FilterEmail user's email address + * %{group} in FilterGroup group name + */ +$conf['auth']['mysql']['getUsers'] = "SELECT DISTINCT login AS user + FROM users AS u + LEFT JOIN usergroup AS ug ON u.uid=ug.uid + LEFT JOIN groups AS g ON ug.gid=g.gid"; +$conf['auth']['mysql']['FilterLogin'] = "login LIKE '%{user}'"; +$conf['auth']['mysql']['FilterName'] = "CONCAT(firstname,' ',lastname) LIKE '%{name}'"; +$conf['auth']['mysql']['FilterEmail'] = "email LIKE '%{email}'"; +$conf['auth']['mysql']['FilterGroup'] = "name LIKE '%{group}'"; +$conf['auth']['mysql']['SortOrder'] = "ORDER BY login"; + +/***********************************************************************/ +/* Additional SQL statements to add new users with the user manager */ +/***********************************************************************/ + +/* This statement should add a user to the database. Minimum information + * to store are: login name, password, email address and full name. + * + * Following patterns will be replaced: + * %{user} user's login name + * %{pass} password (encrypted or clear text, depends on 'encryptPass') + * %{email} email address + * %{name} user's full name + */ +$conf['auth']['mysql']['addUser'] = "INSERT INTO users + (login, pass, email, firstname, lastname) + VALUES ('%{user}', '%{pass}', '%{email}', + SUBSTRING_INDEX('%{name}',' ', 1), + SUBSTRING_INDEX('%{name}',' ', -1))"; + +/* This statement should add a group to the database. + * Following patterns will be replaced: + * %{group} group name + */ +$conf['auth']['mysql']['addGroup'] = "INSERT INTO groups (name) + VALUES ('%{group}')"; + +/* This statement should connect a user to a group (a user become member + * of that group). + * Following patterns will be replaced: + * %{user} user's login name + * %{uid} id of a user dataset + * %{group} group name + * %{gid} id of a group dataset + */ +$conf['auth']['mysql']['addUserGroup']= "INSERT INTO usergroup (uid, gid) + VALUES ('%{uid}', '%{gid}')"; + +/* This statement should remove a group fom the database. + * Following patterns will be replaced: + * %{group} group name + * %{gid} id of a group dataset + */ +$conf['auth']['mysql']['delGroup'] = "DELETE FROM groups + WHERE gid='%{gid}'"; + +/* This statement should return the database index of a given user name. + * The module will access the index with the name 'id' so a alias might be + * necessary. + * following patters will be replaced: + * %{user} user name + */ +$conf['auth']['mysql']['getUserID'] = "SELECT uid AS id + FROM users + WHERE login='%{user}'"; + +/***********************************************************************/ +/* Additional SQL statements to delete users with the user manager */ +/***********************************************************************/ + +/* This statement should remove a user fom the database. + * Following patterns will be replaced: + * %{user} user's login name + * %{uid} id of a user dataset + */ +$conf['auth']['mysql']['delUser'] = "DELETE FROM users + WHERE uid='%{uid}'"; + +/* This statement should remove all connections from a user to any group + * (a user quits membership of all groups). + * Following patterns will be replaced: + * %{uid} id of a user dataset + */ +$conf['auth']['mysql']['delUserRefs'] = "DELETE FROM usergroup + WHERE uid='%{uid}'"; + +/***********************************************************************/ +/* Additional SQL statements to modify users with the user manager */ +/***********************************************************************/ + +/* This statements should modify a user entry in the database. The + * statements UpdateLogin, UpdatePass, UpdateEmail and UpdateName will be + * added to updateUser on demand. Only changed parameters will be used. + * + * Following patterns will be replaced: + * %{user} user's login name + * %{pass} password (encrypted or clear text, depends on 'encryptPass') + * %{email} email address + * %{name} user's full name + * %{uid} user id that should be updated + */ +$conf['auth']['mysql']['updateUser'] = "UPDATE users SET"; +$conf['auth']['mysql']['UpdateLogin'] = "login='%{user}'"; +$conf['auth']['mysql']['UpdatePass'] = "pass='%{pass}'"; +$conf['auth']['mysql']['UpdateEmail'] = "email='%{email}'"; +$conf['auth']['mysql']['UpdateName'] = "firstname=SUBSTRING_INDEX('%{name}',' ', 1), + lastname=SUBSTRING_INDEX('%{name}',' ', -1)"; +$conf['auth']['mysql']['UpdateTarget']= "WHERE uid=%{uid}"; + +/* This statement should remove a single connection from a user to a + * group (a user quits membership of that group). + * + * Following patterns will be replaced: + * %{user} user's login name + * %{uid} id of a user dataset + * %{group} group name + * %{gid} id of a group dataset + */ +$conf['auth']['mysql']['delUserGroup']= "DELETE FROM usergroup + WHERE uid='%{uid}' + AND gid='%{gid}'"; + +/* This statement should return the database index of a given group name. + * The module will access the index with the name 'id' so a alias might + * be necessary. + * + * Following patters will be replaced: + * %{group} group name + */ +$conf['auth']['mysql']['getGroupID'] = "SELECT gid AS id + FROM groups + WHERE name='%{group}'"; + + diff --git a/_testing/inttests.conf/plugins.local.php b/_testing/inttests.conf/plugins.local.php new file mode 100644 index 000000000..00e8c10be --- /dev/null +++ b/_testing/inttests.conf/plugins.local.php @@ -0,0 +1,8 @@ +<?php +/* + * Local plugin enable/disable settings + * Auto-generated through plugin/extension manager + * + * NOTE: Plugins will not be added to this file unless there is a need to override a default setting. Plugins are + * enabled by default, unless having a 'disabled' file in their plugin folder. + */ diff --git a/_testing/inttests.conf/plugins.required.php b/_testing/inttests.conf/plugins.required.php new file mode 100644 index 000000000..26eb8888b --- /dev/null +++ b/_testing/inttests.conf/plugins.required.php @@ -0,0 +1,11 @@ +<?php +/** + * This file configures the enabled/disabled status of plugins, which are also protected + * from changes by the extention manager. These settings will override any local settings. + * It is not recommended to change this file, as it is overwritten on DokuWiki upgrades. + */ +$plugins['acl'] = 1; +$plugins['plugin'] = 1; +$plugins['config'] = 1; +$plugins['usermanager'] = 1; +$plugins['revert'] = 1; diff --git a/_testing/inttests.conf/scheme.conf b/_testing/inttests.conf/scheme.conf new file mode 100644 index 000000000..88cb3c44d --- /dev/null +++ b/_testing/inttests.conf/scheme.conf @@ -0,0 +1,11 @@ +#Add URL schemes you want to be recognized as links here + +http +https +telnet +gopher +wais +ftp +ed2k +irc +ldap \ No newline at end of file diff --git a/_testing/inttests.conf/smileys.conf b/_testing/inttests.conf/smileys.conf new file mode 100644 index 000000000..80daed57a --- /dev/null +++ b/_testing/inttests.conf/smileys.conf @@ -0,0 +1,28 @@ +# Smileys configured here will be replaced by the +# configured images in the smiley directory + +8-) icon_cool.gif +8-O icon_eek.gif +8-o icon_eek.gif +:-( icon_sad.gif +:-) icon_smile.gif +=) icon_smile2.gif +:-/ icon_doubt.gif +:-\ icon_doubt2.gif +:-? icon_confused.gif +:-D icon_biggrin.gif +:-P icon_razz.gif +:-o icon_surprised.gif +:-O icon_surprised.gif +:-x icon_silenced.gif +:-X icon_silenced.gif +:-| icon_neutral.gif +;-) icon_wink.gif +m( facepalm.gif +^_^ icon_fun.gif +:?: icon_question.gif +:!: icon_exclaim.gif +LOL icon_lol.gif +FIXME fixme.gif +DELETEME delete.gif + diff --git a/_testing/inttests.conf/users.auth.php.dist b/_testing/inttests.conf/users.auth.php.dist new file mode 100644 index 000000000..6576eeb5f --- /dev/null +++ b/_testing/inttests.conf/users.auth.php.dist @@ -0,0 +1,10 @@ +# users.auth.php +# <?php exit()?> +# Don't modify the lines above +# +# Userfile +# +# Format: +# +# user:MD5password:Real Name:email:groups,comma,seperated + diff --git a/_testing/inttests.conf/wordblock.conf b/_testing/inttests.conf/wordblock.conf new file mode 100644 index 000000000..fe451f278 --- /dev/null +++ b/_testing/inttests.conf/wordblock.conf @@ -0,0 +1,32 @@ +# This blacklist is maintained by the DokuWiki community +# patches welcome +# +https?:\/\/(\S*?)(-side-effects|top|pharm|pill|discount|discount-|deal|price|order|now|best|cheap|cheap-|online|buy|buy-|sale|sell)(\S*?)(cialis|viagra|prazolam|xanax|zanax|soma|vicodin|zenical|xenical|meridia|paxil|prozac|claritin|allegra|lexapro|wellbutrin|zoloft|retin|valium|levitra|phentermine) +gay\s*sex +bi\s*sex +incest +zoosex +gang\s*bang +facials +ladyboy +fetish +\btits\b +\brape\b +bolea\.com +52crystal +baida\.org +web-directory\.awardspace\.us +korsan-team\.com +BUDA TAMAMDIR +wow-powerleveling-wow\.com +wow gold +wow-gold\.dinmo\.cn +downgrade-vista\.com +downgradetowindowsxp\.com +elegantugg\.com +classicedhardy\.com +research-service\.com +https?:\/\/(\S*?)(2-pay-secure|911essay|academia-research|anypapers|applicationessay|bestbuyessay|bestdissertation|bestessay|bestresume|besttermpaper|businessessay|college-paper|customessay|custom-made-paper|custom-writing|degree-?result|dissertationblog|dissertation-service|dissertations?expert|essaybank|essay-?blog|essaycapital|essaylogic|essaymill|essayontime|essaypaper|essays?land|essaytownsucks|essay-?writ|fastessays|freelancercareers|genuinecontent|genuineessay|genuinepaper|goessay|grandresume|killer-content|ma-dissertation|managementessay|masterpaper|mightystudent|needessay|researchedge|researchpaper-blog|resumecvservice|resumesexperts|resumesplanet|rushessay|samedayessay|superiorcontent|superiorpaper|superiorthesis|term-paper|termpaper-blog|term-paper-research|thesisblog|universalresearch|valwriting|vdwriters|wisetranslation|writersassembly|writers\.com\.ph|writers\.ph) +flatsinmumbai\.co\.in +https?:\/\/(\S*?)penny-?stock +mattressreview\.biz diff --git a/_testing/inttests.data/_dummy b/_testing/inttests.data/_dummy new file mode 100644 index 000000000..e69de29bb diff --git a/_testing/inttests.data/attic/_dummy b/_testing/inttests.data/attic/_dummy new file mode 100644 index 000000000..e69de29bb diff --git a/_testing/inttests.data/cache/_dummy b/_testing/inttests.data/cache/_dummy new file mode 100644 index 000000000..e69de29bb diff --git a/_testing/inttests.data/deleted.files b/_testing/inttests.data/deleted.files new file mode 100644 index 000000000..d034e1d5b --- /dev/null +++ b/_testing/inttests.data/deleted.files @@ -0,0 +1,257 @@ +# This is a list of files that were present in previous DokuWiki releases +# but were removed later. An up to date DokuWiki should not have any of +# the files installed +# A copy of this list is maintained at +# http://www.dokuwiki.org/install:upgrade#files_to_remove + +# removed in 2011-11-10 +lib/_fla/.htaccess +lib/_fla/MultipleUpload.as +lib/_fla/README +lib/_fla/index.html +lib/_fla/multipleUpload.fla +lib/exe/multipleUpload.swf +lib/images/multiupload.png +lib/scripts/ajax.js +lib/scripts/events.js +lib/scripts/subscriptions.js + +# removed in 2011-05-25 +conf/words.aspell.dist +lib/styles/style.css + +# removed in 2010-11-07 +inc/lang/ar/subscribermail.txt +inc/lang/az/subscribermail.txt +inc/lang/bg/subscribermail.txt +inc/lang/ca/subscribermail.txt +inc/lang/ca-valencia/subscribermail.txt +inc/lang/cs/subscribermail.txt +inc/lang/da/subscribermail.txt +inc/lang/de-informal/subscribermail.txt +inc/lang/el/subscribermail.txt +inc/lang/eo/subscribermail.txt +inc/lang/es/subscribermail.txt +inc/lang/et/subscribermail.txt +inc/lang/eu/subscribermail.txt +inc/lang/fa/subscribermail.txt +inc/lang/fi/subscribermail.txt +inc/lang/fo/subscribermail.txt +inc/lang/fr/subscribermail.txt +inc/lang/gl/subscribermail.txt +inc/lang/he/subscribermail.txt +inc/lang/hr/subscribermail.txt +inc/lang/hu/subscribermail.txt +inc/lang/id/subscribermail.txt +inc/lang/is/subscribermail.txt +inc/lang/it/subscribermail.txt +inc/lang/ja/subscribermail.txt +inc/lang/ko/subscribermail.txt +inc/lang/ku/subscribermail.txt +inc/lang/lt/subscribermail.txt +inc/lang/lv/subscribermail.txt +inc/lang/mr/subscribermail.txt +inc/lang/ne/subscribermail.txt +inc/lang/nl/subscribermail.txt +inc/lang/no/subscribermail.txt +inc/lang/pl/subscribermail.txt +inc/lang/pt-br/subscribermail.txt +inc/lang/pt/subscribermail.txt +inc/lang/ro/subscribermail.txt +inc/lang/ru/subscribermail.txt +inc/lang/sk/subscribermail.txt +inc/lang/sr/subscribermail.txt +inc/lang/sv/subscribermail.txt +inc/lang/th/subscribermail.txt +inc/lang/tr/subscribermail.txt +inc/lang/uk/subscribermail.txt +inc/lang/zh/subscribermail.txt +inc/lang/zh-tw/subscribermail.txt + +# removed in rc2010-10-07 +conf/msg +inc/lang/bg/wordblock.txt +inc/lang/ca-valencia/wordblock.txt +inc/lang/ca/wordblock.txt +inc/lang/cs/wordblock.txt +inc/lang/da/wordblock.txt +inc/lang/de-informal/wordblock.txt +inc/lang/de/subscribermail.txt +inc/lang/de/wordblock.txt +inc/lang/el/wordblock.txt +inc/lang/en/subscribermail.txt +inc/lang/en/wordblock.txt +inc/lang/eo/wordblock.txt +inc/lang/es/wordblock.txt +inc/lang/et/wordblock.txt +inc/lang/eu/wordblock.txt +inc/lang/fa/wordblock.txt +inc/lang/fi/wordblock.txt +inc/lang/fo/wordblock.txt +inc/lang/fr/wordblock.txt +inc/lang/he/wordblock.txt +inc/lang/hr/wordblock.txt +inc/lang/hu/wordblock.txt +inc/lang/id/wordblock.txt +inc/lang/it/wordblock.txt +inc/lang/ja/wordblock.txt +inc/lang/ko/wordblock.txt +inc/lang/ku/wordblock.txt +inc/lang/lt/wordblock.txt +inc/lang/lv/wordblock.txt +inc/lang/mg/wordblock.txt +inc/lang/mr/wordblock.txt +inc/lang/nl/wordblock.txt +inc/lang/no/wordblock.txt +inc/lang/pl/wordblock.txt +inc/lang/pt-br/wordblock.txt +inc/lang/pt/wordblock.txt +inc/lang/ro/wordblock.txt +inc/lang/sk/wordblock.txt +inc/lang/sl/wordblock.txt +inc/lang/sr/wordblock.txt +inc/lang/sv/wordblock.txt +inc/lang/th/wordblock.txt +inc/lang/tr/wordblock.txt +inc/lang/uk/wordblock.txt +inc/lang/vi/wordblock.txt +inc/lang/zh-tw/wordblock.txt +inc/lang/zh/wordblock.txt +lib/scripts/pngbehavior.htc + +# removed in rc2009-12-02 +inc/lang/ar/wordblock.txt +inc/lang/ca-va/ +lib/plugins/acl/lang/ca-va/ +lib/plugins/config/lang/ca-va/ +lib/plugins/plugin/lang/ca-va/ +lib/plugins/popularity/lang/ca-va/ +lib/plugins/revert/lang/ca-va/ +lib/plugins/usermanager/lang/ca-va/ + +# removed in rc2009-01-30 +lib/plugins/upgradeplugindirectory +lib/plugins/upgradeplugindirectory/action.php + +# removed in rc2009-01-26 +inc/auth/punbb.class.php +inc/lang/ko/edit.txt_bak +inc/lang/ko/lang.php_bak +inc/lang/ku/admin_acl.txt +inc/lang/mg/admin_acl.txt +lib/plugins/importoldchangelog +lib/plugins/importoldchangelog/action.php +lib/plugins/importoldindex +lib/plugins/importoldindex/action.php +lib/plugins/usermanager/images/no_user_edit.png +lib/plugins/usermanager/images/user_edit.png +lib/tpl/default/UWEB.css + +# removed in rc2008-03-31 +inc/aspell.php +inc/geshi/css-gen.cfg +inc/lang/fr/admin_acl.txt +lib/exe/spellcheck.php +lib/images/toolbar/spellcheck.png +lib/images/toolbar/spellnoerr.png +lib/images/toolbar/spellstop.png +lib/images/toolbar/spellwait.gif +lib/plugins/acl/lang/ar/intro.txt +lib/plugins/acl/lang/bg/intro.txt +lib/plugins/acl/lang/ca/intro.txt +lib/plugins/acl/lang/cs/intro.txt +lib/plugins/acl/lang/da/intro.txt +lib/plugins/acl/lang/de/intro.txt +lib/plugins/acl/lang/el/intro.txt +lib/plugins/acl/lang/en/intro.txt +lib/plugins/acl/lang/es/intro.txt +lib/plugins/acl/lang/et/intro.txt +lib/plugins/acl/lang/eu/intro.txt +lib/plugins/acl/lang/fi/intro.txt +lib/plugins/acl/lang/fr/intro.txt +lib/plugins/acl/lang/gl/intro.txt +lib/plugins/acl/lang/he/intro.txt +lib/plugins/acl/lang/id/intro.txt +lib/plugins/acl/lang/it/intro.txt +lib/plugins/acl/lang/ja/intro.txt +lib/plugins/acl/lang/ko/intro.txt +lib/plugins/acl/lang/lt/intro.txt +lib/plugins/acl/lang/lv/intro.txt +lib/plugins/acl/lang/nl/intro.txt +lib/plugins/acl/lang/no/intro.txt +lib/plugins/acl/lang/pl/intro.txt +lib/plugins/acl/lang/pt/intro.txt +lib/plugins/acl/lang/ru/intro.txt +lib/plugins/acl/lang/sk/intro.txt +lib/plugins/acl/lang/sr/intro.txt +lib/plugins/acl/lang/sv/intro.txt +lib/plugins/acl/lang/tr/intro.txt +lib/plugins/acl/lang/uk/intro.txt +lib/plugins/acl/lang/vi/intro.txt +lib/plugins/acl/lang/zh/intro.txt +lib/plugins/acl/lang/zh-tw/intro.txt +lib/scripts/spellcheck.js +lib/styles/spellcheck.css + +# removed in 2007-06-26 +inc/parser/wiki.php +lib/images/interwiki/bug.gif +lib/plugins/base.php +lib/plugins/plugin/inc +lib/plugins/plugin/inc/tarlib.class.php +lib/plugins/plugin/inc/zip.lib.php +lib/scripts/domLib.js +lib/scripts/domTT.js + +# removed in 2006-11-06 +inc/admin_acl.php +inc/lang/lt/stopwords.txt +inc/magpie +inc/magpie/rss_cache.inc +inc/magpie/rss_fetch.inc +inc/magpie/rss_parse.inc +inc/magpie/rss_utils.inc +lib/exe/media.php +lib/tpl/default/mediaedit.php +lib/tpl/default/media.php +lib/tpl/default/mediaref.php + +# removed in 2006-03-09 +data/pages/wiki/playground.txt +inc/auth/ldap.php +inc/auth/mysql.php +inc/auth/pgsql.php +inc/auth/plain.php +inc/lang/ca/admin_acl.txt +inc/lang/cs/admin_acl.txt +inc/lang/da/admin_acl.txt +inc/lang/de/admin_acl.txt +inc/lang/en/admin_acl.txt +inc/lang/et/admin_acl.txt +inc/lang/eu/admin_acl.txt +inc/lang/fr/admin_acl.txt +inc/lang/it/admin_acl.txt +inc/lang/ja/admin_acl.txt +inc/lang/lt/admin_acl.txt +inc/lang/lv/admin_acl.txt +inc/lang/nl/admin_acl.txt +inc/lang/no/admin_acl.txt +inc/lang/pl/admin_acl.txt +inc/lang/pt/admin_acl.txt +inc/lang/vi/admin_acl.txt +inc/lang/zh-tw/admin_acl.txt +inc/parser/spamcheck.php +lib/images/favicon.ico +lib/images/thumbup.gif +lib/images/toolbar/code.png +lib/images/toolbar/empty.png +lib/images/toolbar/extlink.png +lib/images/toolbar/fonth1.png +lib/images/toolbar/fonth2.png +lib/images/toolbar/fonth3.png +lib/images/toolbar/fonth4.png +lib/images/toolbar/fonth5.png +lib/images/toolbar/list.png +lib/images/toolbar/list_ul.png +lib/images/toolbar/rule.png +lib/tpl/default/images/interwiki.png diff --git a/_testing/inttests.data/index/_dummy b/_testing/inttests.data/index/_dummy new file mode 100644 index 000000000..e69de29bb diff --git a/_testing/inttests.data/locks/_dummy b/_testing/inttests.data/locks/_dummy new file mode 100644 index 000000000..e69de29bb diff --git a/_testing/inttests.data/media/wiki/dokuwiki-128.png b/_testing/inttests.data/media/wiki/dokuwiki-128.png new file mode 100644 index 0000000000000000000000000000000000000000..b2306ac9571f39c6f30c0a5967e5b520415b3d80 GIT binary patch literal 33615 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 Rnxp^#002ovPDHLkV1iIzXKw%i literal 0 HcmV?d00001 diff --git a/_testing/inttests.data/media_attic/_dummy b/_testing/inttests.data/media_attic/_dummy new file mode 100644 index 000000000..e69de29bb diff --git a/_testing/inttests.data/media_meta/_dummy b/_testing/inttests.data/media_meta/_dummy new file mode 100644 index 000000000..e69de29bb diff --git a/_testing/inttests.data/meta/_dummy b/_testing/inttests.data/meta/_dummy new file mode 100644 index 000000000..e69de29bb diff --git a/_testing/inttests.data/pages/wiki/dokuwiki.txt b/_testing/inttests.data/pages/wiki/dokuwiki.txt new file mode 100644 index 000000000..e6fac5b65 --- /dev/null +++ b/_testing/inttests.data/pages/wiki/dokuwiki.txt @@ -0,0 +1,64 @@ +====== DokuWiki ====== + +[[doku>wiki:dokuwiki|{{wiki:dokuwiki-128.png }}]] DokuWiki is a standards compliant, simple to use [[wp>Wiki]], mainly aimed at creating documentation of any kind. It is targeted at developer teams, workgroups and small companies. It has a simple but powerful [[wiki:syntax]] which makes sure the datafiles remain readable outside the Wiki and eases the creation of structured texts. All data is stored in plain text files -- no database is required. + +Read the [[doku>manual|DokuWiki Manual]] to unleash the full power of DokuWiki. + +===== Download ===== + +DokuWiki is available at http://www.splitbrain.org/go/dokuwiki + + +===== Read More ===== + +All documentation and additional information besides the [[syntax|syntax description]] is maintained in the DokuWiki at [[doku>|www.dokuwiki.org]]. + +**About DokuWiki** + + * [[doku>features|A feature list]] :!: + * [[doku>users|Happy Users]] + * [[doku>press|Who wrote about it]] + * [[doku>blogroll|What Bloggers think]] + * [[http://www.wikimatrix.org/show/DokuWiki|Compare it with other wiki software]] + +**Installing DokuWiki** + + * [[doku>requirements|System Requirements]] + * [[http://www.splitbrain.org/go/dokuwiki|Download DokuWiki]] :!: + * [[doku>changes|Change Log]] + * [[doku>Install|How to install or upgrade]] :!: + * [[doku>config|Configuration]] + +**Using DokuWiki** + + * [[doku>syntax|Wiki Syntax]] + * [[doku>manual|The manual]] :!: + * [[doku>FAQ|Frequently Asked Questions (FAQ)]] + * [[doku>glossary|Glossary]] + * [[http://search.dokuwiki.org|Search for DokuWiki help and documentation]] + +**Customizing DokuWiki** + + * [[doku>tips|Tips and Tricks]] + * [[doku>Template|How to create and use templates]] + * [[doku>plugins|Installing plugins]] + * [[doku>development|Development Resources]] + +**DokuWiki Feedback and Community** + + * [[doku>newsletter|Subscribe to the newsletter]] :!: + * [[doku>mailinglist|Join the mailing list]] + * [[http://forum.dokuwiki.org|Check out the user forum]] + * [[doku>irc|Talk to other users in the IRC channel]] + * [[http://bugs.splitbrain.org/index.php?project=1|Submit bugs and feature wishes]] + * [[http://www.wikimatrix.org/forum/viewforum.php?id=10|Share your experiences in the WikiMatrix forum]] + * [[doku>thanks|Some humble thanks]] + + +===== Copyright ===== + +2004-2010 (c) Andreas Gohr <andi@splitbrain.org>((Please do not contact me for help and support -- use the [[doku>mailinglist]] or [[http://forum.dokuwiki.org|forum]] instead)) and the DokuWiki Community + +The DokuWiki engine is licensed under [[http://www.gnu.org/licenses/gpl.html|GNU General Public License]] Version 2. If you use DokuWiki in your company, consider [[doku>donate|donating]] a few bucks ;-). + +Not sure what this means? See the [[doku>faq:license|FAQ on the Licenses]]. diff --git a/_testing/inttests.data/pages/wiki/syntax.txt b/_testing/inttests.data/pages/wiki/syntax.txt new file mode 100644 index 000000000..0b5480949 --- /dev/null +++ b/_testing/inttests.data/pages/wiki/syntax.txt @@ -0,0 +1,486 @@ +====== Formatting Syntax ====== + +[[doku>DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing the //Edit this page// button at the top or bottom of the page. If you want to try something, just use the [[playground:playground|playground]] page. The simpler markup is easily accessible via [[doku>toolbar|quickbuttons]], too. + +===== Basic Text Formatting ===== + +DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. Of course you can **__//''combine''//__** all these. + + DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. + Of course you can **__//''combine''//__** all these. + +You can use <sub>subscript</sub> and <sup>superscript</sup>, too. + + You can use <sub>subscript</sub> and <sup>superscript</sup>, too. + +You can mark something as <del>deleted</del> as well. + + You can mark something as <del>deleted</del> as well. + +**Paragraphs** are created from blank lines. If you want to **force a newline** without a paragraph, you can use two backslashes followed by a whitespace or the end of line. + +This is some text with some linebreaks\\ Note that the +two backslashes are only recognized at the end of a line\\ +or followed by\\ a whitespace \\this happens without it. + + This is some text with some linebreaks\\ Note that the + two backslashes are only recognized at the end of a line\\ + or followed by\\ a whitespace \\this happens without it. + +You should use forced newlines only if really needed. + +===== Links ===== + +DokuWiki supports multiple ways of creating links. + +==== External ==== + +External links are recognized automagically: http://www.google.com or simply www.google.com - You can set the link text as well: [[http://www.google.com|This Link points to google]]. Email addresses like this one: <andi@splitbrain.org> are recognized, too. + + DokuWiki supports multiple ways of creating links. External links are recognized + automagically: http://www.google.com or simply www.google.com - You can set + link text as well: [[http://www.google.com|This Link points to google]]. Email + addresses like this one: <andi@splitbrain.org> are recognized, too. + +==== Internal ==== + +Internal links are created by using square brackets. You can either just give a [[pagename]] or use an additional [[pagename|link text]]. + + Internal links are created by using square brackets. You can either just give + a [[pagename]] or use an additional [[pagename|link text]]. + +[[doku>pagename|Wiki pagenames]] are converted to lowercase automatically, special characters are not allowed. + +You can use [[some:namespaces]] by using a colon in the pagename. + + You can use [[some:namespaces]] by using a colon in the pagename. + +For details about namespaces see [[doku>namespaces]]. + +Linking to a specific section is possible, too. Just add the section name behind a hash character as known from HTML. This links to [[syntax#internal|this Section]]. + + This links to [[syntax#internal|this Section]]. + +Notes: + + * Links to [[syntax|existing pages]] are shown in a different style from [[nonexisting]] ones. + * DokuWiki does not use [[wp>CamelCase]] to automatically create links by default, but this behavior can be enabled in the [[doku>config]] file. Hint: If DokuWiki is a link, then it's enabled. + * When a section's heading is changed, its bookmark changes, too. So don't rely on section linking too much. + +==== Interwiki ==== + +DokuWiki supports [[doku>Interwiki]] links. These are quick links to other Wikis. For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]]. + + DokuWiki supports [[doku>Interwiki]] links. These are quick links to other Wikis. + For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]]. + +==== Windows Shares ==== + +Windows shares like [[\\server\share|this]] are recognized, too. Please note that these only make sense in a homogeneous user group like a corporate [[wp>Intranet]]. + + Windows Shares like [[\\server\share|this]] are recognized, too. + +Notes: + + * For security reasons direct browsing of windows shares only works in Microsoft Internet Explorer per default (and only in the "local zone"). + * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http://kb.mozillazine.org/Links_to_local_pages_do_not_work|Mozilla Knowledge Base]]. However, there will still be a JavaScript warning about trying to open a Windows Share. To remove this warning (for all users), put the following line in ''conf/local.protected.php'': + + $lang['js']['nosmblinks'] = ''; + +==== Image Links ==== + +You can also use an image to link to another internal or external page by combining the syntax for links and [[#images_and_other_files|images]] (see below) like this: + + [[http://www.php.net|{{wiki:dokuwiki-128.png}}]] + +[[http://www.php.net|{{wiki:dokuwiki-128.png}}]] + +Please note: The image formatting is the only formatting syntax accepted in link names. + +The whole [[#images_and_other_files|image]] and [[#links|link]] syntax is supported (including image resizing, internal and external images and URLs and interwiki links). + +===== Footnotes ===== + +You can add footnotes ((This is a footnote)) by using double parentheses. + + You can add footnotes ((This is a footnote)) by using double parentheses. + +===== Sectioning ===== + +You can use up to five different levels of headlines to structure your content. If you have more than three headlines, a table of contents is generated automatically -- this can be disabled by including the string ''<nowiki>~~NOTOC~~</nowiki>'' in the document. + +==== Headline Level 3 ==== +=== Headline Level 4 === +== Headline Level 5 == + + ==== Headline Level 3 ==== + === Headline Level 4 === + == Headline Level 5 == + +By using four or more dashes, you can make a horizontal line: + +---- + +===== Images and Other Files ===== + +You can include external and internal [[doku>images]] with curly brackets. Optionally you can specify the size of them. + +Real size: {{wiki:dokuwiki-128.png}} + +Resize to given width: {{wiki:dokuwiki-128.png?50}} + +Resize to given width and height((when the aspect ratio of the given width and height doesn't match that of the image, it will be cropped to the new ratio before resizing)): {{wiki:dokuwiki-128.png?200x50}} + +Resized external image: {{http://de3.php.net/images/php.gif?200x50}} + + Real size: {{wiki:dokuwiki-128.png}} + Resize to given width: {{wiki:dokuwiki-128.png?50}} + Resize to given width and height: {{wiki:dokuwiki-128.png?200x50}} + Resized external image: {{http://de3.php.net/images/php.gif?200x50}} + + +By using left or right whitespaces you can choose the alignment. + +{{ wiki:dokuwiki-128.png}} + +{{wiki:dokuwiki-128.png }} + +{{ wiki:dokuwiki-128.png }} + + {{ wiki:dokuwiki-128.png}} + {{wiki:dokuwiki-128.png }} + {{ wiki:dokuwiki-128.png }} + +Of course, you can add a title (displayed as a tooltip by most browsers), too. + +{{ wiki:dokuwiki-128.png |This is the caption}} + + {{ wiki:dokuwiki-128.png |This is the caption}} + +If you specify a filename (external or internal) that is not an image (''gif, jpeg, png''), then it will be displayed as a link instead. + +For linking an image to another page see [[#Image Links]] above. + +===== Lists ===== + +Dokuwiki supports ordered and unordered lists. To create a list item, indent your text by two spaces and use a ''*'' for unordered lists or a ''-'' for ordered ones. + + * This is a list + * The second item + * You may have different levels + * Another item + + - The same list but ordered + - Another item + - Just use indention for deeper levels + - That's it + +<code> + * This is a list + * The second item + * You may have different levels + * Another item + + - The same list but ordered + - Another item + - Just use indention for deeper levels + - That's it +</code> + +Also take a look at the [[doku>faq:lists|FAQ on list items]]. + +===== Text Conversions ===== + +DokuWiki can convert certain pre-defined characters or strings into images or other text or HTML. + +The text to image conversion is mainly done for smileys. And the text to HTML conversion is used for typography replacements, but can be configured to use other HTML as well. + +==== Text to Image Conversions ==== + +DokuWiki converts commonly used [[wp>emoticon]]s to their graphical equivalents. Those [[doku>Smileys]] and other images can be configured and extended. Here is an overview of Smileys included in DokuWiki: + + * 8-) %% 8-) %% + * 8-O %% 8-O %% + * :-( %% :-( %% + * :-) %% :-) %% + * =) %% =) %% + * :-/ %% :-/ %% + * :-\ %% :-\ %% + * :-? %% :-? %% + * :-D %% :-D %% + * :-P %% :-P %% + * :-O %% :-O %% + * :-X %% :-X %% + * :-| %% :-| %% + * ;-) %% ;-) %% + * ^_^ %% ^_^ %% + * :?: %% :?: %% + * :!: %% :!: %% + * LOL %% LOL %% + * FIXME %% FIXME %% + * DELETEME %% DELETEME %% + +==== Text to HTML Conversions ==== + +Typography: [[DokuWiki]] can convert simple text characters to their typographically correct entities. Here is an example of recognized characters. + +-> <- <-> => <= <=> >> << -- --- 640x480 (c) (tm) (r) +"He thought 'It's a man's world'..." + +<code> +-> <- <-> => <= <=> >> << -- --- 640x480 (c) (tm) (r) +"He thought 'It's a man's world'..." +</code> + +The same can be done to produce any kind of HTML, it just needs to be added to the [[doku>entities|pattern file]]. + +There are three exceptions which do not come from that pattern file: multiplication entity (640x480), 'single' and "double quotes". They can be turned off through a [[doku>config:typography|config option]]. + +===== Quoting ===== + +Some times you want to mark some text to show it's a reply or comment. You can use the following syntax: + + I think we should do it + + > No we shouldn't + + >> Well, I say we should + + > Really? + + >> Yes! + + >>> Then lets do it! + +I think we should do it + +> No we shouldn't + +>> Well, I say we should + +> Really? + +>> Yes! + +>>> Then lets do it! + +===== Tables ===== + +DokuWiki supports a simple syntax to create tables. + +^ Heading 1 ^ Heading 2 ^ Heading 3 ^ +| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 | +| Row 2 Col 1 | some colspan (note the double pipe) || +| Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 | + +Table rows have to start and end with a ''|'' for normal rows or a ''^'' for headers. + + ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ + | Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 | + | Row 2 Col 1 | some colspan (note the double pipe) || + | Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 | + +To connect cells horizontally, just make the next cell completely empty as shown above. Be sure to have always the same amount of cell separators! + +Vertical tableheaders are possible, too. + +| ^ Heading 1 ^ Heading 2 ^ +^ Heading 3 | Row 1 Col 2 | Row 1 Col 3 | +^ Heading 4 | no colspan this time | | +^ Heading 5 | Row 2 Col 2 | Row 2 Col 3 | + +As you can see, it's the cell separator before a cell which decides about the formatting: + + | ^ Heading 1 ^ Heading 2 ^ + ^ Heading 3 | Row 1 Col 2 | Row 1 Col 3 | + ^ Heading 4 | no colspan this time | | + ^ Heading 5 | Row 2 Col 2 | Row 2 Col 3 | + +You can have rowspans (vertically connected cells) by adding '':::'' into the cells below the one to which they should connect. + +^ Heading 1 ^ Heading 2 ^ Heading 3 ^ +| Row 1 Col 1 | this cell spans vertically | Row 1 Col 3 | +| Row 2 Col 1 | ::: | Row 2 Col 3 | +| Row 3 Col 1 | ::: | Row 2 Col 3 | + +Apart from the rowspan syntax those cells should not contain anything else. + + ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ + | Row 1 Col 1 | this cell spans vertically | Row 1 Col 3 | + | Row 2 Col 1 | ::: | Row 2 Col 3 | + | Row 3 Col 1 | ::: | Row 2 Col 3 | + +You can align the table contents, too. Just add at least two whitespaces at the opposite end of your text: Add two spaces on the left to align right, two spaces on the right to align left and two spaces at least at both ends for centered text. + +^ Table with alignment ^^^ +| right| center |left | +|left | right| center | +| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx | + +This is how it looks in the source: + + ^ Table with alignment ^^^ + | right| center |left | + |left | right| center | + | xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx | + +Note: Vertical alignment is not supported. + +===== No Formatting ===== + +If you need to display text exactly like it is typed (without any formatting), enclose the area either with ''%%<nowiki>%%'' tags or even simpler, with double percent signs ''<nowiki>%%</nowiki>''. + +<nowiki> +This is some text which contains addresses like this: http://www.splitbrain.org and **formatting**, but nothing is done with it. +</nowiki> +The same is true for %%//__this__ text// with a smiley ;-)%%. + + <nowiki> + This is some text which contains addresses like this: http://www.splitbrain.org and **formatting**, but nothing is done with it. + </nowiki> + The same is true for %%//__this__ text// with a smiley ;-)%%. + +===== Code Blocks ===== + +You can include code blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags ''%%<code>%%'' or ''%%<file>%%''. + + This is text is indented by two spaces. + +<code> +This is preformatted code all spaces are preserved: like <-this +</code> + +<file> +This is pretty much the same, but you could use it to show that you quoted a file. +</file> + +Those blocks were created by this source: + + This is text is indented by two spaces. + + <code> + This is preformatted code all spaces are preserved: like <-this + </code> + + <file> + This is pretty much the same, but you could use it to show that you quoted a file. + </file> + +==== Syntax Highlighting ==== + +[[wiki:DokuWiki]] can highlight sourcecode, which makes it easier to read. It uses the [[http://qbnz.com/highlighter/|GeSHi]] Generic Syntax Highlighter -- so any language supported by GeSHi is supported. The syntax uses the same code and file blocks described in the previous section, but this time the name of the language syntax to be highlighted is included inside the tag, e.g. ''<nowiki><code java></nowiki>'' or ''<nowiki><file java></nowiki>''. + +<code java> +/** + * The HelloWorldApp class implements an application that + * simply displays "Hello World!" to the standard output. + */ +class HelloWorldApp { + public static void main(String[] args) { + System.out.println("Hello World!"); //Display the string. + } +} +</code> + +The following language strings are currently recognized: //4cs, abap, actionscript-french, actionscript, actionscript3, ada, apache, applescript, asm, asp, autoconf, autohotkey, autoit, avisynth, awk, bash, basic4gl, bf, bibtex, blitzbasic, bnf, boo, c, c_mac, caddcl, cadlisp, cfdg, cfm, chaiscript, cil, clojure, cmake, cobol, cpp, cpp-qt, csharp, css, cuesheet, d, dcs, delphi, diff, div, dos, dot, ecmascript, eiffel, email, erlang, fo, fortran, freebasic, fsharp, gambas, genero, genie, gdb, glsl, gml, gnuplot, groovy, gettext, gwbasic, haskell, hicest, hq9plus, html, icon, idl, ini, inno, intercal, io, j, java5, java, javascript, jquery, kixtart, klonec, klonecpp, latex, lisp, locobasic, logtalk, lolcode, lotusformulas, lotusscript, lscript, lsl2, lua, m68k, magiksf, make, mapbasic, matlab, mirc, modula2, modula3, mmix, mpasm, mxml, mysql, newlisp, nsis, oberon2, objc, ocaml-brief, ocaml, oobas, oracle8, oracle11, oxygene, oz, pascal, pcre, perl, perl6, per, pf, php-brief, php, pike, pic16, pixelbender, plsql, postgresql, povray, powerbuilder, powershell, progress, prolog, properties, providex, purebasic, python, q, qbasic, rails, rebol, reg, robots, rpmspec, rsplus, ruby, sas, scala, scheme, scilab, sdlbasic, smalltalk, smarty, sql, systemverilog, tcl, teraterm, text, thinbasic, tsql, typoscript, unicon, vala, vbnet, vb, verilog, vhdl, vim, visualfoxpro, visualprolog, whitespace, winbatch, whois, xbasic, xml, xorg_conf, xpp, z80// + +==== Downloadable Code Blocks ==== + +When you use the ''%%<code>%%'' or ''%%<file>%%'' syntax as above, you might want to make the shown code available for download as well. You can to this by specifying a file name after language code like this: + +<code> +<file php myexample.php> +<?php echo "hello world!"; ?> +</file> +</code> + +<file php myexample.php> +<?php echo "hello world!"; ?> +</file> + +If you don't want any highlighting but want a downloadable file, specify a dash (''-'') as the language code: ''%%<code - myfile.foo>%%''. + + +===== Embedding HTML and PHP ===== + +You can embed raw HTML or PHP code into your documents by using the ''%%<html>%%'' or ''%%<php>%%'' tags. (Use uppercase tags if you need to enclose block level elements.) + +HTML example: + +<code> +<html> +This is some <span style="color:red;font-size:150%;">inline HTML</span> +</html> +<HTML> +<p style="border:2px dashed red;">And this is some block HTML</p> +</HTML> +</code> + +<html> +This is some <span style="color:red;font-size:150%;">inline HTML</span> +</html> +<HTML> +<p style="border:2px dashed red;">And this is some block HTML</p> +</HTML> + +PHP example: + +<code> +<php> +echo 'A logo generated by PHP:'; +echo '<img src="' . $_SERVER['PHP_SELF'] . '?=' . php_logo_guid() . '" alt="PHP Logo !" />'; +echo '(generated inline HTML)'; +</php> +<PHP> +echo '<table class="inline"><tr><td>The same, but inside a block level element:</td>'; +echo '<td><img src="' . $_SERVER['PHP_SELF'] . '?=' . php_logo_guid() . '" alt="PHP Logo !" /></td>'; +echo '</tr></table>'; +</PHP> +</code> + +<php> +echo 'A logo generated by PHP:'; +echo '<img src="' . $_SERVER['PHP_SELF'] . '?=' . php_logo_guid() . '" alt="PHP Logo !" />'; +echo '(inline HTML)'; +</php> +<PHP> +echo '<table class="inline"><tr><td>The same, but inside a block level element:</td>'; +echo '<td><img src="' . $_SERVER['PHP_SELF'] . '?=' . php_logo_guid() . '" alt="PHP Logo !" /></td>'; +echo '</tr></table>'; +</PHP> + +**Please Note**: HTML and PHP embedding is disabled by default in the configuration. If disabled, the code is displayed instead of executed. + +===== RSS/ATOM Feed Aggregation ===== +[[DokuWiki]] can integrate data from external XML feeds. For parsing the XML feeds, [[http://simplepie.org/|SimplePie]] is used. All formats understood by SimplePie can be used in DokuWiki as well. You can influence the rendering by multiple additional space separated parameters: + +^ Parameter ^ Description ^ +| any number | will be used as maximum number items to show, defaults to 8 | +| reverse | display the last items in the feed first | +| author | show item authors names | +| date | show item dates | +| description| show the item description. If [[doku>config:htmlok|HTML]] is disabled all tags will be stripped | +| //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). | + +The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki:DokuWiki]] will generally try to supply a cached version of a page, obviously this is inappropriate when the page contains dynamic external content. The parameter tells [[wiki:DokuWiki]] to re-render the page if it is more than //refresh period// since the page was last rendered. + +**Example:** + + {{rss>http://slashdot.org/index.rss 5 author date 1h }} + +{{rss>http://slashdot.org/index.rss 5 author date 1h }} + + +===== Control Macros ===== + +Some syntax influences how DokuWiki renders a page without creating any output it self. The following control macros are availble: + +^ Macro ^ Description | +| %%~~NOTOC~~%% | If this macro is found on the page, no table of contents will be created | +| %%~~NOCACHE~~%% | DokuWiki caches all output by default. Sometimes this might not be wanted (eg. when the %%<php>%% syntax above is used), adding this macro will force DokuWiki to rerender a page on every call | + +===== Syntax Plugins ===== + +DokuWiki's syntax can be extended by [[doku>plugins|Plugins]]. How the installed plugins are used is described on their appropriate description pages. The following syntax plugins are available in this particular DokuWiki installation: + +~~INFO:syntaxplugins~~ diff --git a/_testing/inttests.data/security.png b/_testing/inttests.data/security.png new file mode 100644 index 0000000000000000000000000000000000000000..c4f1a977189e88ffeb7b8a8f80050847033757d8 GIT binary patch literal 7917 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 a0b;5>cOm5y3_=^vFmh7Lk~QKc!T%5S=#xtT literal 0 HcmV?d00001 diff --git a/_testing/inttests.data/security.xcf b/_testing/inttests.data/security.xcf new file mode 100644 index 0000000000000000000000000000000000000000..990287830951e858716c718fccea880fcb49a9ad GIT binary patch literal 12093 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 XFGUR;(@2TPkjn7mDFpHT%PIUX*ewQN literal 0 HcmV?d00001 diff --git a/_testing/inttests.data/tmp/_dummy b/_testing/inttests.data/tmp/_dummy new file mode 100644 index 000000000..e69de29bb diff --git a/_testing/integrationtests/bootstrap.php b/_testing/inttests.php similarity index 63% rename from _testing/integrationtests/bootstrap.php rename to _testing/inttests.php index e7029247f..7b263deb9 100644 --- a/_testing/integrationtests/bootstrap.php +++ b/_testing/inttests.php @@ -7,8 +7,41 @@ * runtime inspection. */ +// helper for recursive copy() +function rcopy($destdir, $source) { + if (!is_dir($source)) { + copy($source, $destdir.'/'.basename($source)); + } else { + $newdestdir = $destdir.'/'.basename($source); + mkdir($newdestdir); + + $dh = dir($source); + while (false !== ($entry = $dh->read())) { + if ($entry == '.' || $entry == '..') { + continue; + } + rcopy($newdestdir, $source.'/'.$entry); + } + $dh->close(); + } +} + +// prepare temporary directories +define('DOKU_INC', dirname(dirname(__FILE__)).'/'); +define('TMP_DIR', '/tmp/dwinttests-'.microtime(true)); +define('DOKU_CONF', TMP_DIR.'/inttests.conf/'); +define('DOKU_PLUGIN', TMP_DIR.'/plugins/'); +define('DOKU_TMP_DATA', TMP_DIR.'/inttests.data/'); + +// create temp directories +mkdir(TMP_DIR); +mkdir(DOKU_PLUGIN); + +// populate default dirs +rcopy(TMP_DIR, dirname(__FILE__).'/inttests.conf'); +rcopy(TMP_DIR, dirname(__FILE__).'/inttests.data'); + // load dw -define('DOKU_INC', dirname(dirname(dirname(__FILE__))).'/'); require_once(DOKU_INC.'inc/init.php'); // output buffering @@ -28,8 +61,6 @@ class TestRequest { var $get_vars = array(); var $post_vars = array(); - var $output = ''; - function __construct($page = '') { $this->setPage($page); } @@ -50,6 +81,16 @@ class TestRequest { $this->setGetVar('id', $pageName); } + function addLocalConf($text) { + $this->conf_local[] = $text; + } + + function hook($hook, $step, $function) { + global $EVENT_HANDLER; + $null = null; + $EVENT_HANDLER->register_hook($hook, $step, $null, $function); + } + function execute() { global $output_buffer; $output_buffer = ''; diff --git a/_testing/integrationtests.xml b/_testing/inttests.xml similarity index 76% rename from _testing/integrationtests.xml rename to _testing/inttests.xml index f3beae66d..cb216e59a 100644 --- a/_testing/integrationtests.xml +++ b/_testing/inttests.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <phpunit - bootstrap="integrationtests/bootstrap.php" + bootstrap="inttests.php" convertNoticesToExceptions="false"> <testsuites> <testsuite name="DokuWiki Integration Tests"> - <directory suffix=".test.php">integrationtests/</directory> + <directory suffix=".test.php">inttests/</directory> </testsuite> <testsuite name="Plugin Integration Tests"> <directory suffix=".inttest.php">../lib/plugins/*/_testing</directory> diff --git a/_testing/integrationtests/basic/basic.test.php b/_testing/inttests/basic.test.php similarity index 100% rename from _testing/integrationtests/basic/basic.test.php rename to _testing/inttests/basic.test.php diff --git a/_testing/inttests/hooks.test.php b/_testing/inttests/hooks.test.php new file mode 100644 index 000000000..6a31d5dc2 --- /dev/null +++ b/_testing/inttests/hooks.test.php @@ -0,0 +1,17 @@ +<?php + +class HooksTest extends PHPUnit_Framework_TestCase { + + function testHookTriggering() { + $request = new TestRequest(); + + $hookTriggered = false; + $request->hook('TPL_CONTENT_DISPLAY', 'AFTER', function() use (&$hookTriggered) { + $hookTriggered = true; + }); + + $request->execute(); + + $this->assertTrue($hookTriggered, 'Hook was not triggered as expected!'); + } +} -- GitLab