├── assets ├── ace │ └── 1.0.0 │ │ └── mode-text.js ├── contao │ └── images │ │ ├── pdf.gif │ │ ├── gplus.gif │ │ ├── iconJS.gif │ │ ├── info.gif │ │ ├── print.gif │ │ ├── facebook.gif │ │ ├── iconBMP.gif │ │ ├── iconCSS.gif │ │ ├── iconCTO.gif │ │ ├── iconGIF.gif │ │ ├── iconHTML.gif │ │ ├── iconJPG.gif │ │ ├── iconJSP.gif │ │ ├── iconPDF.gif │ │ ├── iconPHP.gif │ │ ├── iconRAR.gif │ │ ├── iconSWF.gif │ │ ├── iconTIF.gif │ │ ├── twitter.gif │ │ ├── iconAUDIO.gif │ │ ├── iconOFFICE.gif │ │ ├── iconPLAIN.gif │ │ └── iconVIDEO.gif ├── fonts │ └── ArchitectsDaughter.woff ├── mootools │ ├── chosen │ │ └── chosen-sprite.png │ ├── datepicker │ │ └── 2.0.0 │ │ │ ├── icon.gif │ │ │ ├── frame.png │ │ │ └── buttons.png │ ├── stylect │ │ └── images │ │ │ └── select.gif │ ├── tablesort │ │ └── images │ │ │ ├── asc.gif │ │ │ ├── desc.gif │ │ │ └── default.gif │ ├── mediabox │ │ └── 1.4.6 │ │ │ ├── images │ │ │ ├── 50.gif │ │ │ ├── 80.png │ │ │ ├── loading.gif │ │ │ ├── loading2.gif │ │ │ └── loading3.gif │ │ │ └── NonverBlaster.swf │ ├── colorpicker │ │ └── 1.3 │ │ │ └── images │ │ │ ├── blank.gif │ │ │ ├── moor_arrows.gif │ │ │ ├── moor_boverlay.png │ │ │ ├── moor_cursor.gif │ │ │ ├── moor_slider.png │ │ │ └── moor_woverlay.png │ ├── slimbox │ │ └── 1.71 │ │ │ └── images │ │ │ ├── loading.gif │ │ │ ├── closelabel.gif │ │ │ ├── nextlabel.gif │ │ │ └── prevlabel.gif │ └── simplemodal │ │ └── 1.2 │ │ └── images │ │ └── loader.gif ├── tinymce │ ├── plugins │ │ ├── spellchecker │ │ │ ├── rpc.php │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── img │ │ │ │ └── wline.gif │ │ │ ├── editor_plugin.js │ │ │ ├── classes │ │ │ │ ├── PSpell.php │ │ │ │ ├── utils │ │ │ │ │ ├── JSON.php │ │ │ │ │ └── Logger.php │ │ │ │ ├── EnchantSpell.php │ │ │ │ ├── GoogleSpell.php │ │ │ │ ├── PSpellShell.php │ │ │ │ └── SpellChecker.php │ │ │ ├── editor_plugin_src.js │ │ │ └── includes │ │ │ │ └── general.php │ │ ├── advimage │ │ │ └── img │ │ │ │ └── sample.gif │ │ ├── typolinks │ │ │ ├── img │ │ │ │ ├── image.gif │ │ │ │ └── link.gif │ │ │ └── langs │ │ │ │ ├── en.js │ │ │ │ ├── sl.js │ │ │ │ ├── pl.js │ │ │ │ ├── da.js │ │ │ │ ├── fr.js │ │ │ │ ├── nl.js │ │ │ │ ├── es.js │ │ │ │ ├── de.js │ │ │ │ ├── it.js │ │ │ │ ├── sv.js │ │ │ │ ├── uk.js │ │ │ │ ├── ru.js │ │ │ │ ├── lv.js │ │ │ │ └── ja.js │ │ ├── emotions │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ ├── smiley-yell.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ └── smiley-foot-in-mouth.gif │ │ │ └── langs │ │ │ │ ├── id_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ └── en_dlg.js │ │ ├── inlinepopups │ │ │ └── skins │ │ │ │ └── clearlooks2 │ │ │ │ └── img │ │ │ │ ├── alert.gif │ │ │ │ ├── button.gif │ │ │ │ ├── buttons.gif │ │ │ │ ├── confirm.gif │ │ │ │ ├── corners.gif │ │ │ │ ├── vertical.gif │ │ │ │ └── horizontal.gif │ │ ├── paste │ │ │ └── langs │ │ │ │ ├── id_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ └── vi_dlg.js │ │ ├── searchreplace │ │ │ ├── css │ │ │ │ └── searchreplace.css │ │ │ └── langs │ │ │ │ └── id_dlg.js │ │ ├── table │ │ │ └── css │ │ │ │ ├── table.css │ │ │ │ ├── cell.css │ │ │ │ └── row.css │ │ ├── xhtmlxtras │ │ │ └── css │ │ │ │ └── attributes.css │ │ └── template │ │ │ ├── css │ │ │ └── template.css │ │ │ └── blank.htm │ └── themes │ │ ├── simple │ │ ├── img │ │ │ └── icons.gif │ │ ├── skins │ │ │ └── o2k7 │ │ │ │ └── img │ │ │ │ └── button_bg.png │ │ └── langs │ │ │ └── en.js │ │ └── advanced │ │ ├── img │ │ ├── flash.gif │ │ ├── icons.gif │ │ ├── iframe.gif │ │ ├── trans.gif │ │ ├── video.gif │ │ ├── pagebreak.gif │ │ ├── quicktime.gif │ │ ├── realmedia.gif │ │ ├── shockwave.gif │ │ ├── colorpicker.jpg │ │ └── windowsmedia.gif │ │ └── skins │ │ ├── default │ │ └── img │ │ │ ├── items.gif │ │ │ ├── tabs.gif │ │ │ ├── buttons.png │ │ │ ├── progress.gif │ │ │ ├── menu_arrow.gif │ │ │ └── menu_check.gif │ │ └── o2k7 │ │ └── img │ │ ├── button_bg.png │ │ ├── button_bg_black.png │ │ └── button_bg_silver.png ├── jquery │ ├── tablesorter │ │ └── 2.0.5 │ │ │ └── images │ │ │ ├── asc.gif │ │ │ ├── desc.gif │ │ │ └── default.gif │ ├── colorbox │ │ └── 1.4.11 │ │ │ └── images │ │ │ ├── loading.gif │ │ │ └── controls.png │ └── mediaelement │ │ └── 2.11.3 │ │ ├── images │ │ ├── bigplay.png │ │ ├── controls.png │ │ ├── loading.gif │ │ ├── background.png │ │ ├── controls-ted.png │ │ ├── controls-wmp.png │ │ └── controls-wmp-bg.png │ │ └── legacy │ │ ├── flashmediaelement.swf │ │ └── silverlightmediaelement.xap ├── css │ ├── index.html │ ├── print.css │ └── mobile.css ├── js │ └── index.html ├── images │ ├── 0 │ │ └── index.html │ ├── 1 │ │ └── index.html │ ├── 2 │ │ └── index.html │ ├── 3 │ │ └── index.html │ ├── 4 │ │ └── index.html │ ├── 5 │ │ └── index.html │ ├── 6 │ │ └── index.html │ ├── 7 │ │ └── index.html │ ├── 8 │ │ └── index.html │ ├── 9 │ │ └── index.html │ ├── a │ │ └── index.html │ ├── b │ │ └── index.html │ ├── c │ │ └── index.html │ ├── d │ │ └── index.html │ ├── e │ │ └── index.html │ └── f │ │ └── index.html └── highlighter │ └── 3.0.83 │ └── shBrushPlain.js ├── .gitattributes ├── system ├── modules │ ├── core │ │ ├── vendor │ │ │ ├── swiftmailer │ │ │ │ ├── VERSION │ │ │ │ └── dependency_maps │ │ │ │ │ └── message_deps.php │ │ │ └── tcpdf │ │ │ │ ├── tcpdf.php │ │ │ │ ├── fonts │ │ │ │ ├── freeserif.z │ │ │ │ ├── freeserifb.z │ │ │ │ ├── freeserifi.z │ │ │ │ ├── freeserifbi.z │ │ │ │ ├── freeserif.ctg.z │ │ │ │ ├── freeserifb.ctg.z │ │ │ │ ├── freeserifbi.ctg.z │ │ │ │ └── freeserifi.ctg.z │ │ │ │ └── images │ │ │ │ └── _blank.png │ │ ├── templates │ │ │ ├── elements │ │ │ │ ├── ce_html.html5 │ │ │ │ ├── ce_html.xhtml │ │ │ │ ├── ce_accordion_stop.xhtml │ │ │ │ ├── ce_accordion_stop.html5 │ │ │ │ ├── ce_headline.html5 │ │ │ │ ├── ce_headline.xhtml │ │ │ │ ├── ce_slider_stop.html5 │ │ │ │ ├── ce_slider_stop.xhtml │ │ │ │ ├── ce_toplink.html5 │ │ │ │ └── ce_toplink.xhtml │ │ │ ├── modules │ │ │ │ ├── mod_html.html5 │ │ │ │ ├── mod_html.xhtml │ │ │ │ ├── mod_article_plain.html5 │ │ │ │ └── mod_article_plain.xhtml │ │ │ ├── forms │ │ │ │ ├── form_html.html5 │ │ │ │ ├── form_html.xhtml │ │ │ │ ├── form_hidden.html5 │ │ │ │ ├── form_hidden.xhtml │ │ │ │ ├── form_headline.html5 │ │ │ │ ├── form_headline.xhtml │ │ │ │ ├── form_explanation.html5 │ │ │ │ ├── form_explanation.xhtml │ │ │ │ ├── form_radio.html5 │ │ │ │ ├── form_checkbox.html5 │ │ │ │ ├── form_checkbox.xhtml │ │ │ │ ├── form_radio.xhtml │ │ │ │ ├── form_message.html5 │ │ │ │ ├── form_message.xhtml │ │ │ │ ├── form_widget.html5 │ │ │ │ ├── form_submit.html5 │ │ │ │ ├── form_submit.xhtml │ │ │ │ └── form_widget.xhtml │ │ │ ├── backend │ │ │ │ ├── be_widget_chk.html5 │ │ │ │ ├── be_widget_rdo.html5 │ │ │ │ ├── be_widget.html5 │ │ │ │ ├── be_maintenance.html5 │ │ │ │ ├── be_widget_pw.html5 │ │ │ │ └── be_navigation.html5 │ │ │ └── mail │ │ │ │ ├── mail_default.html5 │ │ │ │ └── mail_default.xhtml │ │ └── config │ │ │ └── autoload.ini │ ├── faq │ │ ├── assets │ │ │ ├── icon.gif │ │ │ └── .htaccess │ │ └── languages │ │ │ ├── en │ │ │ ├── default.xlf │ │ │ └── tl_user_group.xlf │ │ │ ├── ja │ │ │ ├── default.xlf │ │ │ └── tl_user_group.xlf │ │ │ ├── zh │ │ │ ├── default.xlf │ │ │ └── tl_user_group.xlf │ │ │ ├── de │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── fa │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── sl │ │ │ ├── default.xlf │ │ │ └── tl_user_group.xlf │ │ │ ├── uk │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── da │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── it │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── lv │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── nl │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── pl │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── rm │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── ru │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── sv │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── cs │ │ │ ├── default.xlf │ │ │ └── tl_user_group.xlf │ │ │ ├── fr │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── hu │ │ │ ├── tl_user_group.xlf │ │ │ └── default.xlf │ │ │ ├── my │ │ │ ├── default.xlf │ │ │ └── tl_user_group.xlf │ │ │ └── sk │ │ │ ├── default.xlf │ │ │ └── tl_user_group.xlf │ ├── news │ │ ├── assets │ │ │ ├── pending.gif │ │ │ ├── approved.gif │ │ │ ├── .htaccess │ │ │ └── style.css │ │ ├── templates │ │ │ └── news │ │ │ │ ├── news_simple.xhtml │ │ │ │ └── news_simple.html5 │ │ └── languages │ │ │ ├── en │ │ │ └── tl_user_group.xlf │ │ │ ├── ja │ │ │ └── tl_user_group.xlf │ │ │ ├── zh │ │ │ └── tl_user_group.xlf │ │ │ ├── da │ │ │ └── tl_user_group.xlf │ │ │ ├── fa │ │ │ └── tl_user_group.xlf │ │ │ ├── cs │ │ │ └── tl_user_group.xlf │ │ │ ├── hu │ │ │ └── tl_user_group.xlf │ │ │ ├── it │ │ │ └── tl_user_group.xlf │ │ │ ├── lv │ │ │ └── tl_user_group.xlf │ │ │ ├── sk │ │ │ └── tl_user_group.xlf │ │ │ ├── de │ │ │ └── tl_user_group.xlf │ │ │ ├── my │ │ │ └── tl_user_group.xlf │ │ │ ├── nl │ │ │ └── tl_user_group.xlf │ │ │ ├── ru │ │ │ └── tl_user_group.xlf │ │ │ ├── sl │ │ │ └── tl_user_group.xlf │ │ │ ├── sv │ │ │ └── tl_user_group.xlf │ │ │ ├── uk │ │ │ └── tl_user_group.xlf │ │ │ ├── fr │ │ │ └── tl_user_group.xlf │ │ │ ├── rm │ │ │ └── tl_user_group.xlf │ │ │ └── pl │ │ │ └── tl_user_group.xlf │ ├── calendar │ │ ├── assets │ │ │ ├── icon.gif │ │ │ └── .htaccess │ │ └── languages │ │ │ ├── en │ │ │ └── tl_user_group.xlf │ │ │ ├── zh │ │ │ └── tl_user_group.xlf │ │ │ ├── ja │ │ │ └── tl_user_group.xlf │ │ │ ├── cs │ │ │ └── tl_user_group.xlf │ │ │ ├── de │ │ │ └── tl_user_group.xlf │ │ │ ├── fa │ │ │ └── tl_user_group.xlf │ │ │ ├── da │ │ │ └── tl_user_group.xlf │ │ │ ├── hu │ │ │ └── tl_user_group.xlf │ │ │ ├── it │ │ │ └── tl_user_group.xlf │ │ │ ├── lv │ │ │ └── tl_user_group.xlf │ │ │ ├── nl │ │ │ └── tl_user_group.xlf │ │ │ ├── ru │ │ │ └── tl_user_group.xlf │ │ │ ├── sk │ │ │ └── tl_user_group.xlf │ │ │ ├── sl │ │ │ └── tl_user_group.xlf │ │ │ ├── sv │ │ │ └── tl_user_group.xlf │ │ │ ├── fr │ │ │ └── tl_user_group.xlf │ │ │ ├── my │ │ │ └── tl_user_group.xlf │ │ │ ├── pl │ │ │ └── tl_user_group.xlf │ │ │ ├── rm │ │ │ └── tl_user_group.xlf │ │ │ └── uk │ │ │ └── tl_user_group.xlf │ ├── comments │ │ ├── assets │ │ │ ├── icon.gif │ │ │ ├── approved.gif │ │ │ ├── pending.gif │ │ │ ├── replied.gif │ │ │ ├── .htaccess │ │ │ └── style.css │ │ └── languages │ │ │ ├── en │ │ │ └── tl_module.xlf │ │ │ ├── ja │ │ │ └── tl_module.xlf │ │ │ ├── zh │ │ │ └── tl_module.xlf │ │ │ ├── fa │ │ │ └── tl_module.xlf │ │ │ ├── cs │ │ │ └── tl_module.xlf │ │ │ ├── da │ │ │ └── tl_module.xlf │ │ │ ├── de │ │ │ └── tl_module.xlf │ │ │ ├── hu │ │ │ └── tl_module.xlf │ │ │ ├── it │ │ │ └── tl_module.xlf │ │ │ ├── lv │ │ │ └── tl_module.xlf │ │ │ ├── my │ │ │ └── tl_module.xlf │ │ │ ├── nl │ │ │ └── tl_module.xlf │ │ │ ├── pl │ │ │ └── tl_module.xlf │ │ │ ├── ru │ │ │ └── tl_module.xlf │ │ │ ├── sk │ │ │ └── tl_module.xlf │ │ │ ├── sl │ │ │ └── tl_module.xlf │ │ │ ├── sv │ │ │ └── tl_module.xlf │ │ │ ├── uk │ │ │ └── tl_module.xlf │ │ │ ├── fr │ │ │ └── tl_module.xlf │ │ │ └── rm │ │ │ └── tl_module.xlf │ ├── devtools │ │ ├── assets │ │ │ ├── apply.gif │ │ │ ├── labels.gif │ │ │ ├── autoload.gif │ │ │ ├── extension.gif │ │ │ └── .htaccess │ │ └── templates │ │ │ └── dev_htaccess.html5 │ ├── newsletter │ │ ├── assets │ │ │ ├── icon.gif │ │ │ └── .htaccess │ │ └── languages │ │ │ ├── en │ │ │ └── tl_user_group.xlf │ │ │ ├── zh │ │ │ └── tl_user_group.xlf │ │ │ ├── ja │ │ │ └── tl_user_group.xlf │ │ │ ├── sk │ │ │ └── tl_user_group.xlf │ │ │ ├── de │ │ │ └── tl_user_group.xlf │ │ │ ├── fa │ │ │ └── tl_user_group.xlf │ │ │ ├── cs │ │ │ └── tl_user_group.xlf │ │ │ ├── hu │ │ │ └── tl_user_group.xlf │ │ │ ├── it │ │ │ └── tl_user_group.xlf │ │ │ ├── lv │ │ │ └── tl_user_group.xlf │ │ │ ├── my │ │ │ └── tl_user_group.xlf │ │ │ ├── nl │ │ │ └── tl_user_group.xlf │ │ │ ├── ru │ │ │ └── tl_user_group.xlf │ │ │ ├── sl │ │ │ └── tl_user_group.xlf │ │ │ ├── sv │ │ │ └── tl_user_group.xlf │ │ │ ├── da │ │ │ └── tl_user_group.xlf │ │ │ └── pl │ │ │ └── tl_user_group.xlf │ ├── repository │ │ └── themes │ │ │ ├── default │ │ │ └── images │ │ │ │ ├── back.gif │ │ │ │ ├── edit.gif │ │ │ │ ├── info.gif │ │ │ │ ├── ok16.png │ │ │ │ ├── rc16.png │ │ │ │ ├── back16.png │ │ │ │ ├── beta16.png │ │ │ │ ├── edit16.png │ │ │ │ ├── info16.png │ │ │ │ ├── alpha16.png │ │ │ │ ├── blank16.png │ │ │ │ ├── catalog16.png │ │ │ │ ├── dbcheck16.png │ │ │ │ ├── default.png │ │ │ │ ├── forum16.png │ │ │ │ ├── install16.png │ │ │ │ ├── manual16.png │ │ │ │ ├── reload16.gif │ │ │ │ ├── stable16.png │ │ │ │ ├── stop128.png │ │ │ │ ├── uninst16.png │ │ │ │ ├── uninstall.gif │ │ │ │ ├── square-gray-left.gif │ │ │ │ └── square-gray-right.gif │ │ │ └── .htaccess │ └── listing │ │ └── config │ │ └── config.php ├── bin │ └── yuicompressor-2.4.6.jar ├── themes │ ├── default │ │ └── images │ │ │ ├── 1cl.gif │ │ │ ├── 1rw.gif │ │ │ ├── 3cl.gif │ │ │ ├── 3rw.gif │ │ │ ├── all.gif │ │ │ ├── css.gif │ │ │ ├── cut.gif │ │ │ ├── db.gif │ │ │ ├── hbg.jpg │ │ │ ├── log.gif │ │ │ ├── new.gif │ │ │ ├── ok.gif │ │ │ ├── rss.gif │ │ │ ├── su.gif │ │ │ ├── up.gif │ │ │ ├── 2cll.gif │ │ │ ├── 2clr.gif │ │ │ ├── 2rwf.gif │ │ │ ├── 2rwh.gif │ │ │ ├── about.gif │ │ │ ├── above.gif │ │ │ ├── admin.gif │ │ │ ├── alias.gif │ │ │ ├── back.gif │ │ │ ├── below.gif │ │ │ ├── cache.gif │ │ │ ├── copy.gif │ │ │ ├── copy_.gif │ │ │ ├── cut_.gif │ │ │ ├── diff.gif │ │ │ ├── down.gif │ │ │ ├── drag.gif │ │ │ ├── edit.gif │ │ │ ├── edit_.gif │ │ │ ├── error.gif │ │ │ ├── error.png │ │ │ ├── files.gif │ │ │ ├── flash.gif │ │ │ ├── form.gif │ │ │ ├── group.gif │ │ │ ├── help.gif │ │ │ ├── hints.gif │ │ │ ├── home.gif │ │ │ ├── index.gif │ │ │ ├── left.gif │ │ │ ├── login.gif │ │ │ ├── logo.gif │ │ │ ├── movel.gif │ │ │ ├── mover.gif │ │ │ ├── news.gif │ │ │ ├── page.gif │ │ │ ├── palBg.jpg │ │ │ ├── right.gif │ │ │ ├── root.gif │ │ │ ├── rows.gif │ │ │ ├── show.gif │ │ │ ├── store.gif │ │ │ ├── sync.gif │ │ │ ├── undo.gif │ │ │ ├── user.gif │ │ │ ├── user_.gif │ │ │ ├── wrap.gif │ │ │ ├── admin_.gif │ │ │ ├── all_big.gif │ │ │ ├── article.gif │ │ │ ├── article_.gif │ │ │ ├── articles.gif │ │ │ ├── collapse.gif │ │ │ ├── current.gif │ │ │ ├── delete.gif │ │ │ ├── delete_.gif │ │ │ ├── editor.gif │ │ │ ├── editor_.gif │ │ │ ├── expand.gif │ │ │ ├── expand_.gif │ │ │ ├── featured.gif │ │ │ ├── folMinus.gif │ │ │ ├── folPlus.gif │ │ │ ├── folderC.gif │ │ │ ├── folderCP.gif │ │ │ ├── folderO.gif │ │ │ ├── folderOP.gif │ │ │ ├── forward.gif │ │ │ ├── group_.gif │ │ │ ├── header.gif │ │ │ ├── header_.gif │ │ │ ├── headline.gif │ │ │ ├── install.gif │ │ │ ├── layout.gif │ │ │ ├── loading.gif │ │ │ ├── logout.gif │ │ │ ├── magnify.gif │ │ │ ├── manager.gif │ │ │ ├── member.gif │ │ │ ├── member_.gif │ │ │ ├── mgroup.gif │ │ │ ├── mgroup_.gif │ │ │ ├── modMinus.gif │ │ │ ├── modPlus.gif │ │ │ ├── modules.gif │ │ │ ├── palOpen.gif │ │ │ ├── pickfile.gif │ │ │ ├── pickpage.gif │ │ │ ├── preview.gif │ │ │ ├── redirect.gif │ │ │ ├── regular.gif │ │ │ ├── reload.gif │ │ │ ├── root_1.gif │ │ │ ├── select.gif │ │ │ ├── settings.gif │ │ │ ├── themes.gif │ │ │ ├── update.gif │ │ │ ├── visible.gif │ │ │ ├── arrow_left.png │ │ │ ├── articles_.gif │ │ │ ├── changelog.gif │ │ │ ├── clipboard.gif │ │ │ ├── copychilds.gif │ │ │ ├── cssimport.gif │ │ │ ├── deleteAll.gif │ │ │ ├── demagnify.gif │ │ │ ├── error_403.gif │ │ │ ├── error_404.gif │ │ │ ├── featured_.gif │ │ │ ├── filemounts.gif │ │ │ ├── forward_1.gif │ │ │ ├── forward_4.gif │ │ │ ├── forward_5.gif │ │ │ ├── important.gif │ │ │ ├── invisible.gif │ │ │ ├── newfolder.gif │ │ │ ├── pagemounts.gif │ │ │ ├── pasteafter.gif │ │ │ ├── pasteinto.gif │ │ │ ├── pasteinto_.gif │ │ │ ├── pickcolor.gif │ │ │ ├── published.gif │ │ │ ├── redirect_1.gif │ │ │ ├── redirect_4.gif │ │ │ ├── redirect_5.gif │ │ │ ├── regular_1.gif │ │ │ ├── regular_2.gif │ │ │ ├── regular_3.gif │ │ │ ├── regular_4.gif │ │ │ ├── regular_5.gif │ │ │ ├── regular_6.gif │ │ │ ├── regular_7.gif │ │ │ ├── arrow_right.png │ │ │ ├── copychilds_.gif │ │ │ ├── error_403_1.gif │ │ │ ├── error_404_1.gif │ │ │ ├── filemanager.gif │ │ │ ├── palCollapsed.gif │ │ │ ├── pasteafter_.gif │ │ │ ├── tablewizard.gif │ │ │ ├── theme_export.gif │ │ │ ├── theme_import.gif │ │ │ ├── unpublished.gif │ │ │ └── template_editor.gif │ ├── .htaccess │ └── tinymce.css ├── .htaccess ├── cache │ └── .htaccess ├── cron │ └── .htaccess ├── logs │ └── .htaccess └── tmp │ └── .htaccess ├── files ├── music_academy │ ├── news.gif │ ├── admin.gif │ ├── image.png │ ├── layout.gif │ ├── modules.gif │ ├── protect.gif │ ├── background.gif │ ├── james-wilson.jpg │ ├── pagemounts.gif │ ├── permissions.gif │ ├── screenshot.jpg │ ├── frontendmodules.gif │ └── campus │ │ ├── campus_hall.jpg │ │ ├── campus_building.jpg │ │ ├── campus_library.jpg │ │ └── campus_overview.jpg └── tiny_templates │ └── index.html ├── templates ├── index.html └── .htaccess └── robots.txt /assets/ace/1.0.0/mode-text.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .tx/ export-ignore 2 | -------------------------------------------------------------------------------- /system/modules/core/vendor/swiftmailer/VERSION: -------------------------------------------------------------------------------- 1 | Swift-4.3.1 2 | -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_html.html5: -------------------------------------------------------------------------------- 1 | 2 | html; ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_html.xhtml: -------------------------------------------------------------------------------- 1 | 2 | html; ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/modules/mod_html.html5: -------------------------------------------------------------------------------- 1 | 2 | html; ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/modules/mod_html.xhtml: -------------------------------------------------------------------------------- 1 | 2 | html; ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_html.html5: -------------------------------------------------------------------------------- 1 | 2 | generate(); ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_html.xhtml: -------------------------------------------------------------------------------- 1 | 2 | generate(); ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_hidden.html5: -------------------------------------------------------------------------------- 1 | 2 | generate(); ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_hidden.xhtml: -------------------------------------------------------------------------------- 1 | 2 | generate(); ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_accordion_stop.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_accordion_stop.html5: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/contao/images/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/pdf.gif -------------------------------------------------------------------------------- /files/music_academy/news.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/news.gif -------------------------------------------------------------------------------- /assets/contao/images/gplus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/gplus.gif -------------------------------------------------------------------------------- /assets/contao/images/iconJS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconJS.gif -------------------------------------------------------------------------------- /assets/contao/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/info.gif -------------------------------------------------------------------------------- /assets/contao/images/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/print.gif -------------------------------------------------------------------------------- /files/music_academy/admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/admin.gif -------------------------------------------------------------------------------- /files/music_academy/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/image.png -------------------------------------------------------------------------------- /files/music_academy/layout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/layout.gif -------------------------------------------------------------------------------- /files/music_academy/modules.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/modules.gif -------------------------------------------------------------------------------- /files/music_academy/protect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/protect.gif -------------------------------------------------------------------------------- /system/modules/core/templates/backend/be_widget_chk.html5: -------------------------------------------------------------------------------- 1 | 2 | generateWithError(true); ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/backend/be_widget_rdo.html5: -------------------------------------------------------------------------------- 1 | 2 | generateWithError(true); ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/modules/mod_article_plain.html5: -------------------------------------------------------------------------------- 1 | 2 | elements); ?> 3 | -------------------------------------------------------------------------------- /system/modules/core/templates/modules/mod_article_plain.xhtml: -------------------------------------------------------------------------------- 1 | 2 | elements); ?> 3 | -------------------------------------------------------------------------------- /assets/contao/images/facebook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/facebook.gif -------------------------------------------------------------------------------- /assets/contao/images/iconBMP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconBMP.gif -------------------------------------------------------------------------------- /assets/contao/images/iconCSS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconCSS.gif -------------------------------------------------------------------------------- /assets/contao/images/iconCTO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconCTO.gif -------------------------------------------------------------------------------- /assets/contao/images/iconGIF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconGIF.gif -------------------------------------------------------------------------------- /assets/contao/images/iconHTML.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconHTML.gif -------------------------------------------------------------------------------- /assets/contao/images/iconJPG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconJPG.gif -------------------------------------------------------------------------------- /assets/contao/images/iconJSP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconJSP.gif -------------------------------------------------------------------------------- /assets/contao/images/iconPDF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconPDF.gif -------------------------------------------------------------------------------- /assets/contao/images/iconPHP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconPHP.gif -------------------------------------------------------------------------------- /assets/contao/images/iconRAR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconRAR.gif -------------------------------------------------------------------------------- /assets/contao/images/iconSWF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconSWF.gif -------------------------------------------------------------------------------- /assets/contao/images/iconTIF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconTIF.gif -------------------------------------------------------------------------------- /assets/contao/images/twitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/twitter.gif -------------------------------------------------------------------------------- /assets/contao/images/iconAUDIO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconAUDIO.gif -------------------------------------------------------------------------------- /assets/contao/images/iconOFFICE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconOFFICE.gif -------------------------------------------------------------------------------- /assets/contao/images/iconPLAIN.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconPLAIN.gif -------------------------------------------------------------------------------- /assets/contao/images/iconVIDEO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/contao/images/iconVIDEO.gif -------------------------------------------------------------------------------- /assets/fonts/ArchitectsDaughter.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/fonts/ArchitectsDaughter.woff -------------------------------------------------------------------------------- /files/music_academy/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/background.gif -------------------------------------------------------------------------------- /files/music_academy/james-wilson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/james-wilson.jpg -------------------------------------------------------------------------------- /files/music_academy/pagemounts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/pagemounts.gif -------------------------------------------------------------------------------- /files/music_academy/permissions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/permissions.gif -------------------------------------------------------------------------------- /files/music_academy/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/screenshot.jpg -------------------------------------------------------------------------------- /system/bin/yuicompressor-2.4.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/bin/yuicompressor-2.4.6.jar -------------------------------------------------------------------------------- /system/modules/faq/assets/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/faq/assets/icon.gif -------------------------------------------------------------------------------- /system/themes/default/images/1cl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/1cl.gif -------------------------------------------------------------------------------- /system/themes/default/images/1rw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/1rw.gif -------------------------------------------------------------------------------- /system/themes/default/images/3cl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/3cl.gif -------------------------------------------------------------------------------- /system/themes/default/images/3rw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/3rw.gif -------------------------------------------------------------------------------- /system/themes/default/images/all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/all.gif -------------------------------------------------------------------------------- /system/themes/default/images/css.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/css.gif -------------------------------------------------------------------------------- /system/themes/default/images/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/cut.gif -------------------------------------------------------------------------------- /system/themes/default/images/db.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/db.gif -------------------------------------------------------------------------------- /system/themes/default/images/hbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/hbg.jpg -------------------------------------------------------------------------------- /system/themes/default/images/log.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/log.gif -------------------------------------------------------------------------------- /system/themes/default/images/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/new.gif -------------------------------------------------------------------------------- /system/themes/default/images/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/ok.gif -------------------------------------------------------------------------------- /system/themes/default/images/rss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/rss.gif -------------------------------------------------------------------------------- /system/themes/default/images/su.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/su.gif -------------------------------------------------------------------------------- /system/themes/default/images/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/up.gif -------------------------------------------------------------------------------- /system/modules/news/assets/pending.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/news/assets/pending.gif -------------------------------------------------------------------------------- /system/themes/default/images/2cll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/2cll.gif -------------------------------------------------------------------------------- /system/themes/default/images/2clr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/2clr.gif -------------------------------------------------------------------------------- /system/themes/default/images/2rwf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/2rwf.gif -------------------------------------------------------------------------------- /system/themes/default/images/2rwh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/2rwh.gif -------------------------------------------------------------------------------- /system/themes/default/images/about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/about.gif -------------------------------------------------------------------------------- /system/themes/default/images/above.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/above.gif -------------------------------------------------------------------------------- /system/themes/default/images/admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/admin.gif -------------------------------------------------------------------------------- /system/themes/default/images/alias.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/alias.gif -------------------------------------------------------------------------------- /system/themes/default/images/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/back.gif -------------------------------------------------------------------------------- /system/themes/default/images/below.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/below.gif -------------------------------------------------------------------------------- /system/themes/default/images/cache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/cache.gif -------------------------------------------------------------------------------- /system/themes/default/images/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/copy.gif -------------------------------------------------------------------------------- /system/themes/default/images/copy_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/copy_.gif -------------------------------------------------------------------------------- /system/themes/default/images/cut_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/cut_.gif -------------------------------------------------------------------------------- /system/themes/default/images/diff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/diff.gif -------------------------------------------------------------------------------- /system/themes/default/images/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/down.gif -------------------------------------------------------------------------------- /system/themes/default/images/drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/drag.gif -------------------------------------------------------------------------------- /system/themes/default/images/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/edit.gif -------------------------------------------------------------------------------- /system/themes/default/images/edit_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/edit_.gif -------------------------------------------------------------------------------- /system/themes/default/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/error.gif -------------------------------------------------------------------------------- /system/themes/default/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/error.png -------------------------------------------------------------------------------- /system/themes/default/images/files.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/files.gif -------------------------------------------------------------------------------- /system/themes/default/images/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/flash.gif -------------------------------------------------------------------------------- /system/themes/default/images/form.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/form.gif -------------------------------------------------------------------------------- /system/themes/default/images/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/group.gif -------------------------------------------------------------------------------- /system/themes/default/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/help.gif -------------------------------------------------------------------------------- /system/themes/default/images/hints.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/hints.gif -------------------------------------------------------------------------------- /system/themes/default/images/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/home.gif -------------------------------------------------------------------------------- /system/themes/default/images/index.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/index.gif -------------------------------------------------------------------------------- /system/themes/default/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/left.gif -------------------------------------------------------------------------------- /system/themes/default/images/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/login.gif -------------------------------------------------------------------------------- /system/themes/default/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/logo.gif -------------------------------------------------------------------------------- /system/themes/default/images/movel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/movel.gif -------------------------------------------------------------------------------- /system/themes/default/images/mover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/mover.gif -------------------------------------------------------------------------------- /system/themes/default/images/news.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/news.gif -------------------------------------------------------------------------------- /system/themes/default/images/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/page.gif -------------------------------------------------------------------------------- /system/themes/default/images/palBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/palBg.jpg -------------------------------------------------------------------------------- /system/themes/default/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/right.gif -------------------------------------------------------------------------------- /system/themes/default/images/root.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/root.gif -------------------------------------------------------------------------------- /system/themes/default/images/rows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/rows.gif -------------------------------------------------------------------------------- /system/themes/default/images/show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/show.gif -------------------------------------------------------------------------------- /system/themes/default/images/store.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/store.gif -------------------------------------------------------------------------------- /system/themes/default/images/sync.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/sync.gif -------------------------------------------------------------------------------- /system/themes/default/images/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/undo.gif -------------------------------------------------------------------------------- /system/themes/default/images/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/user.gif -------------------------------------------------------------------------------- /system/themes/default/images/user_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/user_.gif -------------------------------------------------------------------------------- /system/themes/default/images/wrap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/wrap.gif -------------------------------------------------------------------------------- /assets/mootools/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /assets/mootools/datepicker/2.0.0/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/datepicker/2.0.0/icon.gif -------------------------------------------------------------------------------- /assets/mootools/stylect/images/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/stylect/images/select.gif -------------------------------------------------------------------------------- /assets/mootools/tablesort/images/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/tablesort/images/asc.gif -------------------------------------------------------------------------------- /assets/mootools/tablesort/images/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/tablesort/images/desc.gif -------------------------------------------------------------------------------- /files/music_academy/frontendmodules.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/frontendmodules.gif -------------------------------------------------------------------------------- /system/modules/calendar/assets/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/calendar/assets/icon.gif -------------------------------------------------------------------------------- /system/modules/comments/assets/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/comments/assets/icon.gif -------------------------------------------------------------------------------- /system/modules/devtools/assets/apply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/devtools/assets/apply.gif -------------------------------------------------------------------------------- /system/modules/devtools/assets/labels.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/devtools/assets/labels.gif -------------------------------------------------------------------------------- /system/modules/news/assets/approved.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/news/assets/approved.gif -------------------------------------------------------------------------------- /system/modules/newsletter/assets/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/newsletter/assets/icon.gif -------------------------------------------------------------------------------- /system/themes/default/images/admin_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/admin_.gif -------------------------------------------------------------------------------- /system/themes/default/images/all_big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/all_big.gif -------------------------------------------------------------------------------- /system/themes/default/images/article.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/article.gif -------------------------------------------------------------------------------- /system/themes/default/images/article_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/article_.gif -------------------------------------------------------------------------------- /system/themes/default/images/articles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/articles.gif -------------------------------------------------------------------------------- /system/themes/default/images/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/collapse.gif -------------------------------------------------------------------------------- /system/themes/default/images/current.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/current.gif -------------------------------------------------------------------------------- /system/themes/default/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/delete.gif -------------------------------------------------------------------------------- /system/themes/default/images/delete_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/delete_.gif -------------------------------------------------------------------------------- /system/themes/default/images/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/editor.gif -------------------------------------------------------------------------------- /system/themes/default/images/editor_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/editor_.gif -------------------------------------------------------------------------------- /system/themes/default/images/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/expand.gif -------------------------------------------------------------------------------- /system/themes/default/images/expand_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/expand_.gif -------------------------------------------------------------------------------- /system/themes/default/images/featured.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/featured.gif -------------------------------------------------------------------------------- /system/themes/default/images/folMinus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/folMinus.gif -------------------------------------------------------------------------------- /system/themes/default/images/folPlus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/folPlus.gif -------------------------------------------------------------------------------- /system/themes/default/images/folderC.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/folderC.gif -------------------------------------------------------------------------------- /system/themes/default/images/folderCP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/folderCP.gif -------------------------------------------------------------------------------- /system/themes/default/images/folderO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/folderO.gif -------------------------------------------------------------------------------- /system/themes/default/images/folderOP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/folderOP.gif -------------------------------------------------------------------------------- /system/themes/default/images/forward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/forward.gif -------------------------------------------------------------------------------- /system/themes/default/images/group_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/group_.gif -------------------------------------------------------------------------------- /system/themes/default/images/header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/header.gif -------------------------------------------------------------------------------- /system/themes/default/images/header_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/header_.gif -------------------------------------------------------------------------------- /system/themes/default/images/headline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/headline.gif -------------------------------------------------------------------------------- /system/themes/default/images/install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/install.gif -------------------------------------------------------------------------------- /system/themes/default/images/layout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/layout.gif -------------------------------------------------------------------------------- /system/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/loading.gif -------------------------------------------------------------------------------- /system/themes/default/images/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/logout.gif -------------------------------------------------------------------------------- /system/themes/default/images/magnify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/magnify.gif -------------------------------------------------------------------------------- /system/themes/default/images/manager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/manager.gif -------------------------------------------------------------------------------- /system/themes/default/images/member.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/member.gif -------------------------------------------------------------------------------- /system/themes/default/images/member_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/member_.gif -------------------------------------------------------------------------------- /system/themes/default/images/mgroup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/mgroup.gif -------------------------------------------------------------------------------- /system/themes/default/images/mgroup_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/mgroup_.gif -------------------------------------------------------------------------------- /system/themes/default/images/modMinus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/modMinus.gif -------------------------------------------------------------------------------- /system/themes/default/images/modPlus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/modPlus.gif -------------------------------------------------------------------------------- /system/themes/default/images/modules.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/modules.gif -------------------------------------------------------------------------------- /system/themes/default/images/palOpen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/palOpen.gif -------------------------------------------------------------------------------- /system/themes/default/images/pickfile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/pickfile.gif -------------------------------------------------------------------------------- /system/themes/default/images/pickpage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/pickpage.gif -------------------------------------------------------------------------------- /system/themes/default/images/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/preview.gif -------------------------------------------------------------------------------- /system/themes/default/images/redirect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/redirect.gif -------------------------------------------------------------------------------- /system/themes/default/images/regular.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/regular.gif -------------------------------------------------------------------------------- /system/themes/default/images/reload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/reload.gif -------------------------------------------------------------------------------- /system/themes/default/images/root_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/root_1.gif -------------------------------------------------------------------------------- /system/themes/default/images/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/select.gif -------------------------------------------------------------------------------- /system/themes/default/images/settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/settings.gif -------------------------------------------------------------------------------- /system/themes/default/images/themes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/themes.gif -------------------------------------------------------------------------------- /system/themes/default/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/update.gif -------------------------------------------------------------------------------- /system/themes/default/images/visible.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/visible.gif -------------------------------------------------------------------------------- /assets/mootools/datepicker/2.0.0/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/datepicker/2.0.0/frame.png -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/rpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/rpc.php -------------------------------------------------------------------------------- /assets/tinymce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /files/music_academy/campus/campus_hall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/campus/campus_hall.jpg -------------------------------------------------------------------------------- /system/modules/comments/assets/approved.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/comments/assets/approved.gif -------------------------------------------------------------------------------- /system/modules/comments/assets/pending.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/comments/assets/pending.gif -------------------------------------------------------------------------------- /system/modules/comments/assets/replied.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/comments/assets/replied.gif -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/tcpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/tcpdf.php -------------------------------------------------------------------------------- /system/modules/devtools/assets/autoload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/devtools/assets/autoload.gif -------------------------------------------------------------------------------- /system/themes/default/images/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/arrow_left.png -------------------------------------------------------------------------------- /system/themes/default/images/articles_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/articles_.gif -------------------------------------------------------------------------------- /system/themes/default/images/changelog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/changelog.gif -------------------------------------------------------------------------------- /system/themes/default/images/clipboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/clipboard.gif -------------------------------------------------------------------------------- /system/themes/default/images/copychilds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/copychilds.gif -------------------------------------------------------------------------------- /system/themes/default/images/cssimport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/cssimport.gif -------------------------------------------------------------------------------- /system/themes/default/images/deleteAll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/deleteAll.gif -------------------------------------------------------------------------------- /system/themes/default/images/demagnify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/demagnify.gif -------------------------------------------------------------------------------- /system/themes/default/images/error_403.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/error_403.gif -------------------------------------------------------------------------------- /system/themes/default/images/error_404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/error_404.gif -------------------------------------------------------------------------------- /system/themes/default/images/featured_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/featured_.gif -------------------------------------------------------------------------------- /system/themes/default/images/filemounts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/filemounts.gif -------------------------------------------------------------------------------- /system/themes/default/images/forward_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/forward_1.gif -------------------------------------------------------------------------------- /system/themes/default/images/forward_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/forward_4.gif -------------------------------------------------------------------------------- /system/themes/default/images/forward_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/forward_5.gif -------------------------------------------------------------------------------- /system/themes/default/images/important.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/important.gif -------------------------------------------------------------------------------- /system/themes/default/images/invisible.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/invisible.gif -------------------------------------------------------------------------------- /system/themes/default/images/newfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/newfolder.gif -------------------------------------------------------------------------------- /system/themes/default/images/pagemounts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/pagemounts.gif -------------------------------------------------------------------------------- /system/themes/default/images/pasteafter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/pasteafter.gif -------------------------------------------------------------------------------- /system/themes/default/images/pasteinto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/pasteinto.gif -------------------------------------------------------------------------------- /system/themes/default/images/pasteinto_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/pasteinto_.gif -------------------------------------------------------------------------------- /system/themes/default/images/pickcolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/pickcolor.gif -------------------------------------------------------------------------------- /system/themes/default/images/published.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/published.gif -------------------------------------------------------------------------------- /system/themes/default/images/redirect_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/redirect_1.gif -------------------------------------------------------------------------------- /system/themes/default/images/redirect_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/redirect_4.gif -------------------------------------------------------------------------------- /system/themes/default/images/redirect_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/redirect_5.gif -------------------------------------------------------------------------------- /system/themes/default/images/regular_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/regular_1.gif -------------------------------------------------------------------------------- /system/themes/default/images/regular_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/regular_2.gif -------------------------------------------------------------------------------- /system/themes/default/images/regular_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/regular_3.gif -------------------------------------------------------------------------------- /system/themes/default/images/regular_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/regular_4.gif -------------------------------------------------------------------------------- /system/themes/default/images/regular_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/regular_5.gif -------------------------------------------------------------------------------- /system/themes/default/images/regular_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/regular_6.gif -------------------------------------------------------------------------------- /system/themes/default/images/regular_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/regular_7.gif -------------------------------------------------------------------------------- /assets/jquery/tablesorter/2.0.5/images/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/tablesorter/2.0.5/images/asc.gif -------------------------------------------------------------------------------- /assets/mootools/datepicker/2.0.0/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/datepicker/2.0.0/buttons.png -------------------------------------------------------------------------------- /assets/mootools/mediabox/1.4.6/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/mediabox/1.4.6/images/50.gif -------------------------------------------------------------------------------- /assets/mootools/mediabox/1.4.6/images/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/mediabox/1.4.6/images/80.png -------------------------------------------------------------------------------- /assets/mootools/tablesort/images/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/tablesort/images/default.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/img/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/typolinks/img/image.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/img/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/typolinks/img/link.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/flash.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/iframe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/iframe.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/trans.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/video.gif -------------------------------------------------------------------------------- /files/music_academy/campus/campus_building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/campus/campus_building.jpg -------------------------------------------------------------------------------- /files/music_academy/campus/campus_library.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/campus/campus_library.jpg -------------------------------------------------------------------------------- /files/music_academy/campus/campus_overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/files/music_academy/campus/campus_overview.jpg -------------------------------------------------------------------------------- /system/modules/devtools/assets/extension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/devtools/assets/extension.gif -------------------------------------------------------------------------------- /system/themes/default/images/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/arrow_right.png -------------------------------------------------------------------------------- /system/themes/default/images/copychilds_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/copychilds_.gif -------------------------------------------------------------------------------- /system/themes/default/images/error_403_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/error_403_1.gif -------------------------------------------------------------------------------- /system/themes/default/images/error_404_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/error_404_1.gif -------------------------------------------------------------------------------- /system/themes/default/images/filemanager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/filemanager.gif -------------------------------------------------------------------------------- /system/themes/default/images/palCollapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/palCollapsed.gif -------------------------------------------------------------------------------- /system/themes/default/images/pasteafter_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/pasteafter_.gif -------------------------------------------------------------------------------- /system/themes/default/images/tablewizard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/tablewizard.gif -------------------------------------------------------------------------------- /system/themes/default/images/theme_export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/theme_export.gif -------------------------------------------------------------------------------- /system/themes/default/images/theme_import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/theme_import.gif -------------------------------------------------------------------------------- /system/themes/default/images/unpublished.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/unpublished.gif -------------------------------------------------------------------------------- /assets/jquery/colorbox/1.4.11/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/colorbox/1.4.11/images/loading.gif -------------------------------------------------------------------------------- /assets/jquery/tablesorter/2.0.5/images/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/tablesorter/2.0.5/images/desc.gif -------------------------------------------------------------------------------- /assets/mootools/colorpicker/1.3/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/colorpicker/1.3/images/blank.gif -------------------------------------------------------------------------------- /assets/mootools/mediabox/1.4.6/NonverBlaster.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/mediabox/1.4.6/NonverBlaster.swf -------------------------------------------------------------------------------- /assets/mootools/slimbox/1.71/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/slimbox/1.71/images/loading.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/pagebreak.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/quicktime.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/realmedia.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/shockwave.gif -------------------------------------------------------------------------------- /system/themes/default/images/template_editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/themes/default/images/template_editor.gif -------------------------------------------------------------------------------- /assets/jquery/colorbox/1.4.11/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/colorbox/1.4.11/images/controls.png -------------------------------------------------------------------------------- /assets/jquery/tablesorter/2.0.5/images/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/tablesorter/2.0.5/images/default.gif -------------------------------------------------------------------------------- /assets/mootools/mediabox/1.4.6/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/mediabox/1.4.6/images/loading.gif -------------------------------------------------------------------------------- /assets/mootools/mediabox/1.4.6/images/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/mediabox/1.4.6/images/loading2.gif -------------------------------------------------------------------------------- /assets/mootools/mediabox/1.4.6/images/loading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/mediabox/1.4.6/images/loading3.gif -------------------------------------------------------------------------------- /assets/mootools/simplemodal/1.2/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/simplemodal/1.2/images/loader.gif -------------------------------------------------------------------------------- /assets/mootools/slimbox/1.71/images/closelabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/slimbox/1.71/images/closelabel.gif -------------------------------------------------------------------------------- /assets/mootools/slimbox/1.71/images/nextlabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/slimbox/1.71/images/nextlabel.gif -------------------------------------------------------------------------------- /assets/mootools/slimbox/1.71/images/prevlabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/slimbox/1.71/images/prevlabel.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/img/windowsmedia.gif -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/fonts/freeserif.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/fonts/freeserif.z -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/fonts/freeserifb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/fonts/freeserifb.z -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/fonts/freeserifi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/fonts/freeserifi.z -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/images/_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/images/_blank.png -------------------------------------------------------------------------------- /assets/jquery/mediaelement/2.11.3/images/bigplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/mediaelement/2.11.3/images/bigplay.png -------------------------------------------------------------------------------- /assets/jquery/mediaelement/2.11.3/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/mediaelement/2.11.3/images/controls.png -------------------------------------------------------------------------------- /assets/jquery/mediaelement/2.11.3/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/mediaelement/2.11.3/images/loading.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/editor_plugin.js -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.typolinks',{ 2 | link_desc:'Insert/edit link', 3 | image_desc:'Insert/edit thumbnail image' 4 | }); -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/sl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.typolinks',{ 2 | link_desc:'Vstavi/uredi povezavo', 3 | image_desc:'Vstavi/uredi sličico' 4 | }); -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/fonts/freeserifbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/fonts/freeserifbi.z -------------------------------------------------------------------------------- /assets/jquery/mediaelement/2.11.3/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/mediaelement/2.11.3/images/background.png -------------------------------------------------------------------------------- /assets/mootools/colorpicker/1.3/images/moor_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/colorpicker/1.3/images/moor_arrows.gif -------------------------------------------------------------------------------- /assets/mootools/colorpicker/1.3/images/moor_boverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/colorpicker/1.3/images/moor_boverlay.png -------------------------------------------------------------------------------- /assets/mootools/colorpicker/1.3/images/moor_cursor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/colorpicker/1.3/images/moor_cursor.gif -------------------------------------------------------------------------------- /assets/mootools/colorpicker/1.3/images/moor_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/colorpicker/1.3/images/moor_slider.png -------------------------------------------------------------------------------- /assets/mootools/colorpicker/1.3/images/moor_woverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/mootools/colorpicker/1.3/images/moor_woverlay.png -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/classes/PSpell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/classes/PSpell.php -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/editor_plugin_src.js -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/includes/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/includes/general.php -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/pl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.typolinks',{ 2 | link_desc:'Wstaw/edytuj link', 3 | image_desc:'Wstaw/Edytuj thumbnail obraz' 4 | }); -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/fonts/freeserif.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/fonts/freeserif.ctg.z -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/fonts/freeserifb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/fonts/freeserifb.ctg.z -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/fonts/freeserifbi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/fonts/freeserifbi.ctg.z -------------------------------------------------------------------------------- /system/modules/core/vendor/tcpdf/fonts/freeserifi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/core/vendor/tcpdf/fonts/freeserifi.ctg.z -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/back.gif -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/edit.gif -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/info.gif -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/ok16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/ok16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/rc16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/rc16.png -------------------------------------------------------------------------------- /assets/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/css/print.css: -------------------------------------------------------------------------------- 1 | /* Style sheet print */ 2 | body{margin:24px;padding:0}*{font-family:helvetica}h1{margin-bottom:18px;font-size:18px}a{text-decoration:none;color:#a84204} -------------------------------------------------------------------------------- /assets/jquery/mediaelement/2.11.3/images/controls-ted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/mediaelement/2.11.3/images/controls-ted.png -------------------------------------------------------------------------------- /assets/jquery/mediaelement/2.11.3/images/controls-wmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/mediaelement/2.11.3/images/controls-wmp.png -------------------------------------------------------------------------------- /assets/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/classes/utils/JSON.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/classes/utils/JSON.php -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/da.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.typolinks',{ 2 | link_desc:'Tilføj/redigér link', 3 | image_desc:'Tilføj/redigér lightbox billede' 4 | }); -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/fr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.typolinks',{ 2 | link_desc:'Insérer/éditer le lien', 3 | image_desc:'Insérer/éditer thumbnail image' 4 | }); -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/nl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.typolinks',{ 2 | link_desc:'Voeg in/verander link', 3 | image_desc:'Voeg in/verander thumbnail beeld' 4 | }); -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/back16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/back16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/beta16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/beta16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/edit16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/edit16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/info16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/info16.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/0/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/5/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/6/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/7/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/9/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/a/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/b/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/c/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/d/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/e/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/f/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blank page 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/jquery/mediaelement/2.11.3/images/controls-wmp-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/mediaelement/2.11.3/images/controls-wmp-bg.png -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/classes/EnchantSpell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/classes/EnchantSpell.php -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/classes/GoogleSpell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/classes/GoogleSpell.php -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/classes/PSpellShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/classes/PSpellShell.php -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/classes/SpellChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/classes/SpellChecker.php -------------------------------------------------------------------------------- /assets/tinymce/plugins/spellchecker/classes/utils/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/spellchecker/classes/utils/Logger.php -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order deny,allow 3 | Deny from all 4 | 5 | 6 | Require all denied 7 | -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/alpha16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/alpha16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/blank16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/blank16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/catalog16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/catalog16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/dbcheck16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/dbcheck16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/default.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/forum16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/forum16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/install16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/install16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/manual16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/manual16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/reload16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/reload16.gif -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/stable16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/stable16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/stop128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/stop128.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/uninst16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/uninst16.png -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/uninstall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/uninstall.gif -------------------------------------------------------------------------------- /assets/jquery/mediaelement/2.11.3/legacy/flashmediaelement.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/mediaelement/2.11.3/legacy/flashmediaelement.swf -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/es.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.typolinks',{ 2 | link_desc:'Insertar/editar enlace', 3 | image_desc:'Insertar/editar imagen miniatura' 4 | }); 5 | -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /system/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order deny,allow 3 | Deny from all 4 | 5 | 6 | Require all denied 7 | -------------------------------------------------------------------------------- /system/cron/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /system/logs/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order deny,allow 3 | Deny from all 4 | 5 | 6 | Require all denied 7 | -------------------------------------------------------------------------------- /system/modules/core/templates/backend/be_widget.html5: -------------------------------------------------------------------------------- 1 | 2 |

