├── admin ├── css │ ├── forms.css │ ├── stats.css │ ├── calendar.css │ └── buttons.css ├── vendors │ ├── bootstrap-wysihtml5 │ │ ├── VERSION │ │ ├── test │ │ │ ├── lib │ │ │ ├── README │ │ │ └── index.html │ │ ├── .gitignore │ │ ├── Gemfile │ │ ├── .settings │ │ │ └── .gitignore │ │ ├── lib │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ └── glyphicons-halflings-white.png │ │ │ └── css │ │ │ │ ├── prettify.css │ │ │ │ └── wysiwyg-color.css │ │ ├── component.json │ │ ├── Gemfile.lock │ │ ├── src │ │ │ ├── wysiwyg-color.css │ │ │ └── locales │ │ │ │ ├── bootstrap-wysihtml5.zh-CN.js │ │ │ │ ├── bootstrap-wysihtml5.zh-TW.js │ │ │ │ ├── bootstrap-wysihtml5.ko-KR.js │ │ │ │ ├── bootstrap-wysihtml5.ja-JP.js │ │ │ │ ├── bootstrap-wysihtml5.da-DK.js │ │ │ │ ├── bootstrap-wysihtml5.mo-MD.js │ │ │ │ ├── bootstrap-wysihtml5.tr-TR.js │ │ │ │ ├── bootstrap-wysihtml5.it-IT.js │ │ │ │ ├── bootstrap-wysihtml5.sv-SE.js │ │ │ │ ├── bootstrap-wysihtml5.pt-BR.js │ │ │ │ ├── bootstrap-wysihtml5.ca-CT.js │ │ │ │ ├── bootstrap-wysihtml5.el-GR.js │ │ │ │ ├── bootstrap-wysihtml5.ar-AR.js │ │ │ │ ├── bootstrap-wysihtml5.hr-HR.js │ │ │ │ ├── bootstrap-wysihtml5.nb-NB.js │ │ │ │ ├── bootstrap-wysihtml5.es-AR.js │ │ │ │ ├── bootstrap-wysihtml5.es-ES.js │ │ │ │ ├── bootstrap-wysihtml5.nl-NL.js │ │ │ │ ├── bootstrap-wysihtml5.cs-CZ.js │ │ │ │ ├── bootstrap-wysihtml5.bg-BG.js │ │ │ │ ├── bootstrap-wysihtml5.pl-PL.js │ │ │ │ ├── bootstrap-wysihtml5.sk-SK.js │ │ │ │ ├── bootstrap-wysihtml5.ru-RU.js │ │ │ │ ├── bootstrap-wysihtml5.fr-FR.js │ │ │ │ ├── bootstrap-wysihtml5.ua-UA.js │ │ │ │ ├── bootstrap-wysihtml5.lt-LT.js │ │ │ │ └── bootstrap-wysihtml5.de-DE.js │ │ ├── LICENCE │ │ └── Rakefile │ ├── flot │ │ ├── .travis.yml │ │ ├── .gitignore │ │ ├── examples │ │ │ ├── background.png │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ └── data-eu-gdp-growth.json │ │ │ ├── navigate │ │ │ │ ├── arrow-up.gif │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ └── arrow-right.gif │ │ │ ├── axes-time-zones │ │ │ │ └── tz │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── factory │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── pacificnew │ │ │ └── image │ │ │ │ └── hs-2004-27-a-large-web.jpg │ │ ├── component.json │ │ ├── package.json │ │ ├── Makefile │ │ ├── flot.jquery.json │ │ └── LICENSE.txt │ ├── ckeditor │ │ ├── samples │ │ │ ├── assets │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── plugins │ │ │ │ ├── htmlwriter │ │ │ │ │ └── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ └── outputforflash.swf │ │ │ │ └── dialog │ │ │ │ │ └── assets │ │ │ │ │ └── my_dialog.js │ │ │ ├── sample_posteddata.php │ │ │ └── sample.js │ │ ├── plugins │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── smiley │ │ │ │ └── images │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ └── whatchutalkingabout_smile.gif │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── icon.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── icon.png │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── flash │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── iframe │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── block_address.png │ │ │ │ │ └── block_blockquote.png │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── about.js │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── templates │ │ │ │ └── templates │ │ │ │ │ ├── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ │ │ └── default.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ └── lang │ │ │ │ │ └── _translationstatus.txt │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ └── lang │ │ │ │ │ └── _translationstatus.txt │ │ │ ├── scayt │ │ │ │ └── README.md │ │ │ └── wsc │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ └── wsc.css │ │ │ │ └── LICENSE.md │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ └── images │ │ │ │ ├── lock.png │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── refresh.png │ │ │ │ └── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── lock-open.png │ │ ├── config.js │ │ └── README.md │ ├── tinymce │ │ └── js │ │ │ └── tinymce │ │ │ ├── skins │ │ │ └── lightgray │ │ │ │ ├── fonts │ │ │ │ ├── readme.md │ │ │ │ ├── icomoon.eot │ │ │ │ ├── icomoon.ttf │ │ │ │ ├── icomoon.woff │ │ │ │ ├── icomoon-small.eot │ │ │ │ ├── icomoon-small.ttf │ │ │ │ └── icomoon-small.woff │ │ │ │ ├── img │ │ │ │ ├── trans.gif │ │ │ │ ├── wline.gif │ │ │ │ ├── anchor.gif │ │ │ │ ├── loader.gif │ │ │ │ └── object.gif │ │ │ │ ├── content.inline.min.css │ │ │ │ └── content.min.css │ │ │ ├── plugins │ │ │ ├── example_dependency │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ └── moxieplayer.swf │ │ │ ├── emoticons │ │ │ │ ├── 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 │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ └── plugin.min.js │ │ │ ├── example │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ └── plugin.min.js │ │ │ ├── wordcount │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ └── plugin.min.js │ │ │ ├── advlist │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ └── plugin.min.js │ │ │ └── legacyoutput │ │ │ │ └── plugin.min.js │ │ │ └── langs │ │ │ └── readme.md │ ├── datatables │ │ ├── images │ │ │ ├── favicon.ico │ │ │ ├── sort_asc.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ ├── Sorting icons.psd │ │ │ ├── back_disabled.png │ │ │ ├── back_enabled.png │ │ │ ├── forward_disabled.png │ │ │ ├── forward_enabled.png │ │ │ ├── back_enabled_hover.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_desc_disabled.png │ │ │ └── forward_enabled_hover.png │ │ ├── unit_testing │ │ │ ├── index.html │ │ │ └── tests_onhold │ │ │ │ ├── 1_dom │ │ │ │ ├── 2799.js │ │ │ │ ├── 2530-2.js │ │ │ │ ├── 2512.js │ │ │ │ ├── fnFilter.js │ │ │ │ ├── sAjaxSource.js │ │ │ │ ├── 2840-restore-table-width.js │ │ │ │ ├── bServerSide.js │ │ │ │ ├── aoColumns.sName.js │ │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ │ ├── 2530.js │ │ │ │ ├── bJQueryUI.js │ │ │ │ ├── fnDeleteRow.js │ │ │ │ ├── bInfo.js │ │ │ │ ├── bFilter.js │ │ │ │ ├── 2569.js │ │ │ │ ├── -iDraw.js │ │ │ │ ├── 2914-state-save-sort.js │ │ │ │ ├── 2635.js │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ ├── 2600.js │ │ │ │ ├── bPaginate.js │ │ │ │ └── 2608.js │ │ │ │ ├── 2_js │ │ │ │ ├── sAjaxSource.js │ │ │ │ ├── bServerSide.js │ │ │ │ ├── aoColumns.sName.js │ │ │ │ ├── bInfo.js │ │ │ │ ├── bFilter.js │ │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ └── oLanguage.sZeroRecords.js │ │ │ │ ├── 3_ajax │ │ │ │ ├── bServerSide.js │ │ │ │ ├── sAjaxSource.js │ │ │ │ ├── aoColumns.sName.js │ │ │ │ ├── bInfo.js │ │ │ │ ├── bFilter.js │ │ │ │ └── oLanguage.sProcessing.js │ │ │ │ ├── 4_server-side │ │ │ │ ├── bServerSide.js │ │ │ │ ├── sAjaxSource.js │ │ │ │ ├── aoColumns.sName.js │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ ├── 2440.js │ │ │ │ ├── -iDraw.js │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ ├── bInfo.js │ │ │ │ ├── 2569.js │ │ │ │ └── bFilter.js │ │ │ │ ├── 6_delayed_rendering │ │ │ │ ├── bServerSide.js │ │ │ │ ├── sAjaxSource.js │ │ │ │ ├── aoColumns.sName.js │ │ │ │ ├── bInfo.js │ │ │ │ └── bFilter.js │ │ │ │ └── 5_ajax_objects │ │ │ │ ├── bServerSide.js │ │ │ │ ├── sAjaxSource.js │ │ │ │ └── aoColumns.sName.js │ │ └── src │ │ │ ├── model │ │ │ └── model.search.js │ │ │ └── core │ │ │ └── core.processing.js │ ├── form-helpers │ │ └── img │ │ │ ├── bootstrap-formhelpers-googlefonts.png │ │ │ ├── bootstrap-formhelpers-countries.flags.png │ │ │ ├── bootstrap-formhelpers-currencies.flags.png │ │ │ └── bootstrap-formhelpers-countries.flags-LICENSE.txt │ ├── address │ │ └── address.css │ ├── easypiechart │ │ └── jquery.easy-pie-chart.css │ ├── morris │ │ └── morris.css │ └── wysiwyg │ │ └── bootstrap-wysihtml5.css ├── js │ ├── tables.js │ ├── custom.js │ └── forms.js ├── images │ └── facebook.png ├── bootstrap │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff ├── LICENSE └── includes │ ├── footer.php │ └── menu.php ├── sessions └── .htaccess ├── _config.yml ├── model.mwb ├── functions.php ├── composer.json ├── .gitignore ├── demo.php ├── classes ├── Admin.php └── Session.php └── LICENSE /admin/css/forms.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/css/stats.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sessions/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /admin/vendors/bootstrap-wysihtml5/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.2 -------------------------------------------------------------------------------- /admin/vendors/bootstrap-wysihtml5/test/lib: -------------------------------------------------------------------------------- 1 | ../lib/ -------------------------------------------------------------------------------- /admin/vendors/flot/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /model.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/model.mwb -------------------------------------------------------------------------------- /admin/vendors/flot/.gitignore: -------------------------------------------------------------------------------- 1 | *.min.js 2 | !excanvas.min.js 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /admin/vendors/bootstrap-wysihtml5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .c9revisions 3 | /*.project 4 | -------------------------------------------------------------------------------- /admin/js/tables.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('.dttable').dataTable(); 3 | } ); -------------------------------------------------------------------------------- /admin/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/images/facebook.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /admin/vendors/bootstrap-wysihtml5/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rake' 4 | gem 'therubyracer' 5 | gem 'uglifier' -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/readme.md: -------------------------------------------------------------------------------- 1 | Icons are generated and provided by the http://icomoon.io service. 2 | -------------------------------------------------------------------------------- /admin/vendors/flot/examples/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/flot/examples/background.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/favicon.ico -------------------------------------------------------------------------------- /admin/vendors/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/sort_both.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /admin/vendors/flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/example_dependency/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("example_dependency",function(){},["example"]); -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /admin/vendors/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/Sorting icons.psd -------------------------------------------------------------------------------- /admin/vendors/datatables/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/back_disabled.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/back_enabled.png -------------------------------------------------------------------------------- /admin/vendors/flot/examples/navigate/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/flot/examples/navigate/arrow-up.gif -------------------------------------------------------------------------------- /admin/vendors/bootstrap-wysihtml5/.settings/.gitignore: -------------------------------------------------------------------------------- 1 | /*.jsdtscope 2 | /*.eclipse.wst.jsdt.ui.superType.container 3 | /*.eclipse.wst.jsdt.ui.superType.name 4 | -------------------------------------------------------------------------------- /admin/vendors/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/forward_disabled.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/forward_enabled.png -------------------------------------------------------------------------------- /admin/vendors/flot/examples/navigate/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/flot/examples/navigate/arrow-down.gif -------------------------------------------------------------------------------- /admin/vendors/flot/examples/navigate/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/flot/examples/navigate/arrow-left.gif -------------------------------------------------------------------------------- /admin/vendors/flot/examples/navigate/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/flot/examples/navigate/arrow-right.gif -------------------------------------------------------------------------------- /admin/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /admin/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /admin/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /admin/vendors/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/back_enabled_hover.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /admin/vendors/ckeditor/samples/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/samples/assets/inlineall/logo.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /admin/vendors/datatables/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/datatables/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /admin/vendors/flot/examples/ajax/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] 4 | } 5 | -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | = 1.2.6" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/skins/lightgray/img/anchor.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/skins/lightgray/img/loader.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/skins/lightgray/img/object.gif -------------------------------------------------------------------------------- /admin/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.eot -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.ttf -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.woff -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /admin/vendors/form-helpers/img/bootstrap-formhelpers-googlefonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/form-helpers/img/bootstrap-formhelpers-googlefonts.png -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif -------------------------------------------------------------------------------- /admin/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /admin/vendors/flot/examples/ajax/data-eu-gdp-growth-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5]] 4 | } 5 | -------------------------------------------------------------------------------- /admin/vendors/form-helpers/img/bootstrap-formhelpers-countries.flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/form-helpers/img/bootstrap-formhelpers-countries.flags.png -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.eot -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.ttf -------------------------------------------------------------------------------- /admin/vendors/address/address.css: -------------------------------------------------------------------------------- 1 | .editable-address { 2 | display: block; 3 | margin-bottom: 5px; 4 | } 5 | 6 | .editable-address span { 7 | width: 70px; 8 | display: inline-block; 9 | } -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /admin/vendors/form-helpers/img/bootstrap-formhelpers-currencies.flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/form-helpers/img/bootstrap-formhelpers-currencies.flags.png -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.woff -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "lucaasleaal/mysqlucas": "dev-master" 4 | }, 5 | "autoload":{ 6 | "psr-4":{ 7 | "trackr\\": "classes/" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /admin/vendors/flot/examples/ajax/data-eu-gdp-growth-4.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1]] 4 | } 5 | -------------------------------------------------------------------------------- /admin/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /admin/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaslealdev/CSSTrackr/HEAD/admin/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /admin/vendors/flot/examples/ajax/data-usa-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "USA", 3 | "data": [[1999, 4.4], [2000, 3.7], [2001, 0.8], [2002, 1.6], [2003, 2.5], [2004, 3.6], [2005, 2.9], [2006, 2.8], [2007, 2.0], [2008, 1.1]] 4 | } 5 | -------------------------------------------------------------------------------- /admin/vendors/easypiechart/jquery.easy-pie-chart.css: -------------------------------------------------------------------------------- 1 | .easyPieChart { 2 | position: relative; 3 | text-align: center; 4 | } 5 | 6 | .easyPieChart canvas { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | } 11 | -------------------------------------------------------------------------------- /admin/vendors/flot/examples/ajax/data-japan-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Japan", 3 | "data": [[1999, -0.1], [2000, 2.9], [2001, 0.2], [2002, 0.3], [2003, 1.4], [2004, 2.7], [2005, 1.9], [2006, 2.0], [2007, 2.3], [2008, -0.7]] 4 | } 5 | -------------------------------------------------------------------------------- /admin/vendors/flot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.0-beta", 4 | "main": "jquery.flot.js", 5 | "scripts": { 6 | "test": "make test" 7 | }, 8 | "devDependencies": { 9 | "jshint": "0.9.1" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /admin/vendors/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /admin/vendors/flot/examples/ajax/data-eu-gdp-growth-5.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /admin/vendors/flot/examples/ajax/data-eu-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /admin/vendors/bootstrap-wysihtml5/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-wysihtml5", 3 | "version": "0.1.0", 4 | "main": ["src/bootstrap-wysihtml5.css", "src/bootstrap-wysihtml5.js"], 5 | "dependencies": { 6 | "wysihtml5": "~0.3.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /admin/vendors/datatables/unit_testing/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
7 | -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("print",function(t){t.addCommand("mcePrint",function(){t.getWin().print()}),t.addButton("print",{title:"Print",cmd:"mcePrint"}),t.addShortcut("Ctrl+P","","mcePrint"),t.addMenuItem("print",{text:"Print",cmd:"mcePrint",icon:"print",shortcut:"Ctrl+P",context:"file"})}); -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | /vendor/ 3 | sessions/ 4 | !sessions/.htaccess 5 | config.php 6 | # Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control 7 | # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file 8 | # composer.lock 9 | -------------------------------------------------------------------------------- /admin/vendors/flot/Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for generating minified files 2 | 3 | .PHONY: all 4 | 5 | # we cheat and process all .js files instead of an exhaustive list 6 | all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js))) 7 | 8 | %.min.js: %.js 9 | yui-compressor $< -o $@ 10 | 11 | test: 12 | ./node_modules/.bin/jshint *jquery.flot.js 13 | -------------------------------------------------------------------------------- /admin/vendors/tinymce/js/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("hr",function(e){e.addCommand("InsertHorizontalRule",function(){e.execCommand("mceInsertContent",!1,"
2 | # This file is in the public domain, so clarified as of
3 | # 2009-05-17 by Arthur David Olson.
4 |
5 | # For companies who don't want to put time zone specification in
6 | # their installation procedures. When users run date, they'll get the message.
7 | # Also useful for the "comp.sources" version.
8 |
9 | # Zone NAME GMTOFF RULES FORMAT
10 | Zone Factory 0 - "Local time zone must be set--see zic manual page"
11 |
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/1_dom/2512.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: 2512
2 | oTest.fnStart( "Check filtering with BR and HTML entity" );
3 |
4 |
5 | $(document).ready( function () {
6 | $('#example').dataTable();
7 |
8 | /* Basic checks */
9 | oTest.fnTest(
10 | "Check filtering",
11 | function () { $('#example').dataTable().fnFilter('testsearchstring'); },
12 | function () { return $('#example tbody tr').length == 1; }
13 | );
14 |
15 |
16 | oTest.fnComplete();
17 | } );
--------------------------------------------------------------------------------
/admin/js/custom.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function(){
2 |
3 |
4 | $(".submenu > a").click(function(e) {
5 | e.preventDefault();
6 | var $li = $(this).parent("li");
7 | var $ul = $(this).next("ul");
8 |
9 | if($li.hasClass("open")) {
10 | $ul.slideUp(350);
11 | $li.removeClass("open");
12 | } else {
13 | $(".nav > li > ul").slideUp(350);
14 | $(".nav > li").removeClass("open");
15 | $ul.slideDown(350);
16 | $li.addClass("open");
17 | }
18 | });
19 |
20 | });
--------------------------------------------------------------------------------
/admin/vendors/tinymce/js/tinymce/plugins/anchor/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("anchor",function(e){function t(){var t=e.selection.getNode();e.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:t.name||t.id},onsubmit:function(t){e.execCommand("mceInsertContent",!1,e.dom.createHTML("a",{id:t.data.name}))}})}e.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:t,stateSelector:"a:not([href])"}),e.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:t})});
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/1_dom/fnFilter.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dom_data
2 | oTest.fnStart( "fnFilter" );
3 |
4 | $(document).ready( function () {
5 | /* Check the default */
6 | var oTable = $('#example').dataTable();
7 | oTable.fnFilter(1);
8 |
9 | oTest.fnTest(
10 | "Filtering with a non-string input is valid",
11 | null,
12 | function () { return $('#example_info').html() == "Showing 1 to 10 of 32 entries (filtered from 57 total entries)"; }
13 | );
14 |
15 | oTest.fnComplete();
16 | } );
--------------------------------------------------------------------------------
/admin/vendors/tinymce/js/tinymce/plugins/example/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("example",function(e){e.addButton("example",{text:"My button",icon:!1,onclick:function(){e.windowManager.open({title:"Example plugin",body:[{type:"textbox",name:"title",label:"Title"}],onsubmit:function(t){e.insertContent("Title: "+t.data.title)}})}}),e.addMenuItem("example",{text:"Example plugin",context:"tools",onclick:function(){e.windowManager.open({title:"TinyMCE site",url:"http://www.tinymce.com",width:800,height:600,buttons:[{text:"Close",onclick:"close"}]})}})});
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/1_dom/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dom_data
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Not interested in ajax source here other than to check it's default */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable();
9 | var oSettings = oTable.fnSettings();
10 |
11 | oTest.fnTest(
12 | "Server side is off by default",
13 | null,
14 | function () { return oSettings.sAjaxSource == null; }
15 | );
16 |
17 | oTest.fnComplete();
18 | } );
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/1_dom/2840-restore-table-width.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dom_data
2 | oTest.fnStart( "2840 - Restore table width on fnDestroy" );
3 |
4 | $(document).ready( function () {
5 | document.cookie = "";
6 | $('#example').dataTable( {
7 | "sScrollX": "100%",
8 | "sScrollXInner": "110%"
9 | } );
10 | $('#example').dataTable().fnDestroy();
11 |
12 | oTest.fnTest(
13 | "Width after destroy",
14 | null,
15 | function () { return $('#example').width() == "800"; }
16 | );
17 |
18 | oTest.fnComplete();
19 | } );
--------------------------------------------------------------------------------
/demo.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Test file
5 |
6 |
7 |
8 | 
9 | Open modal
10 | Close modal
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/1_dom/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dom_data
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable();
9 | var oSettings = oTable.fnSettings();
10 |
11 | oTest.fnTest(
12 | "Server side is off by default",
13 | null,
14 | function () { return oSettings.oFeatures.bServerSide == false; }
15 | );
16 |
17 | oTest.fnComplete();
18 | } );
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/2_js/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: js_data
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Not interested in ajax source here other than to check it's default */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "aaData": gaaData
10 | } );
11 | var oSettings = oTable.fnSettings();
12 |
13 | oTest.fnTest(
14 | "Server side is off by default",
15 | null,
16 | function () { return oSettings.sAjaxSource == null; }
17 | );
18 |
19 | oTest.fnComplete();
20 | } );
--------------------------------------------------------------------------------
/admin/vendors/tinymce/js/tinymce/plugins/code/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("code",function(e){function t(){e.windowManager.open({title:"Source code",body:{type:"textbox",name:"code",multiline:!0,minWidth:e.getParam("code_dialog_width",600),minHeight:e.getParam("code_dialog_height",500),value:e.getContent({source_view:!0}),spellcheck:!1},onSubmit:function(t){e.undoManager.transact(function(){e.setContent(t.data.code)}),e.nodeChanged()}})}e.addCommand("mceCodeEditor",t),e.addButton("code",{icon:"code",tooltip:"Source code",onclick:t}),e.addMenuItem("code",{icon:"code",text:"Source code",context:"tools",onclick:t})});
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/2_js/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: js_data
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "aaData": gaaData
10 | } );
11 | var oSettings = oTable.fnSettings();
12 |
13 | oTest.fnTest(
14 | "Server side is off by default",
15 | null,
16 | function () { return oSettings.oFeatures.bServerSide == false; }
17 | );
18 |
19 | oTest.fnComplete();
20 | } );
--------------------------------------------------------------------------------
/admin/vendors/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("nonbreaking",function(e){var t=e.getParam("nonbreaking_force_tab");if(e.addCommand("mceNonBreaking",function(){e.insertContent(e.plugins.visualchars&&e.plugins.visualchars.state?' ':" ")}),e.addButton("nonbreaking",{title:"Insert nonbreaking space",cmd:"mceNonBreaking"}),e.addMenuItem("nonbreaking",{text:"Nonbreaking space",cmd:"mceNonBreaking",context:"insert"}),t){var n=+t>1?+t:3;e.on("keydown",function(t){if(9==t.keyCode){if(t.shiftKey)return;t.preventDefault();for(var i=0;n>i;i++)e.execCommand("mceNonBreaking")}})}});
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/3_ajax/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt"
10 | } );
11 | var oSettings = oTable.fnSettings();
12 |
13 | oTest.fnWaitTest(
14 | "Server side is off by default",
15 | null,
16 | function () { return oSettings.oFeatures.bServerSide == false; }
17 | );
18 |
19 | oTest.fnComplete();
20 | } );
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/3_ajax/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Sanitfy check really - all the other tests blast this */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt"
10 | } );
11 | var oSettings = oTable.fnSettings();
12 |
13 | oTest.fnWaitTest(
14 | "Server side is off by default",
15 | null,
16 | function () {
17 | return oSettings.sAjaxSource == "../../../examples/ajax/sources/arrays.txt";
18 | }
19 | );
20 |
21 | oTest.fnComplete();
22 | } );
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/4_server-side/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* All the other scripts blast the ssp processing */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "bServerSide": true,
10 | "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php"
11 | } );
12 | var oSettings = oTable.fnSettings();
13 |
14 | oTest.fnWaitTest(
15 | "Server side can be set to on",
16 | null,
17 | function () { return oSettings.oFeatures.bServerSide == true; }
18 | );
19 |
20 | oTest.fnComplete();
21 | } );
--------------------------------------------------------------------------------
/classes/Admin.php:
--------------------------------------------------------------------------------
1 | db = \mysqlucas::getInstance(DB_HOSTNAME,DB_USERNAME,DB_PASSWORD,DB_DATABASE);
13 | }
14 |
15 | function login(string $user, string $pwd) : bool {
16 | $this->db->select(DB_PREFIX.'admin',array('username'=>$user));
17 | if (!isset($this->db->id)){
18 | return false;
19 | }elseif(password_verify($pwd,$this->db->password)){
20 | $this->id = $this->db->id;
21 | $this->username = $this->db->username;
22 | return true;
23 | }else{
24 | return false;
25 | }
26 | }
27 | }
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/6_delayed_rendering/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
10 | "bDeferRender": true
11 | } );
12 | var oSettings = oTable.fnSettings();
13 |
14 | oTest.fnWaitTest(
15 | "Server side is off by default",
16 | null,
17 | function () { return oSettings.oFeatures.bServerSide == false; }
18 | );
19 |
20 | oTest.fnComplete();
21 | } );
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/6_delayed_rendering/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Sanitfy check really - all the other tests blast this */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
10 | "bDeferRender": true
11 | } );
12 | var oSettings = oTable.fnSettings();
13 |
14 | oTest.fnWaitTest(
15 | "Server side is off by default",
16 | null,
17 | function () {
18 | return oSettings.sAjaxSource == "../../../examples/ajax/sources/arrays.txt";
19 | }
20 | );
21 |
22 | oTest.fnComplete();
23 | } );
--------------------------------------------------------------------------------
/admin/vendors/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("contextmenu",function(e){var t;e.on("contextmenu",function(n){var i;if(n.preventDefault(),i=e.settings.contextmenu||"link image inserttable | cell row column deletetable",t)t.show();else{var o=[];tinymce.each(i.split(/[ ,]/),function(t){var n=e.menuItems[t];"|"==t&&(n={text:t}),n&&(n.shortcut="",o.push(n))});for(var a=0;a",tinymce.each(n,function(n){var i=t+"/img/smiley-"+n+".gif";e+='
'}),e+=""}),e+=""}var i=[["cool","cry","embarassed","foot-in-mouth"],["frown","innocent","kiss","laughing"],["money-mouth","sealed","smile","surprised"],["tongue-out","undecided","wink","yell"]];e.addButton("emoticons",{type:"panelbutton",popoverAlign:"bc-tl",panel:{autohide:!0,html:n,onclick:function(t){var n=e.dom.getParent(t.target,"a");n&&(e.insertContent('
'),this.hide())}},tooltip:"Emoticons"})});
--------------------------------------------------------------------------------
/admin/vendors/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
2 | For licensing, see LICENSE.md or http://ckeditor.com/license
3 |
4 | cs.js Found: 118 Missing: 0
5 | cy.js Found: 118 Missing: 0
6 | de.js Found: 118 Missing: 0
7 | el.js Found: 16 Missing: 102
8 | eo.js Found: 118 Missing: 0
9 | et.js Found: 31 Missing: 87
10 | fa.js Found: 24 Missing: 94
11 | fi.js Found: 23 Missing: 95
12 | fr.js Found: 118 Missing: 0
13 | hr.js Found: 23 Missing: 95
14 | it.js Found: 118 Missing: 0
15 | nb.js Found: 118 Missing: 0
16 | nl.js Found: 118 Missing: 0
17 | no.js Found: 118 Missing: 0
18 | tr.js Found: 118 Missing: 0
19 | ug.js Found: 39 Missing: 79
20 | zh-cn.js Found: 118 Missing: 0
21 |
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/6_delayed_rendering/aoColumns.sName.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "aoColumns.sName" );
3 |
4 | /* This has no effect at all in DOM methods - so we just check that it has applied the name */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
10 | "bDeferRender": true,
11 | "aoColumns": [
12 | null,
13 | null,
14 | null,
15 | { "sName": 'unit test' },
16 | null
17 | ]
18 | } );
19 | var oSettings = oTable.fnSettings();
20 |
21 | oTest.fnWaitTest(
22 | "Names are stored in the columns object",
23 | null,
24 | function () { return oSettings.aoColumns[3].sName =="unit test"; }
25 | );
26 |
27 |
28 | oTest.fnComplete();
29 | } );
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/5_ajax_objects/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/objects.txt",
10 | "aoColumns": [
11 | { "mData": "engine" },
12 | { "mData": "browser" },
13 | { "mData": "platform" },
14 | { "mData": "version" },
15 | { "mData": "grade" }
16 | ]
17 | } );
18 | var oSettings = oTable.fnSettings();
19 |
20 | oTest.fnWaitTest(
21 | "Server side is off by default",
22 | null,
23 | function () { return oSettings.oFeatures.bServerSide == false; }
24 | );
25 |
26 | oTest.fnComplete();
27 | } );
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/1_dom/2530.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dymanic_table
2 | oTest.fnStart( "2530 - Check width's when dealing with empty strings" );
3 |
4 |
5 | $(document).ready( function () {
6 | $('#example').dataTable( {
7 | "aaData": [
8 | ['','Internet Explorer 4.0','Win 95+','4','X'],
9 | ['','Internet Explorer 5.0','Win 95+','5','C']
10 | ],
11 | "aoColumns": [
12 | { "sTitle": "", "sWidth": "40px" },
13 | { "sTitle": "Browser" },
14 | { "sTitle": "Platform" },
15 | { "sTitle": "Version", "sClass": "center" },
16 | { "sTitle": "Grade", "sClass": "center" }
17 | ]
18 | } );
19 |
20 | /* Basic checks */
21 | oTest.fnTest(
22 | "Check calculated widths",
23 | null,
24 | function () { return $('#example tbody tr td:eq(0)').width() < 100; }
25 | );
26 |
27 |
28 | oTest.fnComplete();
29 | } );
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/4_server-side/aoColumns.sName.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "aoColumns.sName" );
3 |
4 | /* This has no effect at all in DOM methods - so we just check that it has applied the name */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "bServerSide": true,
10 | "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php",
11 | "aoColumns": [
12 | null,
13 | null,
14 | null,
15 | { "sName": 'unit test' },
16 | null
17 | ]
18 | } );
19 | var oSettings = oTable.fnSettings();
20 |
21 | oTest.fnWaitTest(
22 | "Names are stored in the columns object",
23 | null,
24 | function () { return oSettings.aoColumns[3].sName =="unit test"; }
25 | );
26 |
27 |
28 | oTest.fnComplete();
29 | } );
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/5_ajax_objects/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Sanitfy check really - all the other tests blast this */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/objects.txt",
10 | "aoColumns": [
11 | { "mData": "engine" },
12 | { "mData": "browser" },
13 | { "mData": "platform" },
14 | { "mData": "version" },
15 | { "mData": "grade" }
16 | ]
17 | } );
18 | var oSettings = oTable.fnSettings();
19 |
20 | oTest.fnWaitTest(
21 | "Server side is off by default",
22 | null,
23 | function () {
24 | return oSettings.sAjaxSource == "../../../examples/ajax/sources/objects.txt";
25 | }
26 | );
27 |
28 | oTest.fnComplete();
29 | } );
--------------------------------------------------------------------------------
/admin/vendors/tinymce/js/tinymce/plugins/wordcount/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("wordcount",function(e){function t(){e.theme.panel.find("#wordcount").text(["Words: {0}",a.getCount()])}var n,i,a=this;n=e.getParam("wordcount_countregex",/[\w\u2019\x27\-]+/g),i=e.getParam("wordcount_cleanregex",/[0-9.(),;:!?%#$?\x27\x22_+=\\\/\-]*/g),e.on("init",function(){var n=e.theme.panel&&e.theme.panel.find("#statusbar")[0];n&&window.setTimeout(function(){n.insert({type:"label",name:"wordcount",text:["Words: {0}",a.getCount()],classes:"wordcount"},0),e.on("setcontent beforeaddundo",t),e.on("keyup",function(e){32==e.keyCode&&t()})},0)}),a.getCount=function(){var t=e.getContent({format:"raw"}),a=0;if(t){t=t.replace(/\.\.\./g," "),t=t.replace(/<.[^<>]*?>/g," ").replace(/ | /gi," "),t=t.replace(/(\w+)(&.+?;)+(\w+)/,"$1$3").replace(/&.+?;/g," "),t=t.replace(i,"");var o=t.match(n);o&&(a=o.length)}return a}});
--------------------------------------------------------------------------------
/admin/vendors/flot/examples/axes-time-zones/tz/yearistype.sh:
--------------------------------------------------------------------------------
1 | #! /bin/sh
2 |
3 | : 'This file is in the public domain, so clarified as of'
4 | : '2006-07-17 by Arthur David Olson.'
5 |
6 | case $#-$1 in
7 | 2-|2-0*|2-*[!0-9]*)
8 | echo "$0: wild year - $1" >&2
9 | exit 1 ;;
10 | esac
11 |
12 | case $#-$2 in
13 | 2-even)
14 | case $1 in
15 | *[24680]) exit 0 ;;
16 | *) exit 1 ;;
17 | esac ;;
18 | 2-nonpres|2-nonuspres)
19 | case $1 in
20 | *[02468][048]|*[13579][26]) exit 1 ;;
21 | *) exit 0 ;;
22 | esac ;;
23 | 2-odd)
24 | case $1 in
25 | *[13579]) exit 0 ;;
26 | *) exit 1 ;;
27 | esac ;;
28 | 2-uspres)
29 | case $1 in
30 | *[02468][048]|*[13579][26]) exit 0 ;;
31 | *) exit 1 ;;
32 | esac ;;
33 | 2-*)
34 | echo "$0: wild type - $2" >&2 ;;
35 | esac
36 |
37 | echo "$0: usage is $0 year even|odd|uspres|nonpres|nonuspres" >&2
38 | exit 1
39 |
--------------------------------------------------------------------------------
/admin/vendors/datatables/unit_testing/tests_onhold/5_ajax_objects/aoColumns.sName.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "aoColumns.sName" );
3 |
4 | /* This has no effect at all in DOM methods - so we just check that it has applied the name */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/objects.txt",
10 | "aoColumns": [
11 | { "mData": "engine" },
12 | { "mData": "browser" },
13 | { "mData": "platform" },
14 | { "mData": "version", "sName": 'unit test' },
15 | { "mData": "grade" }
16 | ]
17 | } );
18 | var oSettings = oTable.fnSettings();
19 |
20 | oTest.fnWaitTest(
21 | "Names are stored in the columns object",
22 | null,
23 | function () { return oSettings.aoColumns[3].sName =="unit test"; }
24 | );
25 |
26 |
27 | oTest.fnComplete();
28 | } );
--------------------------------------------------------------------------------
/admin/js/forms.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function(){
2 | // Select
3 | $('.selectpicker').selectpicker();
4 |
5 | // Tags
6 | $("#tags").tags({
7 | suggestions: ["alpha", "bravo", "charlie", "delta", "echo", "foxtrot", "golf", "hotel", "india"],
8 | tagData: ["juliett", "kilo"]
9 | });
10 |
11 | // Editable
12 | $('.editable').editable();
13 |
14 | // Wizard
15 | $('#rootwizard').bootstrapWizard();
16 |
17 | // Mask
18 | if ($('[data-mask]')
19 | .length) {
20 | $('[data-mask]')
21 | .each(function () {
22 |
23 | $this = $(this);
24 | var mask = $this.attr('data-mask') || 'error...',
25 | mask_placeholder = $this.attr('data-mask-placeholder') || 'X';
26 |
27 | $this.mask(mask, {
28 | placeholder: mask_placeholder
29 | });
30 | })
31 | }
32 | });
--------------------------------------------------------------------------------
/admin/vendors/ckeditor/samples/sample_posteddata.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | -------------------------------------------------------------------------------------------
4 | CKEditor - Posted Data
5 |
6 | We are sorry, but your Web server does not support the PHP language used in this script.
7 |
8 | Please note that CKEditor can be used with any other server-side language than just PHP.
9 | To save the content created with CKEditor you need to read the POST data on the server
10 | side and write it to a file or the database.
11 |
12 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
13 | For licensing, see LICENSE.md or http://ckeditor.com/license
14 | -------------------------------------------------------------------------------------------
15 |
16 |