├── static ├── script │ ├── cropper │ │ └── src │ │ │ ├── js │ │ │ └── outro.js │ │ │ ├── img │ │ │ └── bg.png │ │ │ └── scss │ │ │ └── cropper.scss │ ├── ion.rangeSlider │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── img │ │ │ ├── sprite-skin-flat.png │ │ │ ├── sprite-skin-nice.png │ │ │ ├── sprite-skin-modern.png │ │ │ └── sprite-skin-simple.png │ │ └── _tmp │ │ │ └── logo-ion-range-slider.png │ ├── jquery-knob │ │ ├── .gitignore │ │ ├── secretplan.jpg │ │ └── bower.json │ ├── parsleyjs │ │ ├── CNAME │ │ ├── bower_components │ │ │ ├── jquery │ │ │ │ └── src │ │ │ │ │ ├── outro.js │ │ │ │ │ ├── selector.js │ │ │ │ │ ├── var │ │ │ │ │ ├── arr.js │ │ │ │ │ ├── rnotwhite.js │ │ │ │ │ ├── strundefined.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── push.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── class2type.js │ │ │ │ │ ├── indexOf.js │ │ │ │ │ ├── pnum.js │ │ │ │ │ ├── toString.js │ │ │ │ │ ├── hasOwn.js │ │ │ │ │ └── support.js │ │ │ │ │ ├── ajax │ │ │ │ │ ├── var │ │ │ │ │ │ ├── rquery.js │ │ │ │ │ │ └── nonce.js │ │ │ │ │ └── parseJSON.js │ │ │ │ │ ├── css │ │ │ │ │ └── var │ │ │ │ │ │ ├── rmargin.js │ │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ │ └── rnumnonpx.js │ │ │ │ │ ├── manipulation │ │ │ │ │ ├── var │ │ │ │ │ │ └── rcheckableType.js │ │ │ │ │ └── _evalUrl.js │ │ │ │ │ ├── data │ │ │ │ │ └── var │ │ │ │ │ │ ├── data_priv.js │ │ │ │ │ │ └── data_user.js │ │ │ │ │ ├── core │ │ │ │ │ └── var │ │ │ │ │ │ └── rsingleTag.js │ │ │ │ │ ├── traversing │ │ │ │ │ └── var │ │ │ │ │ │ └── rneedsContext.js │ │ │ │ │ ├── event │ │ │ │ │ ├── support.js │ │ │ │ │ └── ajax.js │ │ │ │ │ ├── attributes.js │ │ │ │ │ ├── deprecated.js │ │ │ │ │ ├── effects │ │ │ │ │ └── animatedSelector.js │ │ │ │ │ └── selector-sizzle.js │ │ │ ├── bootstrap │ │ │ │ └── dist │ │ │ │ │ └── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── sinonjs │ │ │ │ └── bower.json │ │ │ ├── expect.js │ │ │ │ └── Makefile │ │ │ └── mocha │ │ │ │ └── scripts │ │ │ │ └── ensure-compatible-npm.sh │ │ ├── dist │ │ │ └── i18n │ │ │ │ ├── zh_cn.extra.js │ │ │ │ ├── id.extra.js │ │ │ │ ├── it.extra.js │ │ │ │ ├── sv.extra.js │ │ │ │ ├── he.extra.js │ │ │ │ ├── fi.extra.js │ │ │ │ ├── fr.extra.js │ │ │ │ ├── uk.extra.js │ │ │ │ └── ru.extra.js │ │ └── src │ │ │ ├── i18n │ │ │ ├── zh_cn.extra.js │ │ │ ├── sv.extra.js │ │ │ ├── id.extra.js │ │ │ ├── it.extra.js │ │ │ ├── he.extra.js │ │ │ ├── fi.extra.js │ │ │ ├── fr.extra.js │ │ │ └── uk.extra.js │ │ │ ├── parsley.js │ │ │ ├── extra │ │ │ └── validator │ │ │ │ └── dateiso.js │ │ │ └── header.js │ ├── skycons │ │ └── .gitignore │ ├── jquery-sparkline │ │ ├── version.txt │ │ ├── src │ │ │ └── footer.js │ │ └── minheader.txt │ ├── Chart.js │ │ ├── .eslintignore │ │ ├── config.jshintrc │ │ ├── .gitignore │ │ ├── src │ │ │ └── charts │ │ │ │ ├── Chart.Bar.js │ │ │ │ ├── Chart.Bubble.js │ │ │ │ ├── Chart.Line.js │ │ │ │ ├── Chart.Doughnut.js │ │ │ │ ├── Chart.PolarArea.js │ │ │ │ └── Chart.Radar.js │ │ ├── .editorconfig │ │ ├── karma.conf.js │ │ ├── .codeclimate.yml │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ └── bower.json │ ├── autosize │ │ └── .gitignore │ ├── select2 │ │ ├── docs │ │ │ ├── .gitignore │ │ │ ├── _sass │ │ │ │ ├── _typography.scss │ │ │ │ ├── vendor │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ └── _fixed-width.scss │ │ │ │ │ └── bootstrap │ │ │ │ │ │ └── mixins │ │ │ │ │ │ ├── _center-block.scss │ │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ │ ├── _size.scss │ │ │ │ │ │ ├── _text-overflow.scss │ │ │ │ │ │ ├── _tab-focus.scss │ │ │ │ │ │ ├── _labels.scss │ │ │ │ │ │ ├── _resize.scss │ │ │ │ │ │ ├── _progress-bar.scss │ │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ │ ├── _reset-filter.scss │ │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ │ └── _alerts.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _featurette.scss │ │ │ │ └── _code.scss │ │ │ ├── images │ │ │ │ ├── logo.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── mstile-310x150.png │ │ │ │ ├── mstile-70x70.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── android-chrome-36x36.png │ │ │ │ ├── android-chrome-48x48.png │ │ │ │ ├── android-chrome-72x72.png │ │ │ │ ├── apple-touch-icon-57x57.png │ │ │ │ ├── apple-touch-icon-60x60.png │ │ │ │ ├── apple-touch-icon-72x72.png │ │ │ │ └── apple-touch-icon-precomposed.png │ │ │ ├── vendor │ │ │ │ ├── images │ │ │ │ │ └── flags │ │ │ │ │ │ ├── ak.png │ │ │ │ │ │ ├── al.png │ │ │ │ │ │ ├── ar.png │ │ │ │ │ │ ├── az.png │ │ │ │ │ │ ├── ca.png │ │ │ │ │ │ ├── co.png │ │ │ │ │ │ ├── ct.png │ │ │ │ │ │ ├── de.png │ │ │ │ │ │ ├── fl.png │ │ │ │ │ │ ├── ga.png │ │ │ │ │ │ ├── hi.png │ │ │ │ │ │ ├── ia.png │ │ │ │ │ │ ├── id.png │ │ │ │ │ │ ├── il.png │ │ │ │ │ │ ├── in.png │ │ │ │ │ │ ├── ks.png │ │ │ │ │ │ ├── ky.png │ │ │ │ │ │ ├── la.png │ │ │ │ │ │ ├── ma.png │ │ │ │ │ │ ├── md.png │ │ │ │ │ │ ├── me.png │ │ │ │ │ │ ├── mi.png │ │ │ │ │ │ ├── mn.png │ │ │ │ │ │ ├── mo.png │ │ │ │ │ │ ├── ms.png │ │ │ │ │ │ ├── mt.png │ │ │ │ │ │ ├── nc.png │ │ │ │ │ │ ├── nd.png │ │ │ │ │ │ ├── ne.png │ │ │ │ │ │ ├── nh.png │ │ │ │ │ │ ├── nj.png │ │ │ │ │ │ ├── nm.png │ │ │ │ │ │ ├── nv.png │ │ │ │ │ │ ├── ny.png │ │ │ │ │ │ ├── oh.png │ │ │ │ │ │ ├── ok.png │ │ │ │ │ │ ├── or.png │ │ │ │ │ │ ├── pa.png │ │ │ │ │ │ ├── ri.png │ │ │ │ │ │ ├── sc.png │ │ │ │ │ │ ├── sd.png │ │ │ │ │ │ ├── tn.png │ │ │ │ │ │ ├── tx.png │ │ │ │ │ │ ├── ut.png │ │ │ │ │ │ ├── va.png │ │ │ │ │ │ ├── vt.png │ │ │ │ │ │ ├── wa.png │ │ │ │ │ │ ├── wi.png │ │ │ │ │ │ ├── wv.png │ │ │ │ │ │ └── wy.png │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── _includes │ │ │ │ ├── options │ │ │ │ ├── events.html │ │ │ │ ├── data.html │ │ │ │ ├── core.html │ │ │ │ ├── dropdown.html │ │ │ │ ├── not-written.html │ │ │ │ ├── events │ │ │ │ │ └── internal.html │ │ │ │ ├── compatibility.html │ │ │ │ └── selections.html │ │ │ │ └── notice-previous.html │ │ ├── .gitignore │ │ ├── .editorconfig │ │ ├── .jshintignore │ │ ├── src │ │ │ └── js │ │ │ │ ├── jquery.mousewheel.shim.js │ │ │ │ ├── banner.end.js │ │ │ │ └── banner.start.js │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── jquery │ │ ├── src │ │ │ ├── outro.js │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── document.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── concat.js │ │ │ │ ├── push.js │ │ │ │ ├── slice.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── class2type.js │ │ │ │ ├── pnum.js │ │ │ │ ├── toString.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── documentElement.js │ │ │ │ ├── support.js │ │ │ │ └── rcssNum.js │ │ │ ├── selector.js │ │ │ ├── ajax │ │ │ │ ├── var │ │ │ │ │ ├── rquery.js │ │ │ │ │ ├── location.js │ │ │ │ │ └── nonce.js │ │ │ │ └── parseJSON.js │ │ │ ├── css │ │ │ │ └── var │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ └── rnumnonpx.js │ │ │ ├── manipulation │ │ │ │ └── var │ │ │ │ │ ├── rtagName.js │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ └── rscriptType.js │ │ │ ├── data │ │ │ │ └── var │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ └── dataUser.js │ │ │ ├── core │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ ├── traversing │ │ │ │ └── var │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ └── siblings.js │ │ │ ├── event │ │ │ │ └── support.js │ │ │ ├── attributes.js │ │ │ └── effects │ │ │ │ └── animatedSelector.js │ │ └── bower.json │ ├── bootstrap-daterangepicker │ │ ├── example │ │ │ └── browserify │ │ │ │ ├── bundle.js │ │ │ │ └── README.md │ │ └── drp.png │ ├── normalize-css │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── .editorconfig │ ├── 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 │ │ │ └── image │ │ │ │ └── hs-2004-27-a-large-web.jpg │ │ ├── component.json │ │ ├── package.json │ │ └── Makefile │ ├── raphael │ │ └── dev │ │ │ └── test │ │ │ └── vml │ │ │ └── dom.js │ ├── echarts │ │ ├── extension │ │ │ ├── echarts.js │ │ │ └── dataTool │ │ │ │ └── index.js │ │ ├── src │ │ │ ├── chart │ │ │ │ ├── graph │ │ │ │ │ ├── backwardCompat.js │ │ │ │ │ └── circularLayout.js │ │ │ │ ├── gauge.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── sankey.js │ │ │ │ ├── parallel.js │ │ │ │ ├── boxplot.js │ │ │ │ └── treemap.js │ │ │ ├── component │ │ │ │ ├── radiusAxis.js │ │ │ │ ├── angleAxis.js │ │ │ │ ├── axis.js │ │ │ │ ├── dataZoom │ │ │ │ │ ├── SelectZoomView.js │ │ │ │ │ ├── typeDefaulter.js │ │ │ │ │ ├── SelectZoomModel.js │ │ │ │ │ └── InsideZoomModel.js │ │ │ │ ├── radar.js │ │ │ │ ├── visualMap.js │ │ │ │ ├── singleAxis.js │ │ │ │ ├── parallelAxis.js │ │ │ │ ├── timeline │ │ │ │ │ ├── typeDefaulter.js │ │ │ │ │ └── TimelineView.js │ │ │ │ ├── single.js │ │ │ │ ├── polar.js │ │ │ │ ├── markLine.js │ │ │ │ ├── toolbox │ │ │ │ │ └── featureManager.js │ │ │ │ ├── markPoint.js │ │ │ │ ├── legend.js │ │ │ │ └── toolbox.js │ │ │ └── model │ │ │ │ └── mixin │ │ │ │ └── areaStyle.js │ │ ├── asset │ │ │ └── logo.png │ │ ├── .npmignore │ │ ├── test │ │ │ ├── ut │ │ │ │ ├── lib │ │ │ │ │ └── jasmine-2.3.4 │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ ├── spec │ │ │ │ │ └── ui │ │ │ │ │ │ └── config.js │ │ │ │ └── configure │ │ │ └── reset.css │ │ ├── index.simple.js │ │ ├── build │ │ │ └── build.sh │ │ └── .bower.json │ ├── jqvmap │ │ ├── grunt │ │ │ ├── qunit.js │ │ │ ├── clean.js │ │ │ ├── index.js │ │ │ └── shell.js │ │ ├── src │ │ │ ├── JQVMap │ │ │ │ ├── getPinId.js │ │ │ │ ├── isSelected.js │ │ │ │ ├── getCountryId.js │ │ │ │ ├── removePins.js │ │ │ │ ├── setScale.js │ │ │ │ ├── getPin.js │ │ │ │ ├── removePin.js │ │ │ │ ├── setBackgroundColor.js │ │ │ │ ├── setScaleColors.js │ │ │ │ ├── setNormalizeFunction.js │ │ │ │ ├── selectIndex.js │ │ │ │ ├── unhighlight.js │ │ │ │ ├── bindZoomButtons.js │ │ │ │ ├── reset.js │ │ │ │ └── getPins.js │ │ │ └── ColorScale │ │ │ │ ├── rgbToArray.js │ │ │ │ ├── setColors.js │ │ │ │ ├── vectorMult.js │ │ │ │ ├── vectorAdd.js │ │ │ │ ├── vectorLength.js │ │ │ │ ├── vectorSubtract.js │ │ │ │ ├── setMax.js │ │ │ │ ├── vectorToNum.js │ │ │ │ ├── arrayToRgb.js │ │ │ │ └── setMin.js │ │ ├── examples │ │ │ └── images │ │ │ │ ├── tip.png │ │ │ │ ├── flag.png │ │ │ │ ├── globe.png │ │ │ │ ├── thumb.jpg │ │ │ │ ├── background.png │ │ │ │ └── marker │ │ │ │ ├── blue.png │ │ │ │ ├── grey.png │ │ │ │ ├── red.png │ │ │ │ ├── black.png │ │ │ │ ├── green.png │ │ │ │ ├── orange.png │ │ │ │ ├── purple.png │ │ │ │ ├── white.png │ │ │ │ └── yellow.png │ │ └── create │ │ │ └── config │ │ │ ├── syria.json │ │ │ └── new-york.json │ ├── jquery.easy-pie-chart │ │ ├── .gitignore │ │ ├── docs │ │ │ ├── test.md │ │ │ ├── credits.md │ │ │ └── browser-support.md │ │ ├── .travis.yml │ │ └── src │ │ │ └── jquery.plugin.js │ ├── pnotify │ │ ├── dist │ │ │ ├── pnotify.buttons.css │ │ │ ├── pnotify.nonblock.css │ │ │ └── pnotify.tooltip.js │ │ └── .gitignore │ ├── morris.js │ │ ├── examples │ │ │ └── lib │ │ │ │ ├── example.js │ │ │ │ └── example.css │ │ ├── .gitignore │ │ └── spec │ │ │ ├── viz │ │ │ └── exemplary │ │ │ │ ├── area0.png │ │ │ │ ├── bar0.png │ │ │ │ ├── line0.png │ │ │ │ └── stacked_bar0.png │ │ │ └── support │ │ │ └── placeholder.coffee │ ├── gauge.js │ │ ├── favicon.ico │ │ ├── assets │ │ │ ├── bg.png │ │ │ ├── hs.png │ │ │ ├── hv.png │ │ │ ├── arrow.gif │ │ │ ├── cross.gif │ │ │ ├── browsers.png │ │ │ ├── github.gif │ │ │ ├── preview.jpg │ │ │ ├── ribbon.png │ │ │ ├── strike.png │ │ │ └── crosshair.gif │ │ └── bower.json │ ├── requirejs │ │ ├── README.md │ │ └── bower.json │ ├── moment │ │ ├── src │ │ │ └── lib │ │ │ │ ├── locale │ │ │ │ ├── pre-post-format.js │ │ │ │ ├── constructor.js │ │ │ │ ├── invalid.js │ │ │ │ └── ordinal.js │ │ │ │ ├── moment │ │ │ │ ├── now.js │ │ │ │ ├── clone.js │ │ │ │ └── creation-data.js │ │ │ │ ├── utils │ │ │ │ ├── is-undefined.js │ │ │ │ ├── has-own-prop.js │ │ │ │ ├── is-object.js │ │ │ │ ├── is-array.js │ │ │ │ ├── is-date.js │ │ │ │ ├── is-function.js │ │ │ │ ├── map.js │ │ │ │ ├── abs-ceil.js │ │ │ │ ├── abs-floor.js │ │ │ │ ├── abs-round.js │ │ │ │ ├── defaults.js │ │ │ │ ├── to-int.js │ │ │ │ ├── zero-fill.js │ │ │ │ └── hooks.js │ │ │ │ ├── create │ │ │ │ ├── local.js │ │ │ │ └── utc.js │ │ │ │ ├── units │ │ │ │ └── constants.js │ │ │ │ └── duration │ │ │ │ └── duration.js │ │ └── templates │ │ │ ├── globals.js │ │ │ ├── amd.js │ │ │ ├── amd-named.js │ │ │ ├── default.js │ │ │ ├── locale-header.js │ │ │ └── test-header.js │ ├── iCheck │ │ └── skins │ │ │ ├── flat │ │ │ ├── red.png │ │ │ ├── aero.png │ │ │ ├── blue.png │ │ │ ├── flat.png │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── orange.png │ │ │ ├── pink.png │ │ │ ├── purple.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.png │ │ │ ├── aero@2x.png │ │ │ ├── blue@2x.png │ │ │ ├── flat@2x.png │ │ │ ├── green@2x.png │ │ │ ├── grey@2x.png │ │ │ ├── pink@2x.png │ │ │ ├── orange@2x.png │ │ │ ├── purple@2x.png │ │ │ └── yellow@2x.png │ │ │ ├── line │ │ │ ├── line.png │ │ │ └── line@2x.png │ │ │ ├── minimal │ │ │ ├── red.png │ │ │ ├── aero.png │ │ │ ├── blue.png │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── pink.png │ │ │ ├── aero@2x.png │ │ │ ├── blue@2x.png │ │ │ ├── green@2x.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.png │ │ │ ├── orange.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange@2x.png │ │ │ ├── purple@2x.png │ │ │ └── yellow@2x.png │ │ │ ├── square │ │ │ ├── aero.png │ │ │ ├── blue.png │ │ │ ├── grey.png │ │ │ ├── pink.png │ │ │ ├── red.png │ │ │ ├── green.png │ │ │ ├── orange.png │ │ │ ├── purple.png │ │ │ ├── red@2x.png │ │ │ ├── square.png │ │ │ ├── yellow.png │ │ │ ├── aero@2x.png │ │ │ ├── blue@2x.png │ │ │ ├── green@2x.png │ │ │ ├── grey@2x.png │ │ │ ├── orange@2x.png │ │ │ ├── pink@2x.png │ │ │ ├── purple@2x.png │ │ │ ├── square@2x.png │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ │ └── futurico │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ ├── eve │ │ ├── README.md │ │ ├── component.json │ │ └── .bower.json │ ├── nprogress │ │ └── support │ │ │ └── extras.css │ ├── fontawesome │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ └── fixed-width.less │ │ ├── scss │ │ │ └── _fixed-width.scss │ │ └── HELP-US-OUT.txt │ ├── font-awesome │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── screen-reader.less │ │ │ └── fixed-width.less │ │ ├── scss │ │ │ ├── _fixed-width.scss │ │ │ └── _screen-reader.scss │ │ └── HELP-US-OUT.txt │ ├── jQuery-Smart-Wizard │ │ └── images │ │ │ └── loader.gif │ ├── bootstrap │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ └── .jshintrc │ │ ├── dist │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── less │ │ │ └── mixins │ │ │ │ ├── center-block.less │ │ │ │ ├── size.less │ │ │ │ ├── opacity.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── resize.less │ │ │ │ ├── labels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── nav-divider.less │ │ │ │ └── alerts.less │ │ └── js │ │ │ └── .jshintrc │ ├── malihu-custom-scrollbar-plugin │ │ └── mCSB_buttons.png │ ├── mjolnic-bootstrap-colorpicker │ │ ├── dist │ │ │ └── img │ │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── hue.png │ │ │ │ ├── alpha.png │ │ │ │ ├── saturation.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ └── alpha-horizontal.png │ │ └── docs │ │ │ └── includes │ │ │ └── examples │ │ │ ├── 01_basic.hbs │ │ │ ├── 05_transparent.hbs │ │ │ ├── 06_horizontal.hbs │ │ │ ├── 04_events.hbs │ │ │ ├── 02_component.hbs │ │ │ └── 07_inline.hbs │ ├── jquery.tagsinput │ │ ├── grunt-tasks │ │ │ ├── assets_production.js │ │ │ └── options │ │ │ │ ├── uglify.js │ │ │ │ └── cssmin.js │ │ └── bower.json │ ├── jszip │ │ ├── lib │ │ │ ├── nodeBuffer.js │ │ │ ├── signature.js │ │ │ ├── defaults.js │ │ │ └── compressions.js │ │ └── component.json │ ├── starrr │ │ ├── dist │ │ │ └── starrr.css │ │ ├── src │ │ │ └── starrr.scss │ │ ├── package.json │ │ └── bower.json │ ├── switchery │ │ └── meteor │ │ │ ├── export.js │ │ │ └── tests.js │ ├── animate.css │ │ └── bower.json │ ├── fastclick │ │ └── bower.json │ ├── flot.curvedlines │ │ └── bower.json │ ├── google-code-prettify │ │ └── bower.json │ ├── fullcalendar │ │ └── README.md │ ├── jquery-mousewheel │ │ └── bower.json │ ├── datatables.net-fixedheader-bs │ │ └── css │ │ │ └── fixedHeader.bootstrap.min.css │ ├── mocha │ │ └── bower.json │ └── dropzone │ │ └── dist │ │ └── readme.md └── fonts │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── less │ ├── fixed-width.less │ └── bordered-pulled.less │ └── scss │ ├── _fixed-width.scss │ └── _bordered-pulled.scss ├── system ├── fonts │ ├── texb.ttf │ └── index.html ├── .htaccess ├── index.html ├── core │ ├── index.html │ └── compat │ │ └── index.html ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── cubrid │ │ └── index.html │ │ ├── ibase │ │ └── index.html │ │ ├── mssql │ │ └── index.html │ │ ├── mysql │ │ └── index.html │ │ ├── mysqli │ │ └── index.html │ │ ├── oci8 │ │ └── index.html │ │ ├── odbc │ │ └── index.html │ │ ├── pdo │ │ ├── index.html │ │ └── subdrivers │ │ │ └── index.html │ │ ├── sqlite │ │ └── index.html │ │ ├── sqlsrv │ │ └── index.html │ │ ├── postgre │ │ └── index.html │ │ └── sqlite3 │ │ └── index.html ├── helpers │ └── index.html ├── language │ ├── index.html │ └── english │ │ └── index.html └── libraries │ ├── index.html │ ├── Cache │ ├── index.html │ └── drivers │ │ └── index.html │ ├── Session │ ├── index.html │ └── drivers │ │ └── index.html │ └── Javascript │ └── index.html ├── user_guide ├── objects.inv ├── _static │ ├── down.png │ ├── file.png │ ├── plus.png │ ├── up.png │ ├── minus.png │ ├── ci-icon.ico │ ├── comment.png │ ├── ajax-loader.gif │ ├── up-pressed.png │ ├── comment-bright.png │ ├── comment-close.png │ ├── down-pressed.png │ ├── images │ │ └── ci-icon.ico │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff ├── _images │ ├── smile.gif │ └── appflowchart.gif ├── _downloads │ └── ELDocs.tmbundle.zip └── .buildinfo └── application ├── .htaccess ├── cache ├── .htaccess └── index.html ├── views ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_general.php │ │ ├── error_db.php │ │ └── index.html │ ├── index.html │ └── html │ │ └── index.html └── index.html ├── index.html ├── config └── index.html ├── core └── index.html ├── helpers └── index.html ├── hooks └── index.html ├── language ├── index.html └── english │ └── index.html ├── logs └── index.html ├── models ├── index.html ├── Store.php └── Member_store.php ├── controllers └── index.html ├── libraries └── index.html └── third_party └── index.html /static/script/cropper/src/js/outro.js: -------------------------------------------------------------------------------- 1 | }); 2 | -------------------------------------------------------------------------------- /static/script/ion.rangeSlider/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /static/script/jquery-knob/.gitignore: -------------------------------------------------------------------------------- 1 | nbproject/ -------------------------------------------------------------------------------- /static/script/parsleyjs/CNAME: -------------------------------------------------------------------------------- 1 | parsleyjs.org 2 | -------------------------------------------------------------------------------- /static/script/skycons/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /static/script/jquery-sparkline/version.txt: -------------------------------------------------------------------------------- 1 | 2.1.3 2 | -------------------------------------------------------------------------------- /static/script/Chart.js/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /static/script/autosize/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | test/* -------------------------------------------------------------------------------- /static/script/select2/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | dist 3 | -------------------------------------------------------------------------------- /static/script/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /static/script/bootstrap-daterangepicker/example/browserify/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/script/jquery-sparkline/src/footer.js: -------------------------------------------------------------------------------- 1 | }))}(document, Math)); 2 | -------------------------------------------------------------------------------- /static/script/normalize-css/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /static/script/Flot/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /static/script/Flot/.gitignore: -------------------------------------------------------------------------------- 1 | *.min.js 2 | !excanvas.min.js 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /static/script/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /static/script/normalize-css/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - stable 4 | -------------------------------------------------------------------------------- /static/script/raphael/dev/test/vml/dom.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | module('DOM'); 4 | 5 | })(); -------------------------------------------------------------------------------- /static/script/select2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/js/i18n/build.txt 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /static/script/echarts/extension/echarts.js: -------------------------------------------------------------------------------- 1 | define('echarts', [], function () {return echarts;}); -------------------------------------------------------------------------------- /static/script/echarts/src/chart/graph/backwardCompat.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | }); -------------------------------------------------------------------------------- /static/script/jqvmap/grunt/qunit.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: ['tests/*.html'] 3 | }; 4 | -------------------------------------------------------------------------------- /static/script/Chart.js/config.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | "predef": [ "require", "module" ] 4 | } -------------------------------------------------------------------------------- /static/script/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\?/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\S+/g ); 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/jqvmap/grunt/clean.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: [ 3 | "dist/*.js" 4 | ] 5 | }; 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/system/fonts/texb.ttf -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/objects.inv -------------------------------------------------------------------------------- /static/script/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^margin/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/up.png -------------------------------------------------------------------------------- /static/script/ion.rangeSlider/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | PSD 3 | bower.json 4 | ion-rangeSlider.jquery.json 5 | readme.ru.md -------------------------------------------------------------------------------- /static/script/jquery.easy-pie-chart/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | .grunt 4 | _SpecRunner.html 5 | -------------------------------------------------------------------------------- /static/script/jquery.easy-pie-chart/docs/test.md: -------------------------------------------------------------------------------- 1 | To run the test just use the karma adapter of grunt: `grunt test` 2 | -------------------------------------------------------------------------------- /static/script/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /<([\w:-]+)/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/pnotify/dist/pnotify.buttons.css: -------------------------------------------------------------------------------- 1 | .ui-pnotify-closer,.ui-pnotify-sticker{float:right;margin-left:.2em} -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/minus.png -------------------------------------------------------------------------------- /static/script/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/morris.js/examples/lib/example.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | eval($('#code').text()); 3 | prettyPrint(); 4 | }); -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/comment.png -------------------------------------------------------------------------------- /static/fonts/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/fonts/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/script/gauge.js/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/favicon.ico -------------------------------------------------------------------------------- /static/script/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /static/script/requirejs/README.md: -------------------------------------------------------------------------------- 1 | # requirejs-bower 2 | 3 | Bower packaging for [RequireJS](http://requirejs.org). 4 | 5 | -------------------------------------------------------------------------------- /static/script/select2/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | indent_style = space 3 | end_of_line = lf 4 | 5 | [*.js] 6 | indent_size = 2 7 | -------------------------------------------------------------------------------- /static/script/select2/.jshintignore: -------------------------------------------------------------------------------- 1 | src/js/banner.*.js 2 | src/js/wrapper.*.js 3 | tests/vendor/*.js 4 | tests/helpers.js 5 | -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /static/script/cropper/src/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/cropper/src/img/bg.png -------------------------------------------------------------------------------- /static/script/echarts/asset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/echarts/asset/logo.png -------------------------------------------------------------------------------- /static/script/gauge.js/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/bg.png -------------------------------------------------------------------------------- /static/script/gauge.js/assets/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/hs.png -------------------------------------------------------------------------------- /static/script/gauge.js/assets/hv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/hv.png -------------------------------------------------------------------------------- /static/script/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/locale/pre-post-format.js: -------------------------------------------------------------------------------- 1 | export function preParsePostFormat (string) { 2 | return string; 3 | } 4 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/images/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/images/ci-icon.ico -------------------------------------------------------------------------------- /static/script/gauge.js/assets/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/arrow.gif -------------------------------------------------------------------------------- /static/script/gauge.js/assets/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/cross.gif -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/red.png -------------------------------------------------------------------------------- /static/script/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^(?:checkbox|radio)$/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^$|\/(?:java|ecma)script/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /static/script/jqvmap/grunt/index.js: -------------------------------------------------------------------------------- 1 | var requireDirectory = require("require-directory"); 2 | module.exports = requireDirectory(module); -------------------------------------------------------------------------------- /static/script/moment/src/lib/moment/now.js: -------------------------------------------------------------------------------- 1 | export var now = function () { 2 | return Date.now ? Date.now() : +(new Date()); 3 | }; 4 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/is-undefined.js: -------------------------------------------------------------------------------- 1 | export default function isUndefined(input) { 2 | return input === void 0; 3 | } 4 | -------------------------------------------------------------------------------- /static/script/morris.js/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | spec/viz/output/ 4 | spec/viz/diff/ 5 | bower_components 6 | .idea 7 | -------------------------------------------------------------------------------- /static/script/pnotify/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | libtests/browserify/node_modules 4 | libtests/browserify/bundle.js -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/_typography.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | h1[id] { 4 | padding-top: 20px; 5 | margin-top: 0; 6 | } 7 | -------------------------------------------------------------------------------- /static/fonts/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/fonts/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/fonts/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/script/Flot/examples/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/Flot/examples/background.png -------------------------------------------------------------------------------- /static/script/eve/README.md: -------------------------------------------------------------------------------- 1 | # Eve 2 | 3 | Tiny event helping JavaScript library. 4 | 5 | MIT Licence 6 | 7 | For use case look at e.html 8 | -------------------------------------------------------------------------------- /static/script/gauge.js/assets/browsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/browsers.png -------------------------------------------------------------------------------- /static/script/gauge.js/assets/github.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/github.gif -------------------------------------------------------------------------------- /static/script/gauge.js/assets/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/preview.jpg -------------------------------------------------------------------------------- /static/script/gauge.js/assets/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/ribbon.png -------------------------------------------------------------------------------- /static/script/gauge.js/assets/strike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/strike.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/aero.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/blue.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/flat.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/green.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/grey.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/orange.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/pink.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/purple.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/line/line.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/red.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/aero.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/blue.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/grey.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/pink.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/red.png -------------------------------------------------------------------------------- /static/script/jquery-knob/secretplan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jquery-knob/secretplan.jpg -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/getPinId.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.getPinId = function (cc) { 2 | return this.getCountryId(cc) + '_pin'; 3 | }; 4 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/isSelected.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.isSelected = function(cc) { 2 | return this.selectIndex(cc) >= 0; 3 | }; 4 | -------------------------------------------------------------------------------- /static/script/moment/templates/globals.js: -------------------------------------------------------------------------------- 1 | /*global window:false*/ 2 | 3 | import moment from "./moment"; 4 | 5 | window.moment = moment; 6 | -------------------------------------------------------------------------------- /static/script/select2/docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/logo.png -------------------------------------------------------------------------------- /user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/fonts/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/script/Flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /static/script/echarts/.npmignore: -------------------------------------------------------------------------------- 1 | /build 2 | /test 3 | /map/tool 4 | /theme/tool 5 | /theme/thumb 6 | todo 7 | npm-debug.log 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/script/gauge.js/assets/crosshair.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/gauge.js/assets/crosshair.gif -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/green.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/green.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/orange.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/purple.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/red@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/square.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/yellow.png -------------------------------------------------------------------------------- /static/script/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/tip.png -------------------------------------------------------------------------------- /static/script/nprogress/support/extras.css: -------------------------------------------------------------------------------- 1 | /* Make the entire page show a busy cursor */ 2 | .nprogress-busy body { 3 | cursor: wait; 4 | } 5 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/script/bootstrap-daterangepicker/drp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/bootstrap-daterangepicker/drp.png -------------------------------------------------------------------------------- /static/script/echarts/src/chart/gauge.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | require('./gauge/GaugeSeries'); 3 | require('./gauge/GaugeView'); 4 | }); -------------------------------------------------------------------------------- /static/script/fontawesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/fontawesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/aero@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/blue@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/green@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/grey@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/minimal.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/pink@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/polaris/polaris.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/green@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/orange@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/purple@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/square@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/square/yellow@2x.png -------------------------------------------------------------------------------- /static/script/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/flag.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/globe.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/thumb.jpg -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/getCountryId.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.getCountryId = function (cc) { 2 | return 'jqvmap' + this.index + '_' + cc; 3 | }; 4 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/removePins.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.removePins = function(){ 2 | this.container.find('.jqvmap-pin').remove(); 3 | }; 4 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /static/script/select2/docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/favicon.ico -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /static/script/Flot/examples/navigate/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/Flot/examples/navigate/arrow-up.gif -------------------------------------------------------------------------------- /static/script/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/script/iCheck/skins/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/futurico/futurico.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/minimal@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/orange@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/purple@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/minimal/yellow@2x.png -------------------------------------------------------------------------------- /static/script/iCheck/skins/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/polaris/polaris@2x.png -------------------------------------------------------------------------------- /static/script/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./document" 3 | ], function( document ) { 4 | return document.documentElement; 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/setScale.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.setScale = function (scale) { 2 | this.scale = scale; 3 | this.applyTransform(); 4 | }; 5 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /static/script/pnotify/dist/pnotify.nonblock.css: -------------------------------------------------------------------------------- 1 | .ui-pnotify.ui-pnotify-nonblock-fade{opacity:.2}.ui-pnotify.ui-pnotify-nonblock-hide{display:none!important} -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/script/Flot/examples/navigate/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/Flot/examples/navigate/arrow-down.gif -------------------------------------------------------------------------------- /static/script/Flot/examples/navigate/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/Flot/examples/navigate/arrow-left.gif -------------------------------------------------------------------------------- /static/script/Flot/examples/navigate/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/Flot/examples/navigate/arrow-right.gif -------------------------------------------------------------------------------- /static/script/iCheck/skins/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/iCheck/skins/futurico/futurico@2x.png -------------------------------------------------------------------------------- /static/script/jQuery-Smart-Wizard/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jQuery-Smart-Wizard/images/loader.gif -------------------------------------------------------------------------------- /static/script/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // All support tests are defined in their respective modules. 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/background.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/marker/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/marker/blue.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/marker/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/marker/grey.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/marker/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/marker/red.png -------------------------------------------------------------------------------- /static/script/moment/src/lib/locale/constructor.js: -------------------------------------------------------------------------------- 1 | export function Locale(config) { 2 | if (config != null) { 3 | this.set(config); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/moment/clone.js: -------------------------------------------------------------------------------- 1 | import { Moment } from './constructor'; 2 | 3 | export function clone () { 4 | return new Moment(this); 5 | } 6 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/has-own-prop.js: -------------------------------------------------------------------------------- 1 | export default function hasOwnProp(a, b) { 2 | return Object.prototype.hasOwnProperty.call(a, b); 3 | } 4 | -------------------------------------------------------------------------------- /static/script/morris.js/spec/viz/exemplary/area0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/morris.js/spec/viz/exemplary/area0.png -------------------------------------------------------------------------------- /static/script/morris.js/spec/viz/exemplary/bar0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/morris.js/spec/viz/exemplary/bar0.png -------------------------------------------------------------------------------- /static/script/morris.js/spec/viz/exemplary/line0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/morris.js/spec/viz/exemplary/line0.png -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /static/script/select2/docs/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/favicon-16x16.png -------------------------------------------------------------------------------- /static/script/select2/docs/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/favicon-32x32.png -------------------------------------------------------------------------------- /static/script/select2/docs/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/mstile-150x150.png -------------------------------------------------------------------------------- /static/script/select2/docs/images/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/mstile-310x150.png -------------------------------------------------------------------------------- /static/script/select2/docs/images/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/mstile-70x70.png -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /static/script/echarts/src/chart/heatmap.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | require('./heatmap/HeatmapSeries'); 4 | require('./heatmap/HeatmapView'); 5 | }); -------------------------------------------------------------------------------- /static/script/ion.rangeSlider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/ion.rangeSlider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /static/script/ion.rangeSlider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/ion.rangeSlider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /static/script/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // Match a standalone tag 4 | return ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/marker/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/marker/black.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/marker/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/marker/green.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/marker/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/marker/orange.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/marker/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/marker/purple.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/marker/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/marker/white.png -------------------------------------------------------------------------------- /static/script/jqvmap/examples/images/marker/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/jqvmap/examples/images/marker/yellow.png -------------------------------------------------------------------------------- /static/script/select2/docs/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/apple-touch-icon.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ak.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/al.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ar.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/az.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ca.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/co.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ct.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/de.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/fl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/fl.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ga.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/hi.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ia.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/id.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/il.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/in.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ks.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ky.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/la.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ma.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/md.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/me.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/mi.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/mn.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/mo.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ms.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/mt.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/nc.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/nd.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ne.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/nh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/nh.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/nj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/nj.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/nm.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/nv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/nv.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ny.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/oh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/oh.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ok.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/or.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/pa.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ri.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/sc.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/sd.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/tn.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/tx.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/ut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/ut.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/va.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/vt.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/wa.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/wi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/wi.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/wv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/wv.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/images/flags/wy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/images/flags/wy.png -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /static/script/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 | -------------------------------------------------------------------------------- /static/script/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/script/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/script/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/script/fontawesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/fontawesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/script/fontawesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/fontawesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/script/fontawesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/fontawesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/script/fontawesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/fontawesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/script/ion.rangeSlider/img/sprite-skin-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/ion.rangeSlider/img/sprite-skin-modern.png -------------------------------------------------------------------------------- /static/script/ion.rangeSlider/img/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/ion.rangeSlider/img/sprite-skin-simple.png -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/getPin.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.getPin = function(cc){ 2 | var pinObj = jQuery('#' + this.getPinId(cc)); 3 | return pinObj.html(); 4 | }; 5 | -------------------------------------------------------------------------------- /static/script/moment/templates/amd.js: -------------------------------------------------------------------------------- 1 | /*global define:false*/ 2 | 3 | import moment from "./moment"; 4 | 5 | define([], function () { 6 | return moment; 7 | }); 8 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/script/Flot/examples/axes-time-zones/tz/southamerica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/Flot/examples/axes-time-zones/tz/southamerica -------------------------------------------------------------------------------- /static/script/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/removePin.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.removePin = function(cc) { 2 | cc = cc.toLowerCase(); 3 | jQuery('#' + this.getPinId(cc)).remove(); 4 | }; 5 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/is-object.js: -------------------------------------------------------------------------------- 1 | export default function isObject(input) { 2 | return Object.prototype.toString.call(input) === '[object Object]'; 3 | } 4 | -------------------------------------------------------------------------------- /static/script/morris.js/spec/viz/exemplary/stacked_bar0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/morris.js/spec/viz/exemplary/stacked_bar0.png -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /static/script/select2/docs/images/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/android-chrome-36x36.png -------------------------------------------------------------------------------- /static/script/select2/docs/images/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/android-chrome-48x48.png -------------------------------------------------------------------------------- /static/script/select2/docs/images/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/android-chrome-72x72.png -------------------------------------------------------------------------------- /static/fonts/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/script/Flot/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.3", 4 | "main": "jquery.flot.js", 5 | "dependencies": { 6 | "jquery": ">= 1.2.6" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /static/script/Flot/examples/image/hs-2004-27-a-large-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/Flot/examples/image/hs-2004-27-a-large-web.jpg -------------------------------------------------------------------------------- /static/script/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/script/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/script/echarts/src/component/radiusAxis.js: -------------------------------------------------------------------------------- 1 | define(function(require) { 2 | 3 | require('../coord/polar/polarCreator'); 4 | 5 | require('./axis/RadiusAxisView'); 6 | }); -------------------------------------------------------------------------------- /static/script/ion.rangeSlider/_tmp/logo-ion-range-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/ion.rangeSlider/_tmp/logo-ion-range-slider.png -------------------------------------------------------------------------------- /static/script/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | } ); 6 | -------------------------------------------------------------------------------- /static/script/malihu-custom-scrollbar-plugin/mCSB_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/malihu-custom-scrollbar-plugin/mCSB_buttons.png -------------------------------------------------------------------------------- /static/script/moment/src/lib/locale/invalid.js: -------------------------------------------------------------------------------- 1 | export var defaultInvalidDate = 'Invalid date'; 2 | 3 | export function invalidDate () { 4 | return this._invalidDate; 5 | } 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /static/script/select2/docs/images/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /static/script/select2/docs/images/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /static/script/select2/docs/images/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /static/script/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/script/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/script/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /static/script/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /static/script/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /static/script/moment/templates/amd-named.js: -------------------------------------------------------------------------------- 1 | /*global define:false*/ 2 | 3 | import moment from "./moment"; 4 | 5 | define("moment", [], function () { 6 | return moment; 7 | }); 8 | -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/script/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/script/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/script/echarts/test/ut/lib/jasmine-2.3.4/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/echarts/test/ut/lib/jasmine-2.3.4/jasmine_favicon.png -------------------------------------------------------------------------------- /static/script/echarts/test/ut/spec/ui/config.js: -------------------------------------------------------------------------------- 1 | require.config({ 2 | paths: { 3 | 'oldEcharts': 'tmp/oldEcharts', 4 | 'newEcharts': 'tmp/newEcharts' 5 | } 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/script/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/script/fontawesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/script/fontawesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/script/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | } ); 7 | -------------------------------------------------------------------------------- /static/script/select2/docs/images/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/images/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /static/script/select2/docs/vendor/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/select2/docs/vendor/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/script/select2/src/js/jquery.mousewheel.shim.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'jquery' 3 | ], function ($) { 4 | // Used to shim jQuery.mousewheel for non-full builds. 5 | return $; 6 | }); 7 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/script/echarts/test/reset.css: -------------------------------------------------------------------------------- 1 | html, 2 | body, 3 | #main, 4 | body > .main { 5 | width: 100%; 6 | height: 100%; 7 | margin: 0; 8 | padding: 0; 9 | font-family: arial; 10 | } 11 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/is-function.js: -------------------------------------------------------------------------------- 1 | export default function isFunction(input) { 2 | return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]'; 3 | } 4 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/axis.js: -------------------------------------------------------------------------------- 1 | // TODO boundaryGap 2 | define(function(require) { 3 | 'use strict'; 4 | 5 | require('../coord/cartesian/AxisModel'); 6 | 7 | require('./axis/AxisView'); 8 | }); -------------------------------------------------------------------------------- /static/script/echarts/src/component/dataZoom/SelectZoomView.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | return require('./DataZoomView').extend({ 4 | 5 | type: 'dataZoom.select' 6 | 7 | }); 8 | 9 | }); -------------------------------------------------------------------------------- /static/script/echarts/src/component/radar.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | require('../coord/radar/Radar'); 4 | require('../coord/radar/RadarModel'); 5 | 6 | require('./radar/RadarView'); 7 | }); -------------------------------------------------------------------------------- /static/script/jqvmap/grunt/shell.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | lint: { 3 | command: "node_modules/.bin/eslint src --quiet && echo '\033[0;32m\n✓ All Good\033[0m ٩(ˊᗜˋ*)و'", 4 | stdout: false 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/parsleyjs/dist/i18n/zh_cn.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | // Load this after Parsley 3 | 4 | Parsley.addMessages('zh-cn', { 5 | dateiso: "请输入正确格式的日期 (YYYY-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/script/select2/src/js/banner.end.js: -------------------------------------------------------------------------------- 1 | // Return the AMD loader configuration so it can be used outside of this file 2 | return { 3 | define: S2.define, 4 | require: S2.require 5 | }; 6 | }()); 7 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /static/script/parsleyjs/dist/i18n/id.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | // Load this after Parsley 3 | 4 | Parsley.addMessages('id', { 5 | dateiso: "Harus tanggal yang valid (YYYY-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/parsleyjs/dist/i18n/it.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | // Load this after Parsley 3 | 4 | Parsley.addMessages('it', { 5 | dateiso: "Inserire una data valida (AAAA-MM-GG)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/parsleyjs/dist/i18n/sv.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | // Load this after Parsley 3 | 4 | Parsley.addMessages('sv', { 5 | dateiso: "Ange ett giltigt datum (ÅÅÅÅ-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/i18n/zh_cn.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | import Parsley from '../parsley'; 3 | 4 | Parsley.addMessages('zh-cn', { 5 | dateiso: "请输入正确格式的日期 (YYYY-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/select2/docs/_includes/options/events.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Events 4 |

5 | 6 | {% include options/events/jquery.html %} 7 | {% include options/events/internal.html %} 8 |
-------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/script/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 | -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/visualMap.js: -------------------------------------------------------------------------------- 1 | /** 2 | * visualMap component entry 3 | */ 4 | define(function (require) { 5 | 6 | require('./visualMapContinuous'); 7 | require('./visualMapPiecewise'); 8 | 9 | }); -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/map.js: -------------------------------------------------------------------------------- 1 | export default function map(arr, fn) { 2 | var res = [], i; 3 | for (i = 0; i < arr.length; ++i) { 4 | res.push(fn(arr[i], i)); 5 | } 6 | return res; 7 | } 8 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/i18n/sv.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | import Parsley from '../parsley'; 3 | 4 | Parsley.addMessages('sv', { 5 | dateiso: "Ange ett giltigt datum (ÅÅÅÅ-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/singleAxis.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | require('../coord/single/singleCreator'); 4 | require('./axis/SingleAxisView'); 5 | require('../coord/single/AxisModel'); 6 | 7 | }); -------------------------------------------------------------------------------- /static/script/jquery.tagsinput/grunt-tasks/assets_production.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | grunt.registerTask('assets:production', 3 | [ 4 | 'cssmin:plugin', 5 | 'uglify:plugin' 6 | ]); 7 | }; 8 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/setScaleColors.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.setScaleColors = function (colors) { 2 | this.colorScale.setColors(colors); 3 | 4 | if (this.values) { 5 | this.setValues(this.values); 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /static/script/jszip/lib/nodeBuffer.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function(data, encoding){ 3 | return new Buffer(data, encoding); 4 | }; 5 | module.exports.test = function(b){ 6 | return Buffer.isBuffer(b); 7 | }; 8 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/abs-ceil.js: -------------------------------------------------------------------------------- 1 | export default function absCeil (number) { 2 | if (number < 0) { 3 | return Math.floor(number); 4 | } else { 5 | return Math.ceil(number); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/abs-floor.js: -------------------------------------------------------------------------------- 1 | export default function absFloor (number) { 2 | if (number < 0) { 3 | return Math.ceil(number); 4 | } else { 5 | return Math.floor(number); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /static/script/parsleyjs/dist/i18n/he.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | // Load this after Parsley 3 | 4 | Parsley.addMessages('he', { 5 | dateiso: "ערך זה צריך להיות תאריך בפורמט (YYYY-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/i18n/id.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | import Parsley from '../parsley'; 3 | 4 | Parsley.addMessages('id', { 5 | dateiso: "Harus tanggal yang valid (YYYY-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/i18n/it.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | import Parsley from '../parsley'; 3 | 4 | Parsley.addMessages('it', { 5 | dateiso: "Inserire una data valida (AAAA-MM-GG)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | @mixin center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /static/script/starrr/dist/starrr.css: -------------------------------------------------------------------------------- 1 | .starrr { 2 | display: inline-block; } 3 | .starrr a { 4 | font-size: 16px; 5 | padding: 0 1px; 6 | cursor: pointer; 7 | color: #FFD119; 8 | text-decoration: none; } 9 | -------------------------------------------------------------------------------- /static/script/switchery/meteor/export.js: -------------------------------------------------------------------------------- 1 | /*global Switchery:true*/ // Meteor creates a file-scope global for exporting. This comment prevents a potential JSHint warning. 2 | Switchery = window.Switchery; 3 | delete window.Switchery; -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusinBubbles = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/i18n/he.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | import Parsley from '../parsley'; 3 | 4 | Parsley.addMessages('he', { 5 | dateiso: "ערך זה צריך להיות תאריך בפורמט (YYYY-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/script/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 | -------------------------------------------------------------------------------- /static/script/Flot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.3", 4 | "main": "jquery.flot.js", 5 | "scripts": { 6 | "test": "make test" 7 | }, 8 | "devDependencies": { 9 | "jshint": "0.9.1" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/parallelAxis.js: -------------------------------------------------------------------------------- 1 | define(function(require) { 2 | 3 | require('../coord/parallel/parallelCreator'); 4 | require('./axis/parallelAxisAction'); 5 | require('./axis/ParallelAxisView'); 6 | 7 | }); -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/rgbToArray.js: -------------------------------------------------------------------------------- 1 | ColorScale.rgbToArray = function (rgb) { 2 | rgb = rgb.substr(1); 3 | return [parseInt(rgb.substr(0, 2), 16), parseInt(rgb.substr(2, 2), 16), parseInt(rgb.substr(4, 2), 16)]; 4 | }; 5 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/setNormalizeFunction.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.setNormalizeFunction = function (f) { 2 | this.colorScale.setNormalizeFunction(f); 3 | 4 | if (this.values) { 5 | this.setValues(this.values); 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/locale/ordinal.js: -------------------------------------------------------------------------------- 1 | export var defaultOrdinal = '%d'; 2 | export var defaultOrdinalParse = /\d{1,2}/; 3 | 4 | export function ordinal (number) { 5 | return this._ordinal.replace('%d', number); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/abs-round.js: -------------------------------------------------------------------------------- 1 | export default function absRound (number) { 2 | if (number < 0) { 3 | return Math.round(-1 * number) * -1; 4 | } else { 5 | return Math.round(number); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /static/script/morris.js/spec/support/placeholder.coffee: -------------------------------------------------------------------------------- 1 | beforeEach -> 2 | placeholder = $('
') 3 | $('#test').append(placeholder) 4 | 5 | afterEach -> 6 | $('#test').empty() 7 | -------------------------------------------------------------------------------- /static/script/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 | -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /static/script/moment/src/lib/create/local.js: -------------------------------------------------------------------------------- 1 | import { createLocalOrUTC } from './from-anything'; 2 | 3 | export function createLocal (input, format, locale, strict) { 4 | return createLocalOrUTC(input, format, locale, strict, false); 5 | } 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/parsleyjs/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/parsleyjs/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/sinonjs/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sinonjs", 3 | "version": "1.7.3", 4 | "main": "sinon.js", 5 | "ignore": [ 6 | "**/.*", 7 | "node_modules", 8 | "components" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /static/script/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 | -------------------------------------------------------------------------------- /static/script/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 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/setColors.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.setColors = function (colors) { 2 | for (var i = 0; i < colors.length; i++) { 3 | colors[i] = ColorScale.rgbToArray(colors[i]); 4 | } 5 | this.colors = colors; 6 | }; 7 | -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/mjolnic-bootstrap-colorpicker/dist/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/docs/includes/examples/01_basic.hbs: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/create/utc.js: -------------------------------------------------------------------------------- 1 | import { createLocalOrUTC } from './from-anything'; 2 | 3 | export function createUTC (input, format, locale, strict) { 4 | return createLocalOrUTC(input, format, locale, strict, true).utc(); 5 | } 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhos/CI-tineeplat/master/static/script/parsleyjs/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: alpha(opacity=$opacity-ie); 8 | } 9 | -------------------------------------------------------------------------------- /static/script/Chart.js/src/charts/Chart.Bar.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.Bar = function(context, config) { 6 | config.type = 'bar'; 7 | 8 | return new Chart(context, config); 9 | }; 10 | 11 | }; -------------------------------------------------------------------------------- /static/script/animate.css/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "animate.css", 3 | "main": "./animate.css", 4 | "ignore": [ 5 | ".*", 6 | "source", 7 | "*.yml", 8 | "Gemfile", 9 | "Gemfile.lock", 10 | "*.md" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/vectorMult.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorMult = function (vector, num) { 2 | var result = []; 3 | for (var i = 0; i < vector.length; i++) { 4 | result[i] = vector[i] * num; 5 | } 6 | return result; 7 | }; 8 | -------------------------------------------------------------------------------- /static/script/parsleyjs/dist/i18n/fi.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | // Load this after Parsley 3 | 4 | Parsley.addMessages('fi', { 5 | dateiso: "Syötä oikea päivämäärä (YYYY-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/Chart.js/.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = tab 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = false 11 | -------------------------------------------------------------------------------- /static/script/Chart.js/src/charts/Chart.Bubble.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.Bubble = function(context, config) { 6 | config.type = 'bubble'; 7 | return new Chart(context, config); 8 | }; 9 | 10 | }; -------------------------------------------------------------------------------- /static/script/Chart.js/src/charts/Chart.Line.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.Line = function(context, config) { 6 | config.type = 'line'; 7 | 8 | return new Chart(context, config); 9 | }; 10 | 11 | }; -------------------------------------------------------------------------------- /static/script/parsleyjs/src/i18n/fi.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | import Parsley from '../parsley'; 3 | 4 | Parsley.addMessages('fi', { 5 | dateiso: "Syötä oikea päivämäärä (YYYY-MM-DD)." 6 | }); 7 | -------------------------------------------------------------------------------- /static/script/select2/docs/_includes/options/data.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Data adapters 4 |

5 | 6 | {% include options/data/select.html %} 7 | {% include options/data/array.html %} 8 | {% include options/data/ajax.html %} 9 |
-------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/vectorAdd.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorAdd = function (vector1, vector2) { 2 | var vector = []; 3 | for (var i = 0; i < vector1.length; i++) { 4 | vector[i] = vector1[i] + vector2[i]; 5 | } 6 | return vector; 7 | }; 8 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height) { 4 | width: $width; 5 | height: $height; 6 | } 7 | 8 | @mixin square($size) { 9 | @include size($size, $size); 10 | } 11 | -------------------------------------------------------------------------------- /user_guide/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 9084e5b3e4024bfc21ed8ac35abea75b 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /static/script/Chart.js/src/charts/Chart.Doughnut.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.Doughnut = function(context, config) { 6 | config.type = 'doughnut'; 7 | 8 | return new Chart(context, config); 9 | }; 10 | 11 | }; -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/timeline/typeDefaulter.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | require('../../model/Component').registerSubTypeDefaulter('timeline', function () { 4 | // Only slider now. 5 | return 'slider'; 6 | }); 7 | 8 | }); -------------------------------------------------------------------------------- /static/script/fastclick/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fastclick", 3 | "main": "lib/fastclick.js", 4 | "ignore": [ 5 | "**/.*", 6 | "component.json", 7 | "package.json", 8 | "Makefile", 9 | "tests", 10 | "examples" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/vectorLength.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorLength = function (vector) { 2 | var result = 0; 3 | for (var i = 0; i < vector.length; i++) { 4 | result += vector[i] * vector[i]; 5 | } 6 | return Math.sqrt(result); 7 | }; 8 | -------------------------------------------------------------------------------- /static/script/morris.js/examples/lib/example.css: -------------------------------------------------------------------------------- 1 | body { 2 | width: 800px; 3 | margin: 0 auto; 4 | } 5 | #graph { 6 | width: 800px; 7 | height: 250px; 8 | margin: 20px auto 0 auto; 9 | } 10 | pre { 11 | height: 250px; 12 | overflow: auto; 13 | } 14 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/_layout.scss: -------------------------------------------------------------------------------- 1 | // Layout 2 | 3 | .s2-docs-container { 4 | line-height: 1.6; 5 | } 6 | 7 | section { 8 | margin-bottom: 40px; 9 | } 10 | 11 | .page-header { 12 | padding-bottom: 19px; 13 | margin-bottom: 29px; 14 | } 15 | -------------------------------------------------------------------------------- /static/script/Chart.js/src/charts/Chart.PolarArea.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.PolarArea = function(context, config) { 6 | config.type = 'polarArea'; 7 | 8 | return new Chart(context, config); 9 | }; 10 | 11 | }; -------------------------------------------------------------------------------- /static/script/echarts/index.simple.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Export echarts as CommonJS module 3 | */ 4 | module.exports = require('./lib/echarts'); 5 | 6 | require('./lib/chart/line'); 7 | require('./lib/chart/bar'); 8 | require('./lib/chart/pie'); 9 | require('./lib/component/grid'); -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/vectorSubtract.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorSubtract = function (vector1, vector2) { 2 | var vector = []; 3 | for (var i = 0; i < vector1.length; i++) { 4 | vector[i] = vector1[i] - vector2[i]; 5 | } 6 | return vector; 7 | }; 8 | -------------------------------------------------------------------------------- /static/script/select2/docs/_includes/options/core.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Core options 4 |

5 | 6 | {% include options/core/options.html %} 7 | {% include options/core/data-attributes.html %} 8 | {% include options/core/amd-support.html %} 9 |
-------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /static/script/jquery.tagsinput/grunt-tasks/options/uglify.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | options: { 3 | mangle: true 4 | }, 5 | plugin: { 6 | files: { 7 | 'dist/jquery.tagsinput.min.js': ['src/jquery.tagsinput.js'] 8 | } 9 | } 10 | }; 11 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/setMax.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.setMax = function (max) { 2 | this.clearMaxValue = max; 3 | if (typeof this.normalize === 'function') { 4 | this.maxValue = this.normalize(max); 5 | } else { 6 | this.maxValue = max; 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | @mixin tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /static/script/jquery/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "main": "dist/jquery.js", 4 | "license": "MIT", 5 | "ignore": [ 6 | "package.json" 7 | ], 8 | "keywords": [ 9 | "jquery", 10 | "javascript", 11 | "browser", 12 | "library" 13 | ] 14 | } -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/vectorToNum.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorToNum = function (vector) { 2 | var num = 0; 3 | for (var i = 0; i < vector.length; i++) { 4 | num += Math.round(vector[i]) * Math.pow(256, vector.length - i - 1); 5 | } 6 | return num; 7 | }; 8 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/arrayToRgb.js: -------------------------------------------------------------------------------- 1 | ColorScale.arrayToRgb = function (ar) { 2 | var rgb = '#'; 3 | var d; 4 | for (var i = 0; i < ar.length; i++) { 5 | d = ar[i].toString(16); 6 | rgb += d.length === 1 ? '0' + d : d; 7 | } 8 | return rgb; 9 | }; 10 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/moment/creation-data.js: -------------------------------------------------------------------------------- 1 | export function creationData() { 2 | return { 3 | input: this._i, 4 | format: this._f, 5 | locale: this._locale, 6 | isUTC: this._isUTC, 7 | strict: this._strict 8 | }; 9 | } 10 | -------------------------------------------------------------------------------- /static/script/normalize-css/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 2 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /static/script/parsleyjs/dist/i18n/fr.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | // Load this after Parsley 3 | 4 | Parsley.addMessages('fr', { 5 | dateiso: "Cette valeur n'est pas une date valide (YYYY-MM-DD).", 6 | notequalto: "Cette valeur doit être différente." 7 | }); 8 | -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /static/script/jquery.tagsinput/grunt-tasks/options/cssmin.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | options: { 3 | shorthandCompacting: false 4 | }, 5 | plugin: { 6 | files: { 7 | 'dist/jquery.tagsinput.min.css': ['src/jquery.tagsinput.css'] 8 | } 9 | } 10 | }; 11 | -------------------------------------------------------------------------------- /static/script/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | } ); 12 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/ColorScale/setMin.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.setMin = function (min) { 2 | this.clearMinValue = min; 3 | 4 | if (typeof this.normalize === 'function') { 5 | this.minValue = this.normalize(min); 6 | } else { 7 | this.minValue = min; 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/units/constants.js: -------------------------------------------------------------------------------- 1 | export var YEAR = 0; 2 | export var MONTH = 1; 3 | export var DATE = 2; 4 | export var HOUR = 3; 5 | export var MINUTE = 4; 6 | export var SECOND = 5; 7 | export var MILLISECOND = 6; 8 | export var WEEK = 7; 9 | export var WEEKDAY = 8; 10 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | @mixin label-variant($color) { 4 | background-color: $color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken($color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | resize: $direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /static/script/starrr/src/starrr.scss: -------------------------------------------------------------------------------- 1 | $starrrColor: #FFD119 !default; 2 | 3 | .starrr { 4 | display: inline-block; 5 | 6 | a { 7 | font-size: 16px; 8 | padding: 0 1px; 9 | cursor: pointer; 10 | color: $starrrColor; 11 | text-decoration: none; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/dataZoom/typeDefaulter.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | require('../../model/Component').registerSubTypeDefaulter('dataZoom', function (option) { 4 | // Default 'slider' when no type specified. 5 | return 'slider'; 6 | }); 7 | 8 | }); -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/defaults.js: -------------------------------------------------------------------------------- 1 | // Pick the first defined of two or three arguments. 2 | export default function defaults(a, b, c) { 3 | if (a != null) { 4 | return a; 5 | } 6 | if (b != null) { 7 | return b; 8 | } 9 | return c; 10 | } 11 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/i18n/fr.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | import Parsley from '../parsley'; 3 | 4 | Parsley.addMessages('fr', { 5 | dateiso: "Cette valeur n'est pas une date valide (YYYY-MM-DD).", 6 | notequalto: "Cette valeur doit être différente." 7 | }); 8 | -------------------------------------------------------------------------------- /static/script/pnotify/dist/pnotify.tooltip.js: -------------------------------------------------------------------------------- 1 | !function(e,o){"function"==typeof define&&define.amd?define("pnotify.tooltip",["jquery","pnotify"],o):"object"==typeof exports&&"undefined"!=typeof module?module.exports=o(require("jquery"),require("./pnotify")):o(e.jQuery,e.PNotify)}(this,function(e,o){}); -------------------------------------------------------------------------------- /static/script/bootstrap-daterangepicker/example/browserify/README.md: -------------------------------------------------------------------------------- 1 | # Browserify example 2 | 3 | Two steps need to be done for this to work 4 | 5 | In the project root 6 | 7 | npm install 8 | 9 | In this folder 10 | 11 | ../../node_modules/.bin/browserify main.js -o bundle.js 12 | -------------------------------------------------------------------------------- /static/script/jquery.easy-pie-chart/docs/browser-support.md: -------------------------------------------------------------------------------- 1 | Native support 2 | 3 | * Chrome 4 | * Safari 5 | * FireFox 6 | * Opera 7 | * Internet Explorer 9+ 8 | 9 | Support for Internet Explorer 7 and 8 with [excanvas](https://code.google.com/p/explorercanvas/wiki/Instructions) polyfill. 10 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/selectIndex.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.selectIndex = function (cc) { 2 | cc = cc.toLowerCase(); 3 | for (var i = 0; i < this.selectedRegions.length; i++) { 4 | if (cc === this.selectedRegions[i]) { 5 | return i; 6 | } 7 | } 8 | return -1; 9 | }; 10 | -------------------------------------------------------------------------------- /static/script/select2/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | This pull request includes a 2 | 3 | - [ ] Bug fix 4 | - [ ] New feature 5 | - [ ] Translation 6 | 7 | The following changes were made 8 | 9 | - 10 | - 11 | - 12 | 13 | If this is related to an existing ticket, include a link to it as well. 14 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/unhighlight.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.unhighlight = function (cc, path) { 2 | cc = cc.toLowerCase(); 3 | path = path || jQuery('#' + this.getCountryId(cc))[0]; 4 | path.setOpacity(1); 5 | if (path.currentFillColor) { 6 | path.setFill(path.currentFillColor); 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/dataZoom/SelectZoomModel.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file Data zoom model 3 | */ 4 | define(function(require) { 5 | 6 | var DataZoomModel = require('./DataZoomModel'); 7 | 8 | return DataZoomModel.extend({ 9 | 10 | type: 'dataZoom.select' 11 | 12 | }); 13 | 14 | }); -------------------------------------------------------------------------------- /static/script/echarts/src/component/single.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | require('../coord/single/singleCreator'); 4 | require('./singleAxis'); 5 | 6 | var echarts = require('../echarts'); 7 | 8 | echarts.extendComponentView({ 9 | type: 'single' 10 | }); 11 | 12 | }); -------------------------------------------------------------------------------- /static/script/moment/templates/default.js: -------------------------------------------------------------------------------- 1 | ;(function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | global.moment = factory() 5 | }(this, function () { 'use strict'; 6 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | }); 12 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/parsley.js: -------------------------------------------------------------------------------- 1 | import $ from 'jquery'; 2 | import Parsley from './parsley/main'; 3 | import './parsley/pubsub'; 4 | import './parsley/remote'; 5 | import './i18n/en'; 6 | import inputevent from './vendor/inputevent'; 7 | 8 | inputevent.install(); 9 | 10 | export default Parsley; 11 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/_featurette.scss: -------------------------------------------------------------------------------- 1 | // Homepage featurettes 2 | 3 | .s2-docs-featurette { 4 | color: #777; 5 | padding: 15px 0; 6 | text-align: center; 7 | 8 | h4 { 9 | margin: 30px 0 15px; 10 | } 11 | 12 | .fa { 13 | font-size: 28px; 14 | color: #777; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /static/script/eve/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eve", 3 | "repo": "DmitryBaranovskiy/eve", 4 | "description": "Custom Events", 5 | "version": "0.4.1", 6 | "keywords": ["events"], 7 | "dependencies": {}, 8 | "development": {}, 9 | "main": "eve.js", 10 | "scripts": [ 11 | "eve.js" 12 | ] 13 | } -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/expect.js/Makefile: -------------------------------------------------------------------------------- 1 | 2 | REPORTER = dot 3 | 4 | test: 5 | @./node_modules/.bin/mocha \ 6 | --require ./test/common \ 7 | --reporter $(REPORTER) \ 8 | --growl \ 9 | test/expect.js 10 | 11 | test-browser: 12 | @./node_modules/.bin/serve . 13 | 14 | .PHONY: test 15 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | @mixin progress-bar-variant($color) { 4 | background-color: $color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | @include gradient-striped; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /static/script/select2/src/js/banner.start.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | // Restore the Select2 AMD loader so it can be used 3 | // Needed mostly in the language files, where the loader is not inserted 4 | if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd) { 5 | var S2 = jQuery.fn.select2.amd; 6 | } 7 | -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /static/script/echarts/extension/dataTool/index.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | var echarts = require('echarts'); 3 | echarts.dataTool = { 4 | version: '1.0.0', 5 | gexf: require('./gexf'), 6 | prepareBoxplotData: require('./prepareBoxplotData') 7 | }; 8 | return echarts.dataTool; 9 | }); -------------------------------------------------------------------------------- /static/script/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Support: Android 2.3 6 | // Workaround failure to string-cast null input 7 | jQuery.parseJSON = function( data ) { 8 | return JSON.parse( data + "" ); 9 | }; 10 | 11 | return jQuery.parseJSON; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /static/script/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | return function( n, elem ) { 4 | var matched = []; 5 | 6 | for ( ; n; n = n.nextSibling ) { 7 | if ( n.nodeType === 1 && n !== elem ) { 8 | matched.push( n ); 9 | } 10 | } 11 | 12 | return matched; 13 | }; 14 | 15 | } ); 16 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/bindZoomButtons.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.bindZoomButtons = function () { 2 | var map = this; 3 | this.container.find('.jqvmap-zoomin').click(function(){ 4 | map.zoomIn(); 5 | }); 6 | this.container.find('.jqvmap-zoomout').click(function(){ 7 | map.zoomOut(); 8 | }); 9 | }; 10 | -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/docs/includes/examples/05_transparent.hbs: -------------------------------------------------------------------------------- 1 | 2 | 10 | -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/docs/includes/examples/06_horizontal.hbs: -------------------------------------------------------------------------------- 1 | 2 | 10 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/extra/validator/dateiso.js: -------------------------------------------------------------------------------- 1 | // Load this after Parsley for additional comparison validators 2 | 3 | window.Parsley.addValidator('dateiso', { 4 | validateString: function (value) { 5 | return /^(\d{4})\D?(0[1-9]|1[0-2])\D?([12]\d|0[1-9]|3[01])$/.test(value); 6 | }, 7 | priority: 256 8 | }); 9 | -------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /static/script/echarts/test/ut/configure: -------------------------------------------------------------------------------- 1 | if [ "$#" -eq 1 ]; then 2 | # use specific version 3 | old=$1 4 | else 5 | # use last release 6 | old=$(git rev-list --tags --max-count=1) 7 | fi 8 | mkdir -p tmp 9 | cp ../../dist/echarts.js "tmp/newEcharts.js" 10 | git show $old:dist/echarts.js > 'tmp/oldEcharts.js' 11 | -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/reset.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.reset = function () { 2 | for (var key in this.countries) { 3 | this.countries[key].setFill(this.color); 4 | } 5 | this.scale = this.baseScale; 6 | this.transX = this.baseTransX; 7 | this.transY = this.baseTransY; 8 | this.applyTransform(); 9 | }; 10 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/polar.js: -------------------------------------------------------------------------------- 1 | define(function(require) { 2 | 'use strict'; 3 | 4 | require('../coord/polar/polarCreator'); 5 | require('./angleAxis'); 6 | require('./radiusAxis'); 7 | 8 | // Polar view 9 | require('../echarts').extendComponentView({ 10 | type: 'polar' 11 | }); 12 | }); -------------------------------------------------------------------------------- /static/script/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep( jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | } ).length; 11 | }; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | // [converter] $parent hack 4 | @mixin text-emphasis-variant($parent, $color) { 5 | #{$parent} { 6 | color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /application/models/Store.php: -------------------------------------------------------------------------------- 1 | =0.8.0" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /static/script/jquery-knob/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-knob", 3 | "version": "1.2.13", 4 | "main": "js/jquery.knob.js", 5 | "description": "Nice, downward compatible, touchable, jQuery dial.", 6 | "license": "MIT", 7 | "ignore": [], 8 | "dependencies": { 9 | "jquery": ">=1.7.0" 10 | }, 11 | "devDependencies": {} 12 | } 13 | 14 | -------------------------------------------------------------------------------- /static/script/select2/docs/_includes/options/dropdown.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Displaying results 4 |

5 | 6 | {% include options/dropdown/filtering.html %} 7 | {% include options/dropdown/selections.html %} 8 | {% include options/dropdown/tagging.html %} 9 | {% include options/dropdown/placement.html %} 10 |
-------------------------------------------------------------------------------- /static/script/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 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/markLine.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | require('./marker/MarkLineModel'); 4 | require('./marker/MarkLineView'); 5 | 6 | require('../echarts').registerPreprocessor(function (opt) { 7 | // Make sure markLine component is enabled 8 | opt.markLine = opt.markLine || {}; 9 | }); 10 | }); -------------------------------------------------------------------------------- /static/script/google-code-prettify/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google-code-prettify", 3 | "version": "1.0.1", 4 | "main": [ 5 | "./bin/prettify.min.css", 6 | "./bin/prettify.min.js" 7 | ], 8 | "dependencies": {}, 9 | "ignore": [ 10 | "closure-compiler", 11 | "js-modules", 12 | "tests", 13 | "yui-compressor", 14 | "Makefile" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep(jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | }).length; 11 | }; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/mocha/scripts/ensure-compatible-npm.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -o nounset 4 | set -o errexit 5 | 6 | npm install semver 7 | if node -e "process.exit(require('semver').lt(process.argv[1], '1.3.7') ? 0 : 1)" $(npm -v); then 8 | npm install -g npm@2 9 | npm install -g npm 10 | fi 11 | npm uninstall semver 12 | -------------------------------------------------------------------------------- /static/script/select2/docs/_includes/options/not-written.html: -------------------------------------------------------------------------------- 1 |
2 | This answer to this question has not yet been written. You can improve this documentation by creating a pull request with an answer to this question. 3 |
-------------------------------------------------------------------------------- /static/script/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /static/script/cropper/src/scss/cropper.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Cropper v@VERSION 3 | * https://github.com/fengyuanchen/cropper 4 | * 5 | * Copyright (c) 2014-@YEAR Fengyuan Chen and contributors 6 | * Released under the MIT license 7 | * 8 | * Date: @DATE 9 | */ 10 | 11 | @import "variables"; 12 | @import "mixins"; 13 | @import "main"; 14 | @import "utilities"; 15 | -------------------------------------------------------------------------------- /static/script/echarts/src/chart/parallel.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | var echarts = require('../echarts'); 4 | 5 | require('../component/parallel'); 6 | 7 | require('./parallel/ParallelSeries'); 8 | require('./parallel/ParallelView'); 9 | 10 | echarts.registerVisualCoding('chart', require('./parallel/parallelVisual')); 11 | 12 | }); -------------------------------------------------------------------------------- /static/script/jszip/lib/defaults.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | exports.base64 = false; 3 | exports.binary = false; 4 | exports.dir = false; 5 | exports.createFolders = false; 6 | exports.date = null; 7 | exports.compression = null; 8 | exports.compressionOptions = null; 9 | exports.comment = null; 10 | exports.unixPermissions = null; 11 | exports.dosPermissions = null; 12 | -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/docs/includes/examples/04_events.hbs: -------------------------------------------------------------------------------- 1 | Change background color 2 | 9 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | // [converter] $parent hack 4 | @mixin bg-variant($parent, $color) { 5 | #{$parent} { 6 | background-color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | background-color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/duration/duration.js: -------------------------------------------------------------------------------- 1 | // Side effect imports 2 | import './prototype'; 3 | 4 | import { createDuration } from './create'; 5 | import { isDuration } from './constructor'; 6 | import { getSetRelativeTimeThreshold } from './humanize'; 7 | 8 | export { 9 | createDuration, 10 | isDuration, 11 | getSetRelativeTimeThreshold 12 | }; 13 | -------------------------------------------------------------------------------- /static/script/Chart.js/.codeclimate.yml: -------------------------------------------------------------------------------- 1 | engines: 2 | duplication: 3 | enabled: true 4 | config: 5 | languages: 6 | - javascript 7 | eslint: 8 | enabled: true 9 | fixme: 10 | enabled: true 11 | ratings: 12 | paths: 13 | - "src/**/*.js" 14 | exclude_paths: 15 | - dist/**/* 16 | - node_modules/**/* 17 | - test/**/* 18 | - coverage/**/* 19 | -------------------------------------------------------------------------------- /static/script/Chart.js/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | - [ ] I have read the [guidelines for contributing](https://github.com/chartjs/Chart.js/blob/master/CONTRIBUTING.md) 2 | - [ ] I have included an example of my issue on a website such as [JS Bin](http://jsbin.com/), [JS Fiddle](http://jsfiddle.net/), or [Codepen](http://codepen.io/pen/). ([Template](http://codepen.io/pen?template=JXVYzq)) -------------------------------------------------------------------------------- /static/script/fontawesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fonticons (https://fonticons.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /static/script/jquery.easy-pie-chart/src/jquery.plugin.js: -------------------------------------------------------------------------------- 1 | $.fn.easyPieChart = function(options) { 2 | return this.each(function() { 3 | var instanceOptions; 4 | 5 | if (!$.data(this, 'easyPieChart')) { 6 | instanceOptions = $.extend({}, options, $(this).data()); 7 | $.data(this, 'easyPieChart', new EasyPieChart(this, instanceOptions)); 8 | } 9 | }); 10 | }; 11 | -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/docs/includes/examples/02_component.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | 10 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/to-int.js: -------------------------------------------------------------------------------- 1 | import absFloor from './abs-floor'; 2 | 3 | export default function toInt(argumentForCoercion) { 4 | var coercedNumber = +argumentForCoercion, 5 | value = 0; 6 | 7 | if (coercedNumber !== 0 && isFinite(coercedNumber)) { 8 | value = absFloor(coercedNumber); 9 | } 10 | 11 | return value; 12 | } 13 | -------------------------------------------------------------------------------- /static/script/moment/templates/locale-header.js: -------------------------------------------------------------------------------- 1 | ;(function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' 3 | && typeof require === 'function' ? factory(require('../moment')) : 4 | typeof define === 'function' && define.amd ? define(['moment'], factory) : 5 | factory(global.moment) 6 | }(this, function (moment) { 'use strict'; 7 | -------------------------------------------------------------------------------- /static/script/select2/docs/_includes/notice-previous.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | Looking for the Select2 3.5.2 docs? 4 | We have moved them to a new location 5 | while we push forward with Select2 4.0. 6 |
7 |
8 | -------------------------------------------------------------------------------- /static/script/Chart.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Chart.js", 3 | "version": "2.1.4", 4 | "description": "Simple HTML5 Charts using the canvas element", 5 | "homepage": "https://github.com/chartjs/Chart.js", 6 | "author": "nnnick", 7 | "license": "MIT", 8 | "main": [ 9 | "dist/Chart.js" 10 | ], 11 | "devDependencies": { 12 | "jquery": "~2.1.4" 13 | } 14 | } -------------------------------------------------------------------------------- /static/script/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : true, 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true 15 | } 16 | -------------------------------------------------------------------------------- /static/script/echarts/src/chart/boxplot.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | var echarts = require('../echarts'); 4 | 5 | require('./boxplot/BoxplotSeries'); 6 | require('./boxplot/BoxplotView'); 7 | 8 | echarts.registerVisualCoding('chart', require('./boxplot/boxplotVisual')); 9 | echarts.registerLayout(require('./boxplot/boxplotLayout')); 10 | 11 | }); -------------------------------------------------------------------------------- /static/script/echarts/src/component/toolbox/featureManager.js: -------------------------------------------------------------------------------- 1 | define(function(require) { 2 | 'use strict'; 3 | 4 | var features = {}; 5 | 6 | return { 7 | register: function (name, ctor) { 8 | features[name] = ctor; 9 | }, 10 | 11 | get: function (name) { 12 | return features[name]; 13 | } 14 | }; 15 | }); -------------------------------------------------------------------------------- /static/script/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /static/script/fullcalendar/README.md: -------------------------------------------------------------------------------- 1 | # FullCalendar 2 | 3 | A full-sized drag & drop event calendar (jQuery plugin). 4 | 5 | - [Project website and demos](http://fullcalendar.io/) 6 | - [Documentation](http://fullcalendar.io/docs/) 7 | - [Support](http://fullcalendar.io/support/) 8 | - [Contributing](CONTRIBUTING.md) 9 | - [Changelog](CHANGELOG.md) 10 | - [License](LICENSE.txt) -------------------------------------------------------------------------------- /static/script/moment/templates/test-header.js: -------------------------------------------------------------------------------- 1 | ;(function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' 3 | && typeof require === 'function' ? factory(require('../../moment')) : 4 | typeof define === 'function' && define.amd ? define(['../../moment'], factory) : 5 | factory(global.moment) 6 | }(this, function (moment) { 'use strict'; 7 | -------------------------------------------------------------------------------- /static/script/select2/docs/_includes/options/events/internal.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Internal Select2 events 4 |

5 | 6 |

7 | Select2 has an internal event system that works independently of the DOM event system. This internal event system is only accesssible from plugins and adapters that are connected to Select2. 8 |

9 |
-------------------------------------------------------------------------------- /static/script/starrr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "starrr", 3 | "version": "2.0.0", 4 | "main": "Gruntfile.coffee", 5 | "author": "ajb ", 6 | "license": "MIT", 7 | "devDependencies": { 8 | "grunt-contrib-sass": "^0.9.2", 9 | "grunt-contrib-coffee": "^0.13.0", 10 | "grunt-contrib-watch": "^0.6.1", 11 | "grunt": "^0.4.5" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /static/script/Chart.js/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | - [ ] I have read the [guidelines for contributing](https://github.com/chartjs/Chart.js/blob/master/CONTRIBUTING.md) 2 | - [ ] I have included an example of my changes on a website such as [JS Bin](http://jsbin.com/), [JS Fiddle](http://jsfiddle.net/), or [Codepen](http://codepen.io/pen/). ([Template](http://codepen.io/pen?template=JXVYzq)) -------------------------------------------------------------------------------- /static/script/jquery-mousewheel/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-mousewheel", 3 | "version": "3.1.13", 4 | "main": "./jquery.mousewheel.js", 5 | "ignore": [ 6 | "*.json", 7 | "*.markdown", 8 | "*.txt", 9 | ".*", 10 | "!LICENSE.txt", 11 | "Gruntfile.js", 12 | "test" 13 | ], 14 | "dependencies": { 15 | "jquery": ">=1.2.2" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /static/script/select2/docs/_includes/options/compatibility.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Backwards compatibility 4 |

5 | 6 | {% include options/compatibility/matcher.html %} 7 | {% include options/compatibility/initial-selection.html %} 8 | {% include options/compatibility/query-function.html %} 9 | {% include options/compatibility/text-input.html %} 10 |
-------------------------------------------------------------------------------- /static/script/select2/docs/_includes/options/selections.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Displaying selections 4 |

5 | 6 | {% include options/selections/multiple.html %} 7 | {% include options/selections/placeholder.html %} 8 | {% include options/selections/clearing-selections.html %} 9 | {% include options/selections/templating.html %} 10 |
-------------------------------------------------------------------------------- /application/models/Member_store.php: -------------------------------------------------------------------------------- 1 | = 0; 5 | return (sign ? (forceSign ? '+' : '') : '-') + 6 | Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber; 7 | } 8 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/vendor/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | @mixin alert-variant($background, $border, $text-color) { 4 | background-color: $background; 5 | border-color: $border; 6 | color: $text-color; 7 | 8 | hr { 9 | border-top-color: darken($border, 5%); 10 | } 11 | .alert-link { 12 | color: darken($text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /static/script/echarts/build/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | basePath=$(cd `dirname $0`; pwd) 5 | cd ${basePath}/../ 6 | rm -r dist 7 | 8 | npm run prepublish 9 | 10 | ./node_modules/.bin/webpack 11 | ./node_modules/.bin/webpack -p 12 | ./node_modules/.bin/webpack --config extension/webpack.config.js 13 | ./node_modules/.bin/webpack --config extension/webpack.config.js -p 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/script/moment/src/lib/utils/hooks.js: -------------------------------------------------------------------------------- 1 | export { hooks, setHookCallback }; 2 | 3 | var hookCallback; 4 | 5 | function hooks () { 6 | return hookCallback.apply(null, arguments); 7 | } 8 | 9 | // This is done to register the method called with moment() 10 | // without creating circular dependencies. 11 | function setHookCallback (callback) { 12 | hookCallback = callback; 13 | } 14 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | jQuery._evalUrl = function( url ) { 6 | return jQuery.ajax({ 7 | url: url, 8 | type: "GET", 9 | dataType: "script", 10 | async: false, 11 | global: false, 12 | "throws": true 13 | }); 14 | }; 15 | 16 | return jQuery._evalUrl; 17 | 18 | }); 19 | -------------------------------------------------------------------------------- /static/script/datatables.net-fixedheader-bs/css/fixedHeader.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable.fixedHeader-floating,table.dataTable.fixedHeader-locked{background-color:white;margin-top:0 !important;margin-bottom:0 !important}table.dataTable.fixedHeader-floating{position:fixed !important}table.dataTable.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /static/script/eve/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eve", 3 | "homepage": "https://github.com/adobe-webplatform/eve", 4 | "_release": "eef80ed", 5 | "_resolution": { 6 | "type": "commit", 7 | "commit": "eef80ed" 8 | }, 9 | "_source": "https://github.com/adobe-webplatform/eve.git", 10 | "_target": "eef80ed", 11 | "_originalSource": "https://github.com/adobe-webplatform/eve.git" 12 | } -------------------------------------------------------------------------------- /static/script/starrr/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "starrr", 3 | "authors": [ 4 | "ajb " 5 | ], 6 | "description": "1-5 star rating with jQuery.", 7 | "license": "MIT", 8 | "ignore": [ 9 | "**/.*", 10 | "node_modules", 11 | "bower_components" 12 | ], 13 | "main": [ 14 | "dist/starrr.js", 15 | "dist/starrr.css" 16 | ], 17 | "dependencies": {} 18 | } 19 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/markPoint.js: -------------------------------------------------------------------------------- 1 | // HINT Markpoint can't be used too much 2 | define(function (require) { 3 | 4 | require('./marker/MarkPointModel'); 5 | require('./marker/MarkPointView'); 6 | 7 | require('../echarts').registerPreprocessor(function (opt) { 8 | // Make sure markPoint component is enabled 9 | opt.markPoint = opt.markPoint || {}; 10 | }); 11 | }); -------------------------------------------------------------------------------- /static/script/echarts/src/component/timeline/TimelineView.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file Timeline view 3 | */ 4 | define(function (require) { 5 | 6 | // var zrUtil = require('zrender/core/util'); 7 | // var graphic = require('../../util/graphic'); 8 | var ComponentView = require('../../view/Component'); 9 | 10 | return ComponentView.extend({ 11 | 12 | type: 'timeline' 13 | }); 14 | 15 | }); -------------------------------------------------------------------------------- /static/script/mocha/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mocha", 3 | "version": "1.17.1", 4 | "main": "mocha.js", 5 | "ignore": [ 6 | "bin", 7 | "editors", 8 | "images", 9 | "lib", 10 | "support", 11 | "test", 12 | ".gitignore", 13 | ".npmignore", 14 | ".travis.yml", 15 | "component.json", 16 | "index.js", 17 | "Makefile", 18 | "package.json" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/header.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Parsley.js 3 | * Version ${pkg.version} - built ${now.format('ddd, MMM Do YYYY, h:mm a')} 4 | * http://parsleyjs.org 5 | * Guillaume Potier - 6 | * Marc-Andre Lafortune - 7 | * MIT Licensed 8 | */ 9 | 10 | // The source code below is generated by babel as 11 | // Parsley is written in ECMAScript 6 12 | // 13 | -------------------------------------------------------------------------------- /static/script/dropzone/dist/readme.md: -------------------------------------------------------------------------------- 1 | # Warning! 2 | 3 | You shouldn't pull these files from the github master branch directly! 4 | 5 | They might be outdated or not working at all since I normally only push them 6 | when I create a version release. 7 | 8 | To be sure to get a proper release, please go to the 9 | [dropzone releases section on github](https://github.com/enyo/dropzone/releases/latest). 10 | 11 | -------------------------------------------------------------------------------- /static/script/echarts/src/component/legend.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Legend component entry file8 3 | */ 4 | define(function (require) { 5 | 6 | require('./legend/LegendModel'); 7 | require('./legend/legendAction'); 8 | require('./legend/LegendView'); 9 | 10 | var echarts = require('../echarts'); 11 | // Series Filter 12 | echarts.registerProcessor('filter', require('./legend/legendFilter')); 13 | }); -------------------------------------------------------------------------------- /static/script/echarts/src/component/toolbox.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | require('./toolbox/ToolboxModel'); 4 | require('./toolbox/ToolboxView'); 5 | 6 | require('./toolbox/feature/SaveAsImage'); 7 | require('./toolbox/feature/MagicType'); 8 | require('./toolbox/feature/DataView'); 9 | require('./toolbox/feature/DataZoom'); 10 | require('./toolbox/feature/Restore'); 11 | }); -------------------------------------------------------------------------------- /static/script/jqvmap/src/JQVMap/getPins.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.getPins = function(){ 2 | var pins = this.container.find('.jqvmap-pin'); 3 | var ret = {}; 4 | jQuery.each(pins, function(index, pinObj){ 5 | pinObj = jQuery(pinObj); 6 | var cc = pinObj.attr('for').toLowerCase(); 7 | var pinContent = pinObj.html(); 8 | ret[cc] = pinContent; 9 | }); 10 | return JSON.stringify(ret); 11 | }; 12 | -------------------------------------------------------------------------------- /static/script/jqvmap/create/config/syria.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "read_data", 4 | "file_name": "./source/SYR_adm_shp/SYR_adm0.shp" 5 | }, 6 | { 7 | "name": "write_data", 8 | "format": "jqvmap", 9 | "file_name": "./output/jquery.vmap.syria.js", 10 | "params": { 11 | "code_field": "ISO", 12 | "name_field": "NAME_ENGLI", 13 | "name": "syria" 14 | } 15 | } 16 | ] 17 | -------------------------------------------------------------------------------- /static/script/mjolnic-bootstrap-colorpicker/docs/includes/examples/07_inline.hbs: -------------------------------------------------------------------------------- 1 |
2 | 7 | 16 | -------------------------------------------------------------------------------- /static/script/requirejs/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "requirejs", 3 | "version": "2.1.22", 4 | "ignore": [], 5 | "homepage": "http://requirejs.org", 6 | "authors": [ 7 | "jrburke.com" 8 | ], 9 | "description": "A file and module loader for JavaScript", 10 | "main": "require.js", 11 | "keywords": [ 12 | "AMD" 13 | ], 14 | "license": [ 15 | "BSD-3-Clause", 16 | "MIT" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /static/script/echarts/src/chart/treemap.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | 3 | var echarts = require('../echarts'); 4 | 5 | require('./treemap/TreemapSeries'); 6 | require('./treemap/TreemapView'); 7 | require('./treemap/treemapAction'); 8 | 9 | echarts.registerVisualCoding('chart', require('./treemap/treemapVisual')); 10 | 11 | echarts.registerLayout(require('./treemap/treemapLayout')); 12 | }); -------------------------------------------------------------------------------- /static/script/jszip/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jszip", 3 | "repo": "Stuk/jszip", 4 | "description": "Create, read and edit .zip files with Javascript http://stuartk.com/jszip", 5 | "version": "2.6.0", 6 | "keywords": [ 7 | "zip", 8 | "deflate", 9 | "inflate" 10 | ], 11 | "main": "dist/jszip.js", 12 | "license": "MIT or GPLv3", 13 | "scripts": [ 14 | "dist/jszip.js" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[":"] = jQuery.expr.pseudos; 9 | jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /static/script/gauge.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bernii/gauge.js", 3 | "version": "1.2.1", 4 | "main": [ 5 | "dist/gauge.js", 6 | "dist/gauge.min.js", 7 | "dist/gauge.coffee" 8 | ], 9 | "description": "100% native and cool looking animated JavaScript/CoffeScript gauge", 10 | "license": "MIT", 11 | "ignore": [ 12 | ], 13 | "dependencies": { 14 | }, 15 | "devDependencies": { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /static/script/jqvmap/create/config/new-york.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "read_data", 4 | "file_name": "./source/nybb_15d/nybb.shp" 5 | }, 6 | { 7 | "name": "write_data", 8 | "format": "jqvmap", 9 | "file_name": "./output/jquery.vmap.new-york.js", 10 | "params": { 11 | "code_field": "BoroCode", 12 | "name_field": "BoroName", 13 | "name": "us-ny-new-york" 14 | } 15 | } 16 | ] 17 | -------------------------------------------------------------------------------- /static/script/parsleyjs/dist/i18n/uk.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | // Load this after Parsley 3 | 4 | Parsley.addMessages('uk', { 5 | dateiso: "Це значення має бути коректною датою (РРРР-ММ-ДД).", 6 | minwords: "Це значення повинно містити не менше %s слів.", 7 | maxwords: "Це значення повинно містити не більше %s слів.", 8 | words: "Це значення повинно містити від %s до %s слів." 9 | }); 10 | -------------------------------------------------------------------------------- /static/script/echarts/src/chart/graph/circularLayout.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | var circularLayoutHelper = require('./circularLayoutHelper'); 3 | return function (ecModel, api) { 4 | ecModel.eachSeriesByType('graph', function (seriesModel) { 5 | if (seriesModel.get('layout') === 'circular') { 6 | circularLayoutHelper(seriesModel); 7 | } 8 | }); 9 | }; 10 | }); -------------------------------------------------------------------------------- /static/script/echarts/src/component/dataZoom/InsideZoomModel.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file Data zoom model 3 | */ 4 | define(function(require) { 5 | 6 | return require('./DataZoomModel').extend({ 7 | 8 | type: 'dataZoom.inside', 9 | 10 | /** 11 | * @protected 12 | */ 13 | defaultOption: { 14 | zoomLock: false // Whether disable zoom but only pan. 15 | } 16 | }); 17 | }); -------------------------------------------------------------------------------- /static/script/jszip/lib/compressions.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | exports.STORE = { 3 | magic: "\x00\x00", 4 | compress: function(content, compressionOptions) { 5 | return content; // no compression 6 | }, 7 | uncompress: function(content) { 8 | return content; // no compression 9 | }, 10 | compressInputType: null, 11 | uncompressInputType: null 12 | }; 13 | exports.DEFLATE = require('./flate'); 14 | -------------------------------------------------------------------------------- /static/script/select2/docs/_sass/_code.scss: -------------------------------------------------------------------------------- 1 | // Code (inline and block) 2 | 3 | // Inline code within headings retain the heading's background-color 4 | h2 code, 5 | h3 code, 6 | h4 code { 7 | background-color: inherit; 8 | } 9 | 10 | // Modify Bootstrap's styles for blocks of code 11 | pre.prettyprint { 12 | padding: 9px 14px; 13 | margin-bottom: 14px; 14 | background-color: #f7f7f9; 15 | border: 1px solid #e1e1e8; 16 | } -------------------------------------------------------------------------------- /static/fonts/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /static/fonts/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /static/script/parsleyjs/bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | // Attach a bunch of functions for handling common AJAX events 7 | jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) { 8 | jQuery.fn[ type ] = function( fn ) { 9 | return this.on( type, fn ); 10 | }; 11 | }); 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /static/script/parsleyjs/dist/i18n/ru.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | // Load this after Parsley 3 | 4 | Parsley.addMessages('ru', { 5 | dateiso: "Это значение должно быть корректной датой (ГГГГ-ММ-ДД).", 6 | minwords: "Это значение должно содержать не менее %s слов.", 7 | maxwords: "Это значение должно содержать не более %s слов.", 8 | words: "Это значение должно содержать от %s до %s слов." 9 | }); 10 | -------------------------------------------------------------------------------- /static/script/parsleyjs/src/i18n/uk.extra.js: -------------------------------------------------------------------------------- 1 | // Validation errors messages for Parsley 2 | import Parsley from '../parsley'; 3 | 4 | Parsley.addMessages('uk', { 5 | dateiso: "Це значення має бути коректною датою (РРРР-ММ-ДД).", 6 | minwords: "Це значення повинно містити не менше %s слів.", 7 | maxwords: "Це значення повинно містити не більше %s слів.", 8 | words: "Це значення повинно містити від %s до %s слів." 9 | }); 10 | -------------------------------------------------------------------------------- /static/script/echarts/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "echarts", 3 | "homepage": "https://github.com/ecomfe/echarts", 4 | "version": "3.1.10", 5 | "_release": "3.1.10", 6 | "_resolution": { 7 | "type": "version", 8 | "tag": "3.1.10", 9 | "commit": "5b08696ef103314c827907907432b15146940c45" 10 | }, 11 | "_source": "https://github.com/ecomfe/echarts.git", 12 | "_target": "^3.1.7", 13 | "_originalSource": "echarts" 14 | } -------------------------------------------------------------------------------- /static/script/echarts/src/model/mixin/areaStyle.js: -------------------------------------------------------------------------------- 1 | define(function (require) { 2 | return { 3 | getAreaStyle: require('./makeStyleMapper')( 4 | [ 5 | ['fill', 'color'], 6 | ['shadowBlur'], 7 | ['shadowOffsetX'], 8 | ['shadowOffsetY'], 9 | ['opacity'], 10 | ['shadowColor'] 11 | ] 12 | ) 13 | }; 14 | }); --------------------------------------------------------------------------------