generateLabel(); echo $this->xlabel; ?>

3 | generateWithError(true); ?> 4 | -------------------------------------------------------------------------------- /system/tmp/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order deny,allow 3 | Deny from all 4 | 5 | 6 | Require all denied 7 | -------------------------------------------------------------------------------- /templates/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order deny,allow 3 | Deny from all 4 | 5 | 6 | Require all denied 7 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/de.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.typolinks',{ 2 | link_desc:'Link einf\u00FCgen/bearbeiten', 3 | image_desc:'Vorschaubild einf\u00FCgen/bearbeiten' 4 | }); -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/it.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.typolinks',{ 2 | link_desc:'Inserisci/modifica link', 3 | image_desc:'Inserisci/modifica image a dimensioni intera' 4 | }); -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/sv.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.typolinks',{ 2 | link_desc:'L\u00E4gg till/editera l\u00E4nk', 3 | image_desc:'L\u00E4gg till/editera lightbox-bild' 4 | }); -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /assets/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /system/themes/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /assets/jquery/mediaelement/2.11.3/legacy/silverlightmediaelement.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/jquery/mediaelement/2.11.3/legacy/silverlightmediaelement.xap -------------------------------------------------------------------------------- /assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/uk.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.typolinks',{ 2 | link_desc:'Вставити/редагувати посилання', 3 | image_desc:'Вставити/редагувати зображення в лайтбоксі' 4 | }); -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/square-gray-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/square-gray-left.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/ru.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.typolinks',{ 2 | link_desc:'Вставить/редактировать ссылку', 3 | image_desc:'Вставить/редактировать изображение в лайтбоксе' 4 | }); -------------------------------------------------------------------------------- /system/modules/faq/assets/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /system/modules/news/assets/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /system/modules/repository/themes/default/images/square-gray-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/system/modules/repository/themes/default/images/square-gray-right.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonasschnelli/core/master/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/lv.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.typolinks',{ 2 | link_desc:'Ievietot/Redi\u0123\u0113t saiti', 3 | image_desc:'Ievietot/Redi\u0123\u0113t thumbnail att\u0113lu' 4 | }); -------------------------------------------------------------------------------- /system/modules/calendar/assets/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /system/modules/comments/assets/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /system/modules/devtools/assets/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /system/modules/newsletter/assets/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /system/modules/repository/themes/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /system/modules/devtools/templates/dev_htaccess.html5: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Allow from all 4 | 5 | 6 | Require all granted 7 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.paste_dlg',{"word_title":"Gunakan CTRL+V pada keyboard untuk paste.","text_linebreaks":"Keep linebreaks","text_title":"Gunakan CTRL+V pada keyboard untuk paste."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.paste_dlg',{"word_title":"Use CTRL+V para colar o texto na janela.","text_linebreaks":"Manter quebras de linha","text_title":"Use CTRL+V para colar o texto na janela."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.paste_dlg',{"word_title":"Use CTRL+V para colar o texto na janela.","text_linebreaks":"Manter quebras de linha","text_title":"Use CTRL+V para colar o texto na janela."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.paste_dlg',{"word_title":"Gebruik Ctrl+V om tekst in het venster te plakken.","text_linebreaks":"Regelafbreking bewaren","text_title":"Gebruik Ctrl+V om tekst in het venster te plakken."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/sq_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.paste_dlg',{"word_title":"P\u00ebrdor CTRL+V p\u00ebr t\u00eb ngjitur tekstin.","text_linebreaks":"Ruaj linjat e reja","text_title":"P\u00ebrdor CTRL+V p\u00ebr t\u00eb ngjitur tekstin."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/typolinks/langs/ja.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.typolinks',{ 2 | link_desc:'\u30ea\u30f3\u30af\u3092\u633f\u5165\u30fb\u7de8\u96c6', 3 | image_desc:'\u30b5\u30e0\u30cd\u30a4\u30eb\u753b\u50cf\u3092\u633f\u5165\u30fb\u7de8\u96c6' 4 | }); -------------------------------------------------------------------------------- /system/modules/news/templates/news/news_simple.xhtml: -------------------------------------------------------------------------------- 1 | 2 |
3 | date): ?>date; ?> 4 | linkHeadline; ?> 5 |
6 | -------------------------------------------------------------------------------- /system/themes/tinymce.css: -------------------------------------------------------------------------------- 1 | /* Contao Open Source CMS, (c) 2005-2013 Leo Feyer, LGPL license */ 2 | body,div,p,li,th,td{font-family:"Trebuchet MS",Verdana,sans-serif;font-size:12px;color:#666966}ul li{list-style:disc outside}ol li{list-style:decimal outside} -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /check/ 3 | Disallow: /contao/ 4 | Disallow: /system/ 5 | Disallow: /templates/ 6 | Disallow: /share/index.php 7 | Disallow: /contao-check.php 8 | Disallow: /flash.php 9 | Disallow: /README.md 10 | Allow: /assets/ -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.paste_dlg',{"word_title":"Use CTRL+V no teclado pra pega-lo texto na vent\u00e1.","text_linebreaks":"Manter salto de li\u00f1as","text_title":"Use CTRL+V no teclado pra pega-lo texto na vent\u00e1."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/sk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sk.paste_dlg',{"word_title":"Pou\u017eite CTRL+V pre vlo\u017eenie textu do okna.","text_linebreaks":"Zachova\u0165 zalamovanie riadkov","text_title":"Pou\u017eite CTRL+V pre vlo\u017eenie textu do okna."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.paste_dlg',{"word_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.","text_linebreaks":"Zadr\u017ei prijelome","text_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.paste_dlg',{"word_title":"Anvend CTRL+V p\u00e5 tastaturet for at inds\u00e6tte teksten.","text_linebreaks":"Bevar linieskift","text_title":"Anvend CTRL+V p\u00e5 tastaturet for at inds\u00e6tte teksten."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/et_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.paste_dlg',{"word_title":"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks.","text_linebreaks":"J\u00e4ta reavahetused","text_title":"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.paste_dlg',{"word_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.","text_linebreaks":"Zadr\u017ei prijelome","text_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/sr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.paste_dlg',{"word_title":"Koristite CTRL V na tastaturi da zalepite tekst u prozor.","text_linebreaks":"Zadr\u017ei prelome linija","text_title":"Koristite CTRL+V na tastaturi da zalepite tekst u prozor."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/ta_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/th_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('th.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /system/modules/core/templates/backend/be_maintenance.html5: -------------------------------------------------------------------------------- 1 | 2 |
3 | button; ?> 4 |
5 | 6 | content; ?> 7 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/es_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.paste_dlg',{"word_title":"Use CTRL+V en su teclado para pegar el texto en la ventana.","text_linebreaks":"Mantener saltos de l\u00ednea","text_title":"Use CTRL+V en su teclado para pegar el texto en la ventana."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/sl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.paste_dlg',{"word_title":"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno.","text_linebreaks":"Obdr\u017ei prelome vrstic","text_title":"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno."}); -------------------------------------------------------------------------------- /files/tiny_templates/index.html: -------------------------------------------------------------------------------- 1 |
2 |

Headline

3 | Text 4 |
5 |
6 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.paste_dlg',{"word_title":"Paina Ctrl+V liitt\u00e4\u00e4ksesi sis\u00e4ll\u00f6n ikkunaan.","text_linebreaks":"S\u00e4ilyt\u00e4 rivinvaihdot","text_title":"Paina Ctrl+V liitt\u00e4\u00e4ksesi sis\u00e4ll\u00f6n ikkunaan."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.paste_dlg',{"word_title":"\u8bf7\u4f7f\u7528CTRL V\u5c06\u5185\u5bb9\u7c98\u8d34\u4e0a\u3002","text_linebreaks":"\u4fdd\u7559\u5206\u884c\u7b26","text_title":"\u8bf7\u4f7f\u7528CTRL V\u5c06\u5185\u5bb9\u7c98\u8d34\u4e0a\u3002"}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.paste_dlg',{"word_title":"Pou\u017eijte CTRL+V pro vlo\u017een\u00ed textu do okna.","text_linebreaks":"Zachovat zalamov\u00e1n\u00ed \u0159\u00e1dk\u016f","text_title":"Pou\u017eijte CTRL+V pro vlo\u017een\u00ed textu do okna."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.paste_dlg',{"word_title":"Strg V auf der Tastatur dr\u00fccken, um den Text einzuf\u00fcgen.","text_linebreaks":"Zeilenumbr\u00fcche beibehalten","text_title":"Strg V auf der Tastatur dr\u00fccken, um den Text einzuf\u00fcgen."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.paste_dlg',{"word_title":"Premere CTRL+V sulla tastiera per incollare il testo nella finestra.","text_linebreaks":"Mantieni interruzioni di riga","text_title":"Premere CTRL+V sulla tastiera per incollare il testo nella finestra."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper div.current { 2 | height: 290px; 3 | } 4 | 5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { 6 | width: 200px; 7 | } 8 | 9 | #events_panel input { 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/no_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('no.paste_dlg',{"word_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn teksten i dette vinduet.","text_linebreaks":"Behold tekstbryting","text_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn teksten i dette vinduet."}); -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_headline.html5: -------------------------------------------------------------------------------- 1 | 2 | <hl; ?> class="class; ?>"cssID; ?>style): ?> style="style; ?>"> 3 | headline; ?> 4 | hl; ?>> 5 | -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_headline.xhtml: -------------------------------------------------------------------------------- 1 | 2 | <hl; ?> class="class; ?>"cssID; ?>style): ?> style="style; ?>"> 3 | headline; ?> 4 | hl; ?>> 5 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/ca_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.paste_dlg',{"word_title":"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra.","text_linebreaks":"Conserva els salts de l\u00ednia","text_title":"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.paste_dlg',{"word_title":"U\u017cyj CTRL+V na swojej klawiaturze \u017ceby wklei\u0107 tekst do okna.","text_linebreaks":"Zachowaj ko\u0144ce linii.","text_title":"U\u017cyj CTRL+V na swojej klawiaturze \u017ceby wklei\u0107 tekst do okna."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/ro_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ro.paste_dlg',{"word_title":"Folose\u0219te CTRL V pentru a lipi \u00een aceast\u0103 zon\u0103.","text_linebreaks":"P\u0103streaz\u0103 separatoarele de linii.","text_title":"Folose\u0219te CTRL V pentru a lipi \u00een aceast\u0103 zon\u0103."}); -------------------------------------------------------------------------------- /system/modules/news/templates/news/news_simple.html5: -------------------------------------------------------------------------------- 1 | 2 |
3 | date): ?> 4 | linkHeadline; ?> 5 |
6 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/lt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.paste_dlg',{"word_title":"Naudokite CTRL+V tekstui \u012fd\u0117ti \u012f \u0161\u012f lang\u0105.","text_linebreaks":"Palikti eilu\u010di\u0173 l\u016b\u017eius","text_title":"Naudokite CTRL+V tekstui \u012fd\u0117ti \u012f \u0161\u012f lang\u0105."}); -------------------------------------------------------------------------------- /system/modules/core/vendor/swiftmailer/dependency_maps/message_deps.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.paste_dlg',{"word_title":"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00eatre.","text_linebreaks":"Conserver les retours \u00e0 la ligne","text_title":"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00eatre."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.paste_dlg',{"word_title":"Anv\u00e4nd ctrl-v p\u00e5 ditt tangentbord f\u00f6r att klistra in i detta f\u00f6nster.","text_linebreaks":"Spara radbrytningar","text_title":"Anv\u00e4nd ctrl-v p\u00e5 ditt tangentbord f\u00f6r att klistra in i detta f\u00f6nster."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.paste_dlg',{"word_title":"Pencereye metin yap\u0131\u015ft\u0131rmak i\u00e7in klavyeden CTRL+V i kullan\u0131n.","text_linebreaks":"Sat\u0131r kesmelerini tut","text_title":"Pencereye metin yap\u0131\u015ft\u0131rmak i\u00e7in klavyeden CTRL+V i kullan\u0131n."}); -------------------------------------------------------------------------------- /assets/css/mobile.css: -------------------------------------------------------------------------------- 1 | /* Style sheet mobile */ 2 | #wrapper{margin-bottom:5px}#top_image{margin-left:0}.mod_navigation{top:0;margin-top:3em;width:inherit;position:inherit}.mod_article,.mod_eventlist,.mod_newsarchive,.mod_newsreader{margin-left:5px}textarea{margin-top:2px;margin-left:2px;width:96% !important}fieldset{width:90% !important} -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/is_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.paste_dlg',{"word_title":"Nota\u00f0u CTRL+V \u00e1 lyklabo\u00f0rinu til a\u00f0 l\u00edma textanum \u00ed ritilinn.","text_linebreaks":"Halda endingu l\u00edna","text_title":"Nota\u00f0u CTRL+V \u00e1 lyklabor\u00f0inu til a\u00f0 l\u00edma textanum \u00ed ritilinn."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.paste_dlg',{"word_title":"Haszn\u00e1lja a Ctrl V-t a billenty\u0171zet\u00e9n a sz\u00f6veg beilleszt\u00e9shez.","text_linebreaks":"Sort\u00f6r\u00e9sek megtart\u00e1sa","text_title":"Haszn\u00e1lja a Ctrl V-t a billenty\u0171zet\u00e9n a sz\u00f6veg beilleszt\u00e9shez."}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/lv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.paste_dlg',{"word_title":"Izmantojiet CTRL+V uz j\u016bsu tastat\u016bras lai iekop\u0113t tekstu log\u0101.","text_linebreaks":"Sagl\u0101b\u0101t l\u012bniju sadal\u012bt\u0101jus","text_title":"Izmantojiet CTRL+V uz j\u016bsu tastat\u016bras lai iekop\u0113t tekstu log\u0101."}); -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_headline.html5: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 | generate(); ?> 4 | 5 | 6 |
7 | generate(); ?> 8 |
9 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_headline.xhtml: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 | generate(); ?> 4 | 5 | 6 |
7 | generate(); ?> 8 |
9 | -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_slider_stop.html5: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_slider_stop.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | previous; ?> 7 | 8 | next; ?> 9 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_explanation.html5: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 | generate(); ?> 4 | 5 | 6 |
7 | generate(); ?> 8 |
9 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_explanation.xhtml: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 | generate(); ?> 4 | 5 | 6 |
7 | generate(); ?> 8 |
9 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_radio.html5: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 |   4 | generateWithError(); ?> 5 | 6 | 7 | generateWithError(); ?>
8 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_checkbox.html5: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 |   4 | generateWithError(); ?> 5 | 6 | 7 | generateWithError(); ?>
8 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_checkbox.xhtml: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 |   4 | generateWithError(); ?> 5 | 6 | 7 | generateWithError(); ?>
8 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_radio.xhtml: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 |   4 | generateWithError(); ?> 5 | 6 | 7 | generateWithError(); ?>
8 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_message.html5: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 |
message; ?>
4 | 5 | 6 |
7 | message; ?> 8 |
9 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_message.xhtml: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 |
message; ?>
4 | 5 | 6 |
7 | message; ?> 8 |
9 | -------------------------------------------------------------------------------- /system/modules/news/assets/style.css: -------------------------------------------------------------------------------- 1 | /* Contao Open Source CMS, (c) 2005-2013 Leo Feyer, LGPL license */ 2 | .comment_wrap{width:600px}.cte_type{margin:0 0 9px}.tl_file_list{vertical-align:top;padding:6px 0 9px !important}.mark_links a{text-decoration:underline}.cte_type.published{background-image:url("approved.gif")}.cte_type.unpublished{background-image:url("pending.gif")} -------------------------------------------------------------------------------- /assets/tinymce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.simple',{"cleanup_desc":"Cleanup Messy Code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Insert/Remove Numbered List","bullist_desc":"Insert/Remove Bulleted List","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /system/modules/core/templates/backend/be_widget_pw.html5: -------------------------------------------------------------------------------- 1 | 2 |
3 |

generateLabel(); echo $this->xlabel; ?>

4 | generateWithError(true); ?> 5 |
6 | 7 |
8 |

generateConfirmationLabel(); ?>

9 | generateConfirmation(); ?> 10 |
11 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/paste/langs/vi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.paste_dlg',{"word_title":"S\u1eed d\u1ee5ng CTRL+V tr\u00ean b\u00e0n ph\u00edm \u0111\u1ec3 d\u00e1n v\u0103n b\u1ea3n v\u00e0o c\u1eeda s\u1ed5.","text_linebreaks":"Gi\u1eef ng\u1eaft d\u00f2ng","text_title":"S\u1eed d\u1ee5ng CTRL+V tr\u00ean b\u00e0n ph\u00edm \u0111\u1ec3 d\u00e1n v\u0103n b\u1ea3n v\u00e0o c\u1eeda s\u1ed5."}); -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_toplink.html5: -------------------------------------------------------------------------------- 1 | 2 | 3 |
cssID; ?>style): ?> style="style; ?>"> 4 | label; ?> 5 |
6 | 7 | -------------------------------------------------------------------------------- /system/modules/core/templates/elements/ce_toplink.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
cssID; ?>style): ?> style="style; ?>"> 4 | label; ?> 5 |
6 | 7 | -------------------------------------------------------------------------------- /system/modules/faq/languages/en/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Last update on %s by %s. 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /system/modules/core/templates/backend/be_navigation.html5: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/template/css/template.css: -------------------------------------------------------------------------------- 1 | #frmbody { 2 | padding: 10px; 3 | background-color: #FFF; 4 | border: 1px solid #CCC; 5 | } 6 | 7 | .frmRow { 8 | margin-bottom: 10px; 9 | } 10 | 11 | #templatesrc { 12 | border: none; 13 | width: 320px; 14 | height: 240px; 15 | } 16 | 17 | .title { 18 | padding-bottom: 5px; 19 | } 20 | 21 | .mceActionPanel { 22 | padding-top: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /system/modules/listing/config/config.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | blank_page 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /system/modules/comments/languages/en/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Comment settings 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /system/modules/core/config/autoload.ini: -------------------------------------------------------------------------------- 1 | ;; 2 | ; Configure what you want the autoload creator to register 3 | ;; 4 | register_namespaces = true 5 | register_classes = true 6 | register_templates = true 7 | 8 | ;; 9 | ; Override the default configuration for certain sub directories 10 | ;; 11 | [vendor/*] 12 | register_namespaces = false 13 | register_classes = false 14 | register_templates = false 15 | -------------------------------------------------------------------------------- /system/modules/faq/languages/en/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | FAQ permissions 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /system/modules/faq/languages/ja/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | %sに%sが最後に更新 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/en/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | News permissions 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /assets/highlighter/3.0.83/shBrushPlain.js: -------------------------------------------------------------------------------- 1 | /* SyntaxHighlighter 3.0.83, (c) 2004-2010 Alex Gorbatchev, http://alexgorbatchev.com/SyntaxHighlighter */ 2 | (function(){function e(){}typeof require!="undefined"?SyntaxHighlighter=require("shCore").SyntaxHighlighter:null,e.prototype=new SyntaxHighlighter.Highlighter,e.aliases=["text","plain"],SyntaxHighlighter.brushes.Plain=e,typeof exports!="undefined"?exports.Brush=e:null})(); -------------------------------------------------------------------------------- /system/modules/faq/languages/ja/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | FAQの権限 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/zh/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | 最后更新于 %s,由 %s完成。 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/zh/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | FAQ权限 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/ja/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | コメントの設定 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/zh/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | 评论设置 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/de/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | FAQ-Rechte 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/fa/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | مجوزهای FAQ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/sl/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Posodobljeno %s, %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/uk/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | Дозволи FAQ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/ja/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | ニュースの権限 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/zh/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | 新闻权限 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/fa/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | تنظیمات نظر 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/da/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | FAQ tilladelser 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/it/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | Permessi FAQ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/lv/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | BUJ atļaujas 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/nl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | FAQ permissies 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/pl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | Uprawnienia FAQ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/rm/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | Dretgs da FAQ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/ru/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | Разрешения FAQ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/sl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | FAQ dovoljenja 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/sv/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | FAQ-behörigheter 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/da/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Rettighed 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/fa/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | مجوزهای خبر 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/en/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Calendar permissions 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /system/modules/comments/assets/style.css: -------------------------------------------------------------------------------- 1 | /* Contao Open Source CMS, (c) 2005-2013 Leo Feyer, LGPL license */ 2 | .comment_wrap{width:600px}.cte_type{margin:0 0 9px}.tl_file_list{vertical-align:top;padding:6px 0 !important}.mark_links a{text-decoration:underline}.cte_type.published{background-image:url("approved.gif")}.cte_type.published.replied{background-image:url("replied.gif")}.cte_type.unpublished{background-image:url("pending.gif")} -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_widget.html5: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 | generateLabel(); ?> 4 | generateWithError(); ?> 5 | 6 | 7 | generateLabel(); ?> 8 | generateWithError(); ?>
9 | -------------------------------------------------------------------------------- /system/modules/faq/languages/cs/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Poslední aktualizace dne %s, %s 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/da/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Senest opdateret den %s af %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/fa/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | آخرین به روز رسانی در %s توسط %s 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/fr/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | Permissions des FAQ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/hu/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | GyIK jogosultságok 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/lv/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Pēdējais jauninājums %s - %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/my/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | %s တွင် %s မှနောက်ဆံုးမွမ်းမံ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/nl/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Laatste update op %s door %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/sv/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Senast uppdaterad den %s av %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/cs/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Práva novinek 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/hu/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Hír jogosultságok 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/it/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Permessi news 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/lv/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Jaunumu atļaujas 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/sk/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Práva noviniek 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/table/css/row.css: -------------------------------------------------------------------------------- 1 | /* CSS file for row dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #rowtype,#align,#valign,#class,#height { 16 | width: 150px; 17 | } 18 | 19 | #height { 20 | width: 50px; 21 | } 22 | 23 | .col2 { 24 | padding-left: 20px; 25 | } 26 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/zh/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | 日历权限 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/cs/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Nastavení komentářů 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/da/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Kommentar opsætninger 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/de/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Kommentar-Einstellungen 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/hu/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Hozzászólás beállítások 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/it/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Impostazioni commenti 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/lv/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Kometāru uzstādījumi 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/my/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | မှတ်ချက်ချိန်ညှိချက် 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/nl/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Instellingen reacties 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/pl/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Ustawienia komentarzy 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/ru/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Настройки комментариев 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/sk/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Nastavenie komentárov 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/sl/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Nastavitve komentarjev 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/sv/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Kommentarsinställningar 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/uk/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Налаштування коментаря 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_submit.html5: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 |   4 |
generate(); ?>
5 | 6 | 7 |
8 | generate(); ?> 9 |
10 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_submit.xhtml: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 |   4 |
generate(); ?>
5 | 6 | 7 |
8 | generate(); ?> 9 |
10 | -------------------------------------------------------------------------------- /system/modules/core/templates/forms/form_widget.xhtml: -------------------------------------------------------------------------------- 1 | tableless): ?> 2 | 3 | generateLabel(); ?> 4 | generateWithError(); ?> 5 | 6 | 7 | generateLabel(); ?> 8 | generateWithError(); ?>
9 | -------------------------------------------------------------------------------- /system/modules/faq/languages/de/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Zuletzt aktualisiert am %s von %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/fr/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Dernière mise à jour le %s par %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/it/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Ultimo aggiornamento il %s dal %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/pl/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Ostatnia modyfikacja %s przez %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/rm/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Ultima actualisaziun: ils %s da %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/sk/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Posledná aktualizácia %s, napísal %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/de/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Nachrichten-Rechte 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/my/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | သတင်းခွင့်ပြုချက်များ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/nl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Permissies voor nieuws 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/ru/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Разрешения новостей 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/sl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Dovoljenja za novice 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/sv/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Nyhetsbehörigheter 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/uk/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Права доступу до новин 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/en/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Newsletter permissions 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/ja/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | カレンダーの権限 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/fr/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Paramètres du commentaire 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/comments/languages/rm/tl_module.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Comment settings 6 | Configuraziun da commentaris 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/hu/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Utoljára módosítva: %s Módosította: %s 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/ru/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Последнее обновление от %s, обновил %s. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/uk/default.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Last update on %s by %s. 6 | Останнє оновлення здійснено на %s ( %s ). 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/fr/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Permissions des actualités 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/rm/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Autorisaziun da novitads 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/cs/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Práva kalendáře 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/de/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Kalender-Rechte 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/fa/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | مجوزهای تقویم 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/news/languages/pl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | News permissions 6 | Prawa dostępu do aktualności 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/zh/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | 新闻通讯权限 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.emotions_dlg',{cry:"Chor\u00e3o",cool:"Fixe",desc:"Emoticons",title:"Inserir emoticon",yell:"Irado",wink:"Piscadela",undecided:"Indeciso","tongue_out":"L\u00edngua de fora",surprised:"Surpresa",smile:"Sorriso",sealed:"Boca Fechada","money_mouth":"Avarez",laughing:"Riso",kiss:"Beijo",innocent:"Inocente",frown:"Decep\u00e7\u00e3o","foot_in_mouth":"Disse asneira",embarassed:"Embara\u00e7ado"}); -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.emotions_dlg',{cry:"Pla\u010d",cool:"Cool",desc:"Emocije",title:"Umetni emociju",yell:"Vi\u010de",wink:"Namigiva",undecided:"Neodlu\u010dan","tongue_out":"Belji se",surprised:"Iznena\u0111en",smile:"Osmijeh",sealed:"\u0160utim","money_mouth":"Bogata\u0161",laughing:"Smijeh",kiss:"Poljubac",innocent:"Nevina\u0161ce",frown:"Mr\u0161ti se","foot_in_mouth":"Izlanuo se",embarassed:"Sramim se"}); -------------------------------------------------------------------------------- /system/modules/calendar/languages/da/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Kalender tilladelser 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/hu/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Naptár jogosultságok 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/it/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Permessi calendario 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/lv/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Kalendāra atļaujas 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/nl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Permissies kalender 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/ru/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Разрешения календаря 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/sk/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Práva pre kalendár 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/sl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Dovoljenja koledar 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/sv/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Kalenderbehörigheter 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/core/templates/mail/mail_default.html5: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | <?php echo $this->title; ?> 7 | css; ?> 8 | 9 | 10 | body; ?> 11 | 12 | -------------------------------------------------------------------------------- /system/modules/core/templates/mail/mail_default.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | <?php echo $this->title; ?> 7 | css; ?> 8 | 9 | 10 | body; ?> 11 | 12 | -------------------------------------------------------------------------------- /system/modules/faq/languages/my/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | မကြာခဏမေးမေးခွန်းများခွင့်ပြုချက်များ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/ja/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | ニュースレターの権限 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/sk/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Práva správy 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.emotions_dlg',{cry:"Pla\u010d",cool:"Cool",desc:"Emotikoni",title:"Umetni emotikona",yell:"Vi\u010de",wink:"Namiguje",undecided:"Neodlu\u010dan","tongue_out":"Plazi jezik",surprised:"Iznena\u0111en",smile:"Osmijeh",sealed:"\u0160uti","money_mouth":"Bogata\u0161",laughing:"Smije se",kiss:"Poljubac",innocent:"Nevina\u0161ce",frown:"Mr\u0161ti se","foot_in_mouth":"Izlanuo se",embarassed:"Srami se"}); -------------------------------------------------------------------------------- /system/modules/calendar/languages/fr/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Permissions du calendrier 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/my/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | ပြက္ခဒိန်ခွင့်ပြုချက်များ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/de/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Newsletter-Rechte 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/fa/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | مجوزهای خبرنامه 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert Emotion",usage:"Use left and right arrows to navigate.",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue Out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money Mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in Mouth",embarassed:"Embarassed"}); 2 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/pl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Prawa dostępu do kalendarza 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/rm/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Autorisaziun da chalenders 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/calendar/languages/uk/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar permissions 6 | Параметри доступу до календаря 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/cs/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | Přístupová práva k Často kladeným otázkám (FAQ) 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/faq/languages/sk/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAQ permissions 6 | Prístupové práva ku FAQ (Často kladeným otázkam) 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/cs/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Oprávnění zpravodaje 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/hu/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Hírlevél jogosultságok 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/it/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Permessi newsletter 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/lv/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Apkārtraksta atļaujas 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/my/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | သတင်းစာခွင့်ပြုချက်များ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/nl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Nieuwsbrief permissies 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/ru/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Разрешения рассылки 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/sl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Dovoljenja za e-novice 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/sv/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Nyhetbrevsbehörigheter 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/tinymce/plugins/searchreplace/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.searchreplace_dlg',{findwhat:"Cari apa...",replacewith:"Ganti dengan...",direction:"Arah",up:"Atas",down:"Bawah",mcase:"Match case",findnext:"Cari selanjutnya",allreplaced:"Seluruh kata dari string pencarian telah digantikan","searchnext_desc":"Cari Lagi",notfound:"Pencarian selesai. Hasil tidak ditemukan.","search_title":"Cari","replace_title":"Cari/Ganti",replaceall:"Ganti semua",replace:"Ganti"}); -------------------------------------------------------------------------------- /system/modules/newsletter/languages/da/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Rettighed for nyhedsbrev 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/modules/newsletter/languages/pl/tl_user_group.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Newsletter permissions 6 | Prawa dostępu do newslettera 7 | 8 | 9 | 10 | --------------------------------------------------------------------------------