├── LICENSE ├── README.md ├── community ├── action │ ├── admin_massregex.php │ ├── colorbox.php │ ├── geshicss.php │ ├── hiddencontent.php │ ├── hljs.php │ ├── imageslider.php │ ├── messenger.php │ ├── scheduler.php │ └── template │ │ ├── admin_massregex.tpl │ │ ├── colorbox.tpl │ │ ├── geshicss.tpl │ │ ├── hiddencontent.tpl │ │ ├── imageslider.tpl │ │ ├── messenger.tpl │ │ └── scheduler.tpl ├── class │ └── gpg.php ├── devel │ └── relang.php ├── formatter │ ├── bbcode.php │ ├── class │ │ └── bbcode.php │ └── highlight │ │ ├── colorbox.php │ │ ├── csv.php │ │ ├── geshi.php │ │ ├── graphviz.php │ │ ├── hljs.php │ │ ├── template │ │ ├── colorbox.tpl │ │ ├── csv.tpl │ │ ├── geshi.tpl │ │ ├── hljs.tpl │ │ └── timeline.tpl │ │ └── timeline.php ├── handler │ ├── sendpage.php │ ├── slideshow.xml.php │ └── template │ │ ├── sendpage.tpl │ │ └── slideshow.xml.tpl └── theme │ └── README.txt ├── readme.png └── src ├── .htaccess ├── _cache ├── .htaccess ├── config │ └── .htaccess ├── feed │ └── .htaccess ├── page │ └── .htaccess ├── query │ └── .htaccess ├── session │ └── .htaccess └── template │ └── .htaccess ├── action ├── admin_recovery.php ├── admin_replace.php ├── admincache.php ├── adminupdate.php ├── anchor.php ├── authors.php ├── backlinks.php ├── blog.php ├── calendar.php ├── categories.php ├── category.php ├── changepassword.php ├── changes.php ├── comment.php ├── commented.php ├── comments.php ├── deleted.php ├── edit.php ├── editsection.php ├── embed.php ├── feed.php ├── filelinks.php ├── files.php ├── forums.php ├── gallery.php ├── groups.php ├── hashid.php ├── help.php ├── hits.php ├── import.php ├── include.php ├── interwikilist.php ├── lang │ ├── help.de.php │ └── help.ru.php ├── lastedited.php ├── license.php ├── login.php ├── menu.php ├── mostcommented.php ├── mostpopular.php ├── mychanges.php ├── mychangeswatches.php ├── mygroups.php ├── mypages.php ├── mywatches.php ├── navigation.php ├── news.php ├── orphaned.php ├── pagebreak.php ├── pageindex.php ├── pagelinks.php ├── paragraphs.php ├── randomimage.php ├── randompage.php ├── randomphrase.php ├── redirect.php ├── registration.php ├── search.php ├── tagcloud.php ├── template │ ├── admin_recovery.tpl │ ├── admin_replace.tpl │ ├── admincache.tpl │ ├── anchor.tpl │ ├── authors.tpl │ ├── backlinks.tpl │ ├── blog.tpl │ ├── calendar.tpl │ ├── categories.tpl │ ├── category.tpl │ ├── changepassword.tpl │ ├── changes.tpl │ ├── comment.tpl │ ├── commented.tpl │ ├── comments.tpl │ ├── deleted.tpl │ ├── edit.tpl │ ├── editsection.tpl │ ├── embed.tpl │ ├── feed.tpl │ ├── filelinks.tpl │ ├── files.tpl │ ├── forums.tpl │ ├── gallery.tpl │ ├── groups.tpl │ ├── hashid.tpl │ ├── help.tpl │ ├── import.tpl │ ├── include.tpl │ ├── lastedited.tpl │ ├── license.tpl │ ├── login.tpl │ ├── menu.tpl │ ├── mostcommented.tpl │ ├── mostpopular.tpl │ ├── mychanges.tpl │ ├── mychangeswatches.tpl │ ├── mygroups.tpl │ ├── mypages.tpl │ ├── mywatches.tpl │ ├── navigation.tpl │ ├── news.tpl │ ├── orphaned.tpl │ ├── pageindex.tpl │ ├── pagelinks.tpl │ ├── randomimage.tpl │ ├── randomphrase.tpl │ ├── registration.tpl │ ├── search.tpl │ ├── tagcloud.tpl │ ├── toc.tpl │ ├── topics.tpl │ ├── upload.tpl │ ├── usergroups.tpl │ ├── users.tpl │ ├── usersettings.tpl │ ├── wanted.tpl │ ├── watchers.tpl │ └── whatsnew.tpl ├── toc.php ├── topics.php ├── tree.php ├── upload.php ├── usergroups.php ├── userpages.php ├── users.php ├── usersettings.php ├── wanted.php ├── watchers.php └── whatsnew.php ├── admin ├── admin.php ├── common │ └── database.php ├── lang │ ├── ap.ar.php │ ├── ap.bg.php │ ├── ap.cs.php │ ├── ap.da.php │ ├── ap.de.php │ ├── ap.el.php │ ├── ap.en.php │ ├── ap.es.php │ ├── ap.et.php │ ├── ap.fa.php │ ├── ap.fi.php │ ├── ap.fr.php │ ├── ap.hi.php │ ├── ap.hu.php │ ├── ap.id.php │ ├── ap.it.php │ ├── ap.ja.php │ ├── ap.ko.php │ ├── ap.nl.php │ ├── ap.no.php │ ├── ap.pl.php │ ├── ap.pt-br.php │ ├── ap.pt.php │ ├── ap.ro.php │ ├── ap.ru.php │ ├── ap.sv.php │ ├── ap.ta.php │ ├── ap.uk.php │ ├── ap.zh-tw.php │ └── ap.zh.php ├── module │ ├── config_appearance.php │ ├── config_basic.php │ ├── config_email.php │ ├── config_filter.php │ ├── config_formatter.php │ ├── config_notifications.php │ ├── config_pages.php │ ├── config_permissions.php │ ├── config_security.php │ ├── config_syndication.php │ ├── config_system.php │ ├── config_upload.php │ ├── content_deleted.php │ ├── content_menu.php │ ├── db_backup.php │ ├── db_repair.php │ ├── db_restore.php │ ├── main.php │ ├── maint_inconsistencies.php │ ├── maint_resync.php │ ├── massemail.php │ ├── messages.php │ ├── system_info.php │ ├── system_log.php │ ├── system_statistics.php │ ├── tool_badbehaviour.php │ ├── user_approve.php │ ├── user_groups.php │ └── user_users.php └── style │ ├── backend.css │ └── wiki.css ├── class ├── dbal.php ├── dbinterface.php ├── dbmysqli.php ├── dbpdo.php ├── diag.php ├── email.php ├── feed.php ├── final.php ├── http.php ├── init.php ├── installer.php ├── session.php ├── sessiondbalstore.php ├── sessionfilestore.php ├── settings.php ├── templatest.php ├── templatestescaper.php ├── templatestfilters.php ├── templatestsetter.php ├── templatestuser.php ├── urirouter.php ├── ut.php └── wacko.php ├── config ├── .htaccess ├── antispam.conf ├── autoload.conf ├── bb_settings-sample.conf ├── bb_whitelist-sample.conf ├── config.php ├── config_defaults.php ├── constants.php ├── csp.conf ├── csp_custom.conf ├── interwiki.conf ├── lock ├── lock_ap ├── mime.types ├── permissions_policy.conf └── router.conf ├── doc ├── INSTALL ├── LICENSE ├── README └── UPGRADE ├── file ├── backup │ └── .htaccess ├── global │ └── wacko_logo.png ├── perpage │ └── .htaccess ├── thumb │ └── .htaccess └── thumb_local │ └── .htaccess ├── formatter ├── class │ ├── delphihightlighter.php │ ├── javahighlighter.php │ ├── paragrafica.php │ ├── post_wacko.php │ ├── pre_wacko.php │ ├── typografica.php │ └── wackoformatter.php ├── cleanwacko.php ├── highlight │ ├── chat.php │ ├── cl.php │ ├── code.php │ ├── comment.php │ ├── css.php │ ├── details.php │ ├── email.php │ ├── hl.php │ ├── html.php │ ├── info.php │ ├── ini.php │ ├── java.php │ ├── noautolinks.php │ ├── noinclude.php │ ├── notypo.php │ ├── pascal.php │ ├── php.php │ ├── sql.php │ ├── template │ │ ├── chat.tpl │ │ ├── cl.tpl │ │ ├── code.tpl │ │ ├── css.tpl │ │ ├── details.tpl │ │ ├── email.tpl │ │ ├── hl.tpl │ │ ├── html.tpl │ │ ├── info.tpl │ │ ├── ini.tpl │ │ ├── java.tpl │ │ ├── pascal.tpl │ │ ├── php.tpl │ │ ├── sql.tpl │ │ ├── wrapper_box.tpl │ │ ├── wrapper_page.tpl │ │ ├── wrapper_shade.tpl │ │ └── wrapper_text.tpl │ ├── typografica.php │ ├── wacko.php │ ├── wrapper_box.php │ ├── wrapper_page.php │ ├── wrapper_shade.php │ └── wrapper_text.php ├── html2mail.php ├── latex.php ├── paragrafica.php ├── post_wacko.php ├── pre_wacko.php ├── safehtml.php ├── source.php ├── typografica.php ├── wacko.php ├── wiki.php └── wordprocessor.php ├── handler └── page │ ├── _autocomplete.php │ ├── _comments.php │ ├── _files.php │ ├── addcomment.php │ ├── attachments.php │ ├── categories.php │ ├── claim.php │ ├── clone.php │ ├── diff.php │ ├── edit.php │ ├── export.xml.php │ ├── file.php │ ├── filemeta.php │ ├── latex.php │ ├── moderate.php │ ├── new.php │ ├── permissions.php │ ├── print.php │ ├── properties.php │ ├── purge.php │ ├── referrers.php │ ├── referrers_sites.php │ ├── remove.php │ ├── rename.php │ ├── restore.php │ ├── review.php │ ├── revisions.php │ ├── revisions.xml.php │ ├── show.php │ ├── source.php │ ├── template │ ├── _comments.tpl │ ├── _files.tpl │ ├── attachments.tpl │ ├── categories.tpl │ ├── clone.tpl │ ├── diff.tpl │ ├── edit.tpl │ ├── export.xml.tpl │ ├── filemeta.tpl │ ├── moderate.tpl │ ├── new.tpl │ ├── permissions.tpl │ ├── print.tpl │ ├── properties.tpl │ ├── purge.tpl │ ├── referrers.tpl │ ├── referrers_sites.tpl │ ├── remove.tpl │ ├── rename.tpl │ ├── revisions.tpl │ ├── revisions.xml.tpl │ ├── show.tpl │ ├── source.tpl │ ├── upload.tpl │ ├── watchers.tpl │ └── wordprocessor.tpl │ ├── upload.php │ ├── watch.php │ ├── watchers.php │ └── wordprocessor.php ├── image ├── README.txt ├── cc-by.svg ├── cc-nc.svg ├── cc-nd.svg ├── cc-pd.svg ├── cc-remix.svg ├── cc-sa.svg ├── cc-share.svg ├── cc-zero.svg ├── cc.svg ├── comment.svg ├── cross.svg ├── important.svg ├── info.svg ├── spacer.png ├── tick.svg ├── upload403.svg ├── upload404.svg ├── user-approve.svg ├── user-block.svg ├── wacko_logo.png ├── warning.svg └── wikiedit │ ├── dark │ ├── about.svg │ ├── action.svg │ ├── bold.svg │ ├── center.svg │ ├── code.svg │ ├── edit-redo.svg │ ├── edit-undo.svg │ ├── footnote.svg │ ├── h1.svg │ ├── h2.svg │ ├── h3.svg │ ├── h4.svg │ ├── h5.svg │ ├── h6.svg │ ├── help.svg │ ├── highlight.svg │ ├── hr.svg │ ├── indent.svg │ ├── italic.svg │ ├── justify.svg │ ├── left.svg │ ├── link.svg │ ├── ol.svg │ ├── outdent.svg │ ├── quote.svg │ ├── right.svg │ ├── signature.svg │ ├── small.svg │ ├── source.svg │ ├── strike.svg │ ├── subscript.svg │ ├── superscript.svg │ ├── table.svg │ ├── textcolor.svg │ ├── ul.svg │ └── underline.svg │ ├── light │ ├── about.svg │ ├── action.svg │ ├── bold.svg │ ├── center.svg │ ├── code.svg │ ├── edit-redo.svg │ ├── edit-undo.svg │ ├── footnote.svg │ ├── h1.svg │ ├── h2.svg │ ├── h3.svg │ ├── h4.svg │ ├── h5.svg │ ├── h6.svg │ ├── help.svg │ ├── highlight.svg │ ├── hr.svg │ ├── indent.svg │ ├── italic.svg │ ├── justify.svg │ ├── left.svg │ ├── link.svg │ ├── ol.svg │ ├── outdent.svg │ ├── quote.svg │ ├── right.svg │ ├── signature.svg │ ├── small.svg │ ├── source.svg │ ├── strike.svg │ ├── subscript.svg │ ├── superscript.svg │ ├── table.svg │ ├── textcolor.svg │ ├── ul.svg │ └── underline.svg │ └── spacer.png ├── index.php ├── js ├── autocomplete.js ├── clipboard.min.js ├── default.js ├── lang │ ├── wikiedit.ar.js │ ├── wikiedit.bg.js │ ├── wikiedit.cs.js │ ├── wikiedit.da.js │ ├── wikiedit.de.js │ ├── wikiedit.el.js │ ├── wikiedit.en.js │ ├── wikiedit.es.js │ ├── wikiedit.et.js │ ├── wikiedit.fa.js │ ├── wikiedit.fi.js │ ├── wikiedit.fr.js │ ├── wikiedit.hi.js │ ├── wikiedit.hu.js │ ├── wikiedit.id.js │ ├── wikiedit.it.js │ ├── wikiedit.ja.js │ ├── wikiedit.ko.js │ ├── wikiedit.nl.js │ ├── wikiedit.no.js │ ├── wikiedit.pl.js │ ├── wikiedit.pt-br.js │ ├── wikiedit.pt.js │ ├── wikiedit.ro.js │ ├── wikiedit.ru.js │ ├── wikiedit.sv.js │ ├── wikiedit.ta.js │ ├── wikiedit.uk.js │ ├── wikiedit.zh-tw.js │ └── wikiedit.zh.js ├── protoedit.js └── wikiedit.js ├── lang ├── wacko.all.php ├── wacko.ar.php ├── wacko.bg.php ├── wacko.cs.php ├── wacko.da.php ├── wacko.de.php ├── wacko.el.php ├── wacko.en.php ├── wacko.es.php ├── wacko.et.php ├── wacko.fa.php ├── wacko.fi.php ├── wacko.fr.php ├── wacko.hi.php ├── wacko.hu.php ├── wacko.id.php ├── wacko.it.php ├── wacko.ja.php ├── wacko.ko.php ├── wacko.nl.php ├── wacko.no.php ├── wacko.pl.php ├── wacko.pt-br.php ├── wacko.pt.php ├── wacko.ro.php ├── wacko.ru.php ├── wacko.sv.php ├── wacko.ta.php ├── wacko.uk.php ├── wacko.zh-tw.php └── wacko.zh.php ├── lib ├── HTMLSax3 │ ├── Decorators │ │ ├── CaseFolding.php │ │ ├── Entities_Parsed.php │ │ ├── Entities_Unparsed.php │ │ ├── Escape_Stripper.php │ │ ├── Linefeed.php │ │ ├── Tab.php │ │ └── Trim.php │ ├── HTMLSax3.php │ ├── LICENSE │ ├── NullHandler.php │ ├── StateParser.php │ └── States │ │ ├── ClosingTagState.php │ │ ├── EscapeState.php │ │ ├── JaspState.php │ │ ├── OpeningTagState.php │ │ ├── PiState.php │ │ ├── StartingState.php │ │ └── TagState.php ├── README.md ├── SimplePie │ ├── LICENSE.txt │ ├── autoloader.php │ └── src │ │ ├── Author.php │ │ ├── Cache.php │ │ ├── Cache │ │ ├── Base.php │ │ ├── BaseDataCache.php │ │ ├── CallableNameFilter.php │ │ ├── DB.php │ │ ├── DataCache.php │ │ ├── File.php │ │ ├── Memcache.php │ │ ├── Memcached.php │ │ ├── MySQL.php │ │ ├── NameFilter.php │ │ ├── Psr16.php │ │ └── Redis.php │ │ ├── Caption.php │ │ ├── Category.php │ │ ├── Content │ │ └── Type │ │ │ └── Sniffer.php │ │ ├── Copyright.php │ │ ├── Credit.php │ │ ├── Enclosure.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── Gzdecode.php │ │ ├── HTTP │ │ └── Parser.php │ │ ├── IRI.php │ │ ├── Item.php │ │ ├── Locator.php │ │ ├── Misc.php │ │ ├── Net │ │ └── IPv6.php │ │ ├── Parse │ │ └── Date.php │ │ ├── Parser.php │ │ ├── Rating.php │ │ ├── Registry.php │ │ ├── RegistryAware.php │ │ ├── Restriction.php │ │ ├── Sanitize.php │ │ ├── SimplePie.php │ │ ├── Source.php │ │ └── XML │ │ └── Declaration │ │ └── Parser.php ├── bad_behaviour │ ├── LICENSE │ ├── bad-behaviour-wackowiki.php │ └── src │ │ ├── banned.inc.php │ │ ├── blackhole.inc.php │ │ ├── blacklist.inc.php │ │ ├── browser.inc.php │ │ ├── cloudflare.inc.php │ │ ├── common_tests.inc.php │ │ ├── core.inc.php │ │ ├── functions.inc.php │ │ ├── index.html │ │ ├── movabletype.inc.php │ │ ├── post.inc.php │ │ ├── responses.inc.php │ │ ├── roundtripdns.inc.php │ │ ├── searchengine.inc.php │ │ └── whitelist.inc.php ├── captcha │ ├── .ht_freecap_font1.gdf │ ├── .ht_freecap_font1_big_e.gdf │ ├── .ht_freecap_font2.gdf │ ├── .ht_freecap_font2_big_e.gdf │ ├── .ht_freecap_font3.gdf │ ├── .ht_freecap_font3_big_e.gdf │ ├── .ht_freecap_font4.gdf │ ├── .ht_freecap_font4_big_e.gdf │ ├── .ht_freecap_font5.gdf │ ├── .ht_freecap_font5_big_e.gdf │ ├── .ht_freecap_words │ ├── LICENSE │ └── freecap.php ├── diff │ ├── Diff.php │ ├── DiffFormatter.php │ ├── Engine │ │ ├── DiffEngine.php │ │ ├── DiffOp.php │ │ ├── DiffOpAdd.php │ │ ├── DiffOpChange.php │ │ ├── DiffOpCopy.php │ │ └── DiffOpDelete.php │ ├── LICENSE │ └── Side.php ├── hashids │ ├── Hashids.php │ ├── HashidsInterface.php │ ├── LICENSE │ └── Math │ │ ├── BCMath.php │ │ ├── Gmp.php │ │ └── MathInterface.php ├── mb_extends │ └── mb_extends.php ├── php-diff │ ├── Diff.php │ ├── Diff │ │ ├── ConstantsInterface.php │ │ ├── DiffUtils.php │ │ ├── Renderer │ │ │ ├── Html │ │ │ │ ├── Merged.php │ │ │ │ ├── SideBySide.php │ │ │ │ └── Unified.php │ │ │ ├── MainRenderer.php │ │ │ ├── MainRendererAbstract.php │ │ │ ├── SubRendererInterface.php │ │ │ └── Text │ │ │ │ ├── Context.php │ │ │ │ └── Unified.php │ │ ├── SequenceMatcher.php │ │ └── Similarity.php │ └── LICENSE ├── phpmailer │ ├── LICENSE │ ├── index.html │ ├── language │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ ├── readme_wacko.txt │ └── src │ │ ├── Exception.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php ├── phpthumb │ ├── GD.php │ ├── LICENSE │ ├── PHPThumb.php │ ├── PluginInterface.php │ ├── Plugins │ │ └── Reflection.php │ └── README.md ├── safehtml │ ├── LICENSE │ ├── readme.txt │ └── safehtml.php ├── svg-sanitizer │ ├── LICENSE │ └── src │ │ ├── ElementReference │ │ ├── Resolver.php │ │ ├── Subject.php │ │ └── Usage.php │ │ ├── Exceptions │ │ └── NestingException.php │ │ ├── Helper.php │ │ ├── Sanitizer.php │ │ └── data │ │ ├── AllowedAttributes.php │ │ ├── AllowedTags.php │ │ ├── AttributeInterface.php │ │ ├── TagInterface.php │ │ └── XPath.php └── text-hl │ ├── Highlighter.php │ ├── Highlighter │ ├── ABAP.php │ ├── AVRC.php │ ├── CPP.php │ ├── CSS.php │ ├── DIFF.php │ ├── DTD.php │ ├── Generator.php │ ├── HTML.php │ ├── JAVA.php │ ├── JAVASCRIPT.php │ ├── MYSQL.php │ ├── PERL.php │ ├── PHP.php │ ├── PYTHON.php │ ├── RUBY.php │ ├── Renderer.php │ ├── Renderer │ │ ├── Array.php │ │ ├── BB.php │ │ ├── Console.php │ │ ├── Html.php │ │ ├── HtmlTags.php │ │ ├── JSON.php │ │ └── XML.php │ ├── SH.php │ ├── SQL.php │ ├── VBSCRIPT.php │ └── XML.php │ ├── LICENSE │ ├── README │ └── readme.txt ├── robots.txt ├── setup ├── _insert_config.php ├── _insert_default.php ├── _insert_queries.php ├── common.php ├── config-database.php ├── config-site.php ├── css │ └── installer.css ├── database_mysql.php ├── database_mysql_updates.php ├── footer.php ├── header.php ├── image │ └── favicon.ico ├── insert_pages.php ├── install-database.php ├── lang.php ├── lang │ ├── inserts.ar.php │ ├── inserts.bg.php │ ├── inserts.cs.php │ ├── inserts.da.php │ ├── inserts.de.php │ ├── inserts.el.php │ ├── inserts.en.php │ ├── inserts.es.php │ ├── inserts.et.php │ ├── inserts.fa.php │ ├── inserts.fi.php │ ├── inserts.fr.php │ ├── inserts.hi.php │ ├── inserts.hu.php │ ├── inserts.id.php │ ├── inserts.it.php │ ├── inserts.ja.php │ ├── inserts.ko.php │ ├── inserts.nl.php │ ├── inserts.no.php │ ├── inserts.pl.php │ ├── inserts.pt-br.php │ ├── inserts.pt.php │ ├── inserts.ro.php │ ├── inserts.ru.php │ ├── inserts.sv.php │ ├── inserts.ta.php │ ├── inserts.uk.php │ ├── inserts.zh-tw.php │ ├── inserts.zh.php │ ├── installer.all.php │ ├── installer.ar.php │ ├── installer.bg.php │ ├── installer.cs.php │ ├── installer.da.php │ ├── installer.de.php │ ├── installer.el.php │ ├── installer.en.php │ ├── installer.es.php │ ├── installer.et.php │ ├── installer.fa.php │ ├── installer.fi.php │ ├── installer.fr.php │ ├── installer.hi.php │ ├── installer.hu.php │ ├── installer.id.php │ ├── installer.it.php │ ├── installer.ja.php │ ├── installer.ko.php │ ├── installer.nl.php │ ├── installer.no.php │ ├── installer.pl.php │ ├── installer.pt-br.php │ ├── installer.pt.php │ ├── installer.ro.php │ ├── installer.ru.php │ ├── installer.sv.php │ ├── installer.ta.php │ ├── installer.uk.php │ ├── installer.zh-tw.php │ └── installer.zh.php ├── version-check.php └── write-config.php ├── theme ├── _common │ ├── X11colors.css │ ├── _header.php │ ├── _header.tpl │ └── sitemap.xsl └── default │ ├── README.md │ ├── appearance │ ├── footer.php │ ├── footerprint.php │ ├── footerwordprocessor.php │ ├── header.php │ ├── headerprint.php │ ├── headerwordprocessor.php │ └── template │ │ ├── footer.tpl │ │ ├── footerprint.tpl │ │ ├── header.tpl │ │ ├── headerprint.tpl │ │ └── headerwordprocessor.tpl │ ├── css │ ├── default.css │ ├── diff.css │ ├── print.css │ ├── wacko.css │ └── wordprocessor.css │ ├── icon │ ├── dark │ │ ├── archive.svg │ │ ├── attachment.svg │ │ ├── audio.svg │ │ ├── bookmark-remove.svg │ │ ├── bookmark.svg │ │ ├── comment.svg │ │ ├── commit.svg │ │ ├── copy.svg │ │ ├── cross.svg │ │ ├── delete.svg │ │ ├── dialog-info.svg │ │ ├── document.svg │ │ ├── download.svg │ │ ├── drawing.svg │ │ ├── edit.svg │ │ ├── epub.svg │ │ ├── feed.svg │ │ ├── file.svg │ │ ├── filter-off.svg │ │ ├── filter.svg │ │ ├── group.svg │ │ ├── hierarchy.svg │ │ ├── image.svg │ │ ├── important.svg │ │ ├── info.svg │ │ ├── jabber.svg │ │ ├── languages.svg │ │ ├── link.svg │ │ ├── locked.svg │ │ ├── mail.svg │ │ ├── menu.svg │ │ ├── notifications-off.svg │ │ ├── notifications-on.svg │ │ ├── overflow-menu.svg │ │ ├── page-add.svg │ │ ├── patch.svg │ │ ├── pdf.svg │ │ ├── permission.svg │ │ ├── presentation.svg │ │ ├── print.svg │ │ ├── properties.svg │ │ ├── purge.svg │ │ ├── reload.svg │ │ ├── remove.svg │ │ ├── report-bug.svg │ │ ├── repository.svg │ │ ├── review1.svg │ │ ├── review2.svg │ │ ├── revisions.svg │ │ ├── search.svg │ │ ├── section.svg │ │ ├── show.svg │ │ ├── spreadsheet.svg │ │ ├── tag.svg │ │ ├── text.svg │ │ ├── tick.svg │ │ ├── unlocked.svg │ │ ├── upload.svg │ │ ├── user.svg │ │ ├── video.svg │ │ ├── warning.svg │ │ ├── watch-off.svg │ │ ├── watch-on.svg │ │ ├── web.svg │ │ └── xml.svg │ ├── favicon.ico │ ├── light │ │ ├── archive.svg │ │ ├── attachment.svg │ │ ├── audio.svg │ │ ├── bookmark-remove.svg │ │ ├── bookmark.svg │ │ ├── comment.svg │ │ ├── commit.svg │ │ ├── copy.svg │ │ ├── cross.svg │ │ ├── delete.svg │ │ ├── dialog-info.svg │ │ ├── document.svg │ │ ├── download.svg │ │ ├── drawing.svg │ │ ├── edit.svg │ │ ├── epub.svg │ │ ├── feed.svg │ │ ├── file.svg │ │ ├── filter-off.svg │ │ ├── filter.svg │ │ ├── group.svg │ │ ├── hierarchy.svg │ │ ├── image.svg │ │ ├── important.svg │ │ ├── info.svg │ │ ├── jabber.svg │ │ ├── languages.svg │ │ ├── link.svg │ │ ├── locked.svg │ │ ├── mail.svg │ │ ├── menu.svg │ │ ├── notifications-off.svg │ │ ├── notifications-on.svg │ │ ├── overflow-menu.svg │ │ ├── page-add.svg │ │ ├── patch.svg │ │ ├── pdf.svg │ │ ├── permission.svg │ │ ├── presentation.svg │ │ ├── print.svg │ │ ├── properties.svg │ │ ├── purge.svg │ │ ├── reload.svg │ │ ├── remove.svg │ │ ├── report-bug.svg │ │ ├── repository.svg │ │ ├── review1.svg │ │ ├── review2.svg │ │ ├── revisions.svg │ │ ├── search.svg │ │ ├── section.svg │ │ ├── show.svg │ │ ├── spreadsheet.svg │ │ ├── tag.svg │ │ ├── text.svg │ │ ├── tick.svg │ │ ├── unlocked.svg │ │ ├── upload.svg │ │ ├── user.svg │ │ ├── video.svg │ │ ├── warning.svg │ │ ├── watch-off.svg │ │ ├── watch-on.svg │ │ ├── web.svg │ │ └── xml.svg │ └── spacer.png │ └── lang │ ├── wacko.bg.php │ ├── wacko.da.php │ ├── wacko.de.php │ ├── wacko.en.php │ ├── wacko.es.php │ ├── wacko.fr.php │ ├── wacko.it.php │ ├── wacko.nl.php │ └── wacko.ru.php └── xml └── .htaccess /community/action/hljs.php: -------------------------------------------------------------------------------- 1 | db->base_path . 'js/highlight.js/' . $hljs_css; 13 | $hljs_script = $this->db->base_path . 'js/highlight.js/highlight.min.js'; 14 | 15 | // CDN (see Highlight.js README.md) 16 | #$hljs_styles = 'https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.7.0/build/styles/' . $hljs_css; 17 | #$hljs_script = 'https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.7.0/build/es/highlight.min.js'; 18 | 19 | // highlight.js 20 | $this->add_html('header', ''); 21 | $this->add_html('footer', ''); 22 | $this->add_html('footer', ''); -------------------------------------------------------------------------------- /community/action/template/colorbox.tpl: -------------------------------------------------------------------------------- 1 | [ === main === ] 2 | [ ' help ' ] 3 |
[ ' style ' ]: | 11 |[ ' value ' ] |
12 | 13 | |
---|
[ ' title | e ' ] | 13 | =] 14 | [= t _ = 15 |[ ' cell ' ] | 16 | =] 17 | =] 18 |
---|
[ ' text | pre ' ]
7 |
8 | 7 | [ ' _t: ReferringPages ' ] 8 |
9 | =] 10 | [= nobacklinks _ = 11 | [ ' _t: NoReferringPages ' ] 12 | =] 13 |[ ' day ' ] | 18 | =] 19 |
---|
[ ' content ' ] | 25 | =] 26 | [ ' last colspans ' ] 27 |
7 | [ ' _t: Categories ' ]: 8 |
9 | =] 10 |[ ' _t: EmbedNoURL ' ]
5 | =] 6 | [= embed _ = 7 |