├── .flaskenv ├── .gitattributes ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── app ├── __init__.py ├── auth │ ├── __init__.py │ ├── forms.py │ └── views.py ├── commands.py ├── config.py ├── decorators.py ├── dingding.py ├── email.py ├── extensions.py ├── job │ ├── __init__.py │ ├── core.py │ ├── public.py │ └── views.py ├── main │ ├── __init__.py │ ├── errors.py │ ├── forms.py │ └── views.py ├── models.py ├── static │ ├── css │ │ ├── animate.css │ │ ├── bootstrap-rtl.css │ │ ├── bootstrap.min.css_back │ │ ├── bootstrap.min.csss │ │ ├── demo │ │ │ └── webuploader-demo.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── login.css │ │ ├── patterns │ │ │ ├── header-profile-skin-1.png │ │ │ ├── header-profile-skin-3.png │ │ │ ├── header-profile.png │ │ │ └── shattered.png │ │ ├── plugins │ │ │ ├── awesome-bootstrap-checkbox │ │ │ │ └── awesome-bootstrap-checkbox.css │ │ │ ├── blueimp │ │ │ │ ├── css │ │ │ │ │ ├── blueimp-gallery-indicator.css │ │ │ │ │ ├── blueimp-gallery-video.css │ │ │ │ │ ├── blueimp-gallery.css │ │ │ │ │ ├── blueimp-gallery.min.css │ │ │ │ │ └── demo.css │ │ │ │ └── img │ │ │ │ │ ├── error.png │ │ │ │ │ ├── error.svg │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── play-pause.png │ │ │ │ │ ├── play-pause.svg │ │ │ │ │ ├── video-play.png │ │ │ │ │ └── video-play.svg │ │ │ ├── bootstrap-table │ │ │ │ └── bootstrap-table.min.css │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ └── chosen.css │ │ │ ├── clockpicker │ │ │ │ └── clockpicker.css │ │ │ ├── codemirror │ │ │ │ ├── ambiance.css │ │ │ │ └── codemirror.css │ │ │ ├── colorpicker │ │ │ │ ├── css │ │ │ │ │ └── bootstrap-colorpicker.min.css │ │ │ │ └── img │ │ │ │ │ └── bootstrap-colorpicker │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ ├── alpha.png │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ ├── hue.png │ │ │ │ │ └── saturation.png │ │ │ ├── cropper │ │ │ │ └── cropper.min.css │ │ │ ├── dataTables │ │ │ │ └── dataTables.bootstrap.css │ │ │ ├── datapicker │ │ │ │ └── datepicker3.css │ │ │ ├── dropzone │ │ │ │ ├── basic.css │ │ │ │ └── dropzone.css │ │ │ ├── duallistbox │ │ │ │ └── bootstrap-duallistbox.css │ │ │ ├── footable │ │ │ │ ├── fonts │ │ │ │ │ ├── footable.eot │ │ │ │ │ ├── footable.svg │ │ │ │ │ ├── footable.ttf │ │ │ │ │ └── footable.woff │ │ │ │ └── footable.core.css │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.css │ │ │ │ └── fullcalendar.print.css │ │ │ ├── iCheck │ │ │ │ ├── custom.css │ │ │ │ ├── green.png │ │ │ │ └── green@2x.png │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ │ ├── ionRangeSlider │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ └── ion.rangeSlider.skinFlat.css │ │ │ ├── jQueryUI │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ └── ui-icons_888888_256x240.png │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ ├── jasny │ │ │ │ └── jasny-bootstrap.min.css │ │ │ ├── jqgrid │ │ │ │ └── ui.jqgrid.css │ │ │ ├── jsTree │ │ │ │ ├── 32px.png │ │ │ │ ├── style.min.css │ │ │ │ └── throbber.gif │ │ │ ├── markdown │ │ │ │ └── bootstrap-markdown.min.css │ │ │ ├── morris │ │ │ │ └── morris-0.4.3.min.css │ │ │ ├── multiselect │ │ │ │ └── bootstrap-multiselect.css │ │ │ ├── nouslider │ │ │ │ └── jquery.nouislider.css │ │ │ ├── plyr │ │ │ │ ├── plyr.css │ │ │ │ └── sprite.svg │ │ │ ├── simditor │ │ │ │ └── simditor.css │ │ │ ├── steps │ │ │ │ └── jquery.steps.css │ │ │ ├── summernote │ │ │ │ ├── summernote-bs3.css │ │ │ │ └── summernote.css │ │ │ ├── sweetalert │ │ │ │ └── sweetalert.css │ │ │ ├── switchery │ │ │ │ └── switchery.css │ │ │ ├── toastr │ │ │ │ └── toastr.min.css │ │ │ ├── treeview │ │ │ │ └── bootstrap-treeview.css │ │ │ └── webuploader │ │ │ │ └── webuploader.css │ │ ├── style.css │ │ └── sweetalert.css │ ├── favicon.ico │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── QQ20171102-002842-HD.gif │ │ ├── barbarian.png │ │ ├── blog.jpeg │ │ ├── browser.psd │ │ ├── deving.jpeg │ │ ├── dribbble_shots__my_task.jpg │ │ ├── favicon.ico │ │ ├── fuck.jpg │ │ ├── goblin.png │ │ ├── logo-taskio.png │ │ ├── miaopai.jpeg │ │ ├── notice.jpg │ │ ├── test.gif │ │ ├── tux.jpeg │ │ ├── tux.jpg │ │ └── wizard.png │ ├── js │ │ ├── bootstrap.min.js │ │ ├── contabs.js │ │ ├── content.js │ │ ├── daterangepicker.js │ │ ├── demo │ │ │ ├── bootstrap-table-demo.js │ │ │ ├── bootstrap_table_test.json │ │ │ ├── bootstrap_table_test2.json │ │ │ ├── echarts-demo.js │ │ │ ├── flot-demo.js │ │ │ ├── form-advanced-demo.js │ │ │ ├── form-validate-demo.js │ │ │ ├── layer-demo.js │ │ │ ├── morris-demo.js │ │ │ ├── peity-demo.js │ │ │ ├── photos.json │ │ │ ├── rickshaw-demo.js │ │ │ ├── sparkline-demo.js │ │ │ ├── table_base.json │ │ │ ├── treeview-demo.js │ │ │ └── webuploader-demo.js │ │ ├── hplus.js │ │ ├── jquery-ui-1.10.4.min.js │ │ ├── jquery-ui.custom.min.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.sparkline.min.js │ │ ├── plugins │ │ │ ├── beautifyhtml │ │ │ │ └── beautifyhtml.js │ │ │ ├── blueimp │ │ │ │ └── jquery.blueimp-gallery.min.js │ │ │ ├── bootstrap-table │ │ │ │ ├── bootstrap-table-mobile.min.js │ │ │ │ ├── bootstrap-table.min.js │ │ │ │ └── locale │ │ │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ │ │ └── bootstrap-table-zh-CN.min.js │ │ │ ├── chartJs │ │ │ │ └── Chart.min.js │ │ │ ├── chosen │ │ │ │ └── chosen.jquery.js │ │ │ ├── clockpicker │ │ │ │ └── clockpicker.js │ │ │ ├── codemirror │ │ │ │ ├── codemirror.js │ │ │ │ └── mode │ │ │ │ │ ├── apl │ │ │ │ │ ├── apl.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk │ │ │ │ │ ├── asterisk.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── clike │ │ │ │ │ ├── clike.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── scala.html │ │ │ │ │ ├── clojure │ │ │ │ │ ├── clojure.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── cobol │ │ │ │ │ ├── cobol.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ ├── css.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── less.html │ │ │ │ │ ├── less_test.js │ │ │ │ │ ├── scss.html │ │ │ │ │ ├── scss_test.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── cypher │ │ │ │ │ ├── cypher.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── d │ │ │ │ │ ├── d.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── dart │ │ │ │ │ ├── dart.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff │ │ │ │ │ ├── diff.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── django │ │ │ │ │ ├── django.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── dockerfile │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── dtd │ │ │ │ │ ├── dtd.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── dylan │ │ │ │ │ ├── dylan.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── ebnf │ │ │ │ │ ├── ebnf.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl │ │ │ │ │ ├── ecl.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── eiffel │ │ │ │ │ ├── eiffel.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang │ │ │ │ │ ├── erlang.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── fortran │ │ │ │ │ ├── fortran.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── gas │ │ │ │ │ ├── gas.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm │ │ │ │ │ ├── gfm.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ │ ├── gherkin │ │ │ │ │ ├── gherkin.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── go │ │ │ │ │ ├── go.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy │ │ │ │ │ ├── groovy.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── haml │ │ │ │ │ ├── haml.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ │ ├── haskell │ │ │ │ │ ├── haskell.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe │ │ │ │ │ ├── haxe.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── http │ │ │ │ │ ├── http.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── idl │ │ │ │ │ ├── idl.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jade │ │ │ │ │ ├── index.html │ │ │ │ │ └── jade.js │ │ │ │ │ ├── javascript │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── json-ld.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2 │ │ │ │ │ ├── index.html │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── julia │ │ │ │ │ ├── index.html │ │ │ │ │ └── julia.js │ │ │ │ │ ├── kotlin │ │ │ │ │ ├── index.html │ │ │ │ │ └── kotlin.js │ │ │ │ │ ├── livescript │ │ │ │ │ ├── index.html │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua │ │ │ │ │ ├── index.html │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ ├── index.html │ │ │ │ │ ├── markdown.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc │ │ │ │ │ ├── index.html │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike │ │ │ │ │ ├── index.html │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica │ │ │ │ │ ├── index.html │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── nginx │ │ │ │ │ ├── index.html │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── ntriples │ │ │ │ │ ├── index.html │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave │ │ │ │ │ ├── index.html │ │ │ │ │ └── octave.js │ │ │ │ │ ├── pascal │ │ │ │ │ ├── index.html │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs │ │ │ │ │ ├── index.html │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl │ │ │ │ │ ├── index.html │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── php.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── pig │ │ │ │ │ ├── index.html │ │ │ │ │ └── pig.js │ │ │ │ │ ├── properties │ │ │ │ │ ├── index.html │ │ │ │ │ └── properties.js │ │ │ │ │ ├── puppet │ │ │ │ │ ├── index.html │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python │ │ │ │ │ ├── index.html │ │ │ │ │ └── python.js │ │ │ │ │ ├── q │ │ │ │ │ ├── index.html │ │ │ │ │ └── q.js │ │ │ │ │ ├── r │ │ │ │ │ ├── index.html │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ ├── changes │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst │ │ │ │ │ ├── index.html │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ruby.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── rust │ │ │ │ │ ├── index.html │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sass │ │ │ │ │ ├── index.html │ │ │ │ │ └── sass.js │ │ │ │ │ ├── scheme │ │ │ │ │ ├── index.html │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ ├── index.html │ │ │ │ │ ├── shell.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── sieve │ │ │ │ │ ├── index.html │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim │ │ │ │ │ ├── index.html │ │ │ │ │ ├── slim.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ ├── index.html │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ ├── index.html │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── smartymixed │ │ │ │ │ ├── index.html │ │ │ │ │ └── smartymixed.js │ │ │ │ │ ├── solr │ │ │ │ │ ├── index.html │ │ │ │ │ └── solr.js │ │ │ │ │ ├── soy │ │ │ │ │ ├── index.html │ │ │ │ │ └── soy.js │ │ │ │ │ ├── sparql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── spreadsheet │ │ │ │ │ ├── index.html │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ ├── sql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex │ │ │ │ │ ├── index.html │ │ │ │ │ ├── stex.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── tcl │ │ │ │ │ ├── index.html │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml │ │ │ │ │ ├── index.html │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado │ │ │ │ │ ├── index.html │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── turtle │ │ │ │ │ ├── index.html │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── vb │ │ │ │ │ ├── index.html │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ ├── index.html │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ ├── index.html │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── xml │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yaml │ │ │ │ │ ├── index.html │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80 │ │ │ │ │ ├── index.html │ │ │ │ │ └── z80.js │ │ │ ├── colorpicker │ │ │ │ └── bootstrap-colorpicker.min.js │ │ │ ├── cropper │ │ │ │ └── cropper.min.js │ │ │ ├── dataTables │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ └── jquery.dataTables.js │ │ │ ├── datapicker │ │ │ │ └── bootstrap-datepicker.js │ │ │ ├── diff_match_patch │ │ │ │ └── diff_match_patch.js │ │ │ ├── dropzone │ │ │ │ └── dropzone.js │ │ │ ├── duallistbox │ │ │ │ └── jquery.bootstrap-duallistbox.js │ │ │ ├── easypiechart │ │ │ │ └── jquery.easypiechart.js │ │ │ ├── echarts │ │ │ │ └── echarts-all.js │ │ │ ├── fancybox │ │ │ │ ├── blank.gif │ │ │ │ ├── fancybox_loading.gif │ │ │ │ ├── fancybox_loading@2x.gif │ │ │ │ ├── fancybox_overlay.png │ │ │ │ ├── fancybox_sprite.png │ │ │ │ ├── fancybox_sprite@2x.png │ │ │ │ ├── jquery.fancybox.css │ │ │ │ └── jquery.fancybox.js │ │ │ ├── flot │ │ │ │ ├── curvedLines.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.spline.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ └── jquery.flot.tooltip.min.js │ │ │ ├── footable │ │ │ │ └── footable.all.min.js │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.min.js │ │ │ │ └── moment.min.js │ │ │ ├── gritter │ │ │ │ ├── images │ │ │ │ │ ├── gritter-light.png │ │ │ │ │ ├── gritter.png │ │ │ │ │ └── ie-spacer.gif │ │ │ │ ├── jquery.gritter.css │ │ │ │ └── jquery.gritter.min.js │ │ │ ├── iCheck │ │ │ │ └── icheck.min.js │ │ │ ├── ionRangeSlider │ │ │ │ ├── ion.rangeSlider.min.js │ │ │ │ └── jasny │ │ │ │ │ └── jasny-bootstrap.min.js │ │ │ ├── jasny │ │ │ │ └── jasny-bootstrap.min.js │ │ │ ├── jeditable │ │ │ │ └── jquery.jeditable.js │ │ │ ├── jqgrid │ │ │ │ ├── i18n │ │ │ │ │ └── grid.locale-cn.js │ │ │ │ └── jquery.jqGrid.min.js │ │ │ ├── jquery-ui │ │ │ │ └── jquery-ui.min.js │ │ │ ├── jsKnob │ │ │ │ └── jquery.knob.js │ │ │ ├── jsTree │ │ │ │ ├── jstree.js │ │ │ │ └── jstree.min.js │ │ │ ├── jvectormap │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ ├── layer │ │ │ │ ├── extend │ │ │ │ │ └── layer.ext.js │ │ │ │ ├── laydate │ │ │ │ │ ├── laydate.js │ │ │ │ │ ├── need │ │ │ │ │ │ └── laydate.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── laydate.css │ │ │ │ ├── layer.min.js │ │ │ │ ├── layim │ │ │ │ │ ├── data │ │ │ │ │ │ ├── chatlog.json │ │ │ │ │ │ ├── friend.json │ │ │ │ │ │ ├── group.json │ │ │ │ │ │ └── groups.json │ │ │ │ │ ├── layim.css │ │ │ │ │ ├── layim.js │ │ │ │ │ └── loading.gif │ │ │ │ └── skin │ │ │ │ │ ├── default │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon_ext.png │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ ├── loading-2.gif │ │ │ │ │ ├── textbg.png │ │ │ │ │ ├── xubox_ico0.png │ │ │ │ │ ├── xubox_loading0.gif │ │ │ │ │ ├── xubox_loading1.gif │ │ │ │ │ ├── xubox_loading2.gif │ │ │ │ │ ├── xubox_loading3.gif │ │ │ │ │ └── xubox_title0.png │ │ │ │ │ ├── layer.css │ │ │ │ │ ├── layer.ext.css │ │ │ │ │ └── moon │ │ │ │ │ ├── default.png │ │ │ │ │ └── style.css │ │ │ ├── markdown │ │ │ │ ├── bootstrap-markdown.js │ │ │ │ ├── bootstrap-markdown.zh.js │ │ │ │ ├── markdown.js │ │ │ │ └── to-markdown.js │ │ │ ├── metisMenu │ │ │ │ └── jquery.metisMenu.js │ │ │ ├── morris │ │ │ │ ├── morris.js │ │ │ │ └── raphael-2.1.0.min.js │ │ │ ├── multiselect │ │ │ │ └── bootstrap-multiselect.js │ │ │ ├── nestable │ │ │ │ └── jquery.nestable.js │ │ │ ├── nouslider │ │ │ │ └── jquery.nouislider.min.js │ │ │ ├── pace │ │ │ │ └── pace.min.js │ │ │ ├── peity │ │ │ │ └── jquery.peity.min.js │ │ │ ├── plyr │ │ │ │ └── plyr.js │ │ │ ├── preetyTextDiff │ │ │ │ └── jquery.pretty-text-diff.min.js │ │ │ ├── prettyfile │ │ │ │ └── bootstrap-prettyfile.js │ │ │ ├── rickshaw │ │ │ │ ├── rickshaw.min.js │ │ │ │ └── vendor │ │ │ │ │ └── d3.v3.js │ │ │ ├── simditor │ │ │ │ ├── hotkeys.js │ │ │ │ ├── hotkeys.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── module.js │ │ │ │ ├── module.min.js │ │ │ │ ├── simditor.js │ │ │ │ ├── simditor.min.js │ │ │ │ ├── uploader.js │ │ │ │ └── uploader.min.js │ │ │ ├── slimscroll │ │ │ │ └── jquery.slimscroll.min.js │ │ │ ├── sparkline │ │ │ │ └── jquery.sparkline.min.js │ │ │ ├── staps │ │ │ │ └── jquery.steps.min.js │ │ │ ├── suggest │ │ │ │ ├── bootstrap-suggest.min.js │ │ │ │ └── data.json │ │ │ ├── summernote │ │ │ │ ├── summernote-zh-CN.js │ │ │ │ └── summernote.min.js │ │ │ ├── sweetalert │ │ │ │ └── sweetalert.min.js │ │ │ ├── switchery │ │ │ │ └── switchery.js │ │ │ ├── toastr │ │ │ │ └── toastr.min.js │ │ │ ├── treeview │ │ │ │ └── bootstrap-treeview.js │ │ │ ├── validate │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.min.js │ │ │ │ └── messages_zh.min.js │ │ │ └── webuploader │ │ │ │ ├── README.md │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.fis.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.noimage.js │ │ │ │ ├── webuploader.noimage.min.js │ │ │ │ ├── webuploader.nolog.js │ │ │ │ ├── webuploader.nolog.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ ├── sweetalert.min.js │ │ └── welcome.js │ ├── opsplatform │ │ ├── css │ │ │ ├── animate.css │ │ │ ├── bk.css │ │ │ ├── bk.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── layer.css │ │ │ ├── loading.css │ │ │ ├── patterns │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── congruent_pentagon.png │ │ │ │ ├── header-profile-skin-1.png │ │ │ │ ├── header-profile-skin-2.png │ │ │ │ ├── header-profile-skin-3.png │ │ │ │ ├── header-profile.png │ │ │ │ ├── otis_redding.png │ │ │ │ ├── shattered.png │ │ │ │ └── triangular.png │ │ │ ├── plugins │ │ │ │ ├── awesome-bootstrap-checkbox │ │ │ │ │ └── awesome-bootstrap-checkbox.css │ │ │ │ ├── blueimp │ │ │ │ │ ├── css │ │ │ │ │ │ ├── blueimp-gallery-indicator.css │ │ │ │ │ │ ├── blueimp-gallery-video.css │ │ │ │ │ │ ├── blueimp-gallery.css │ │ │ │ │ │ ├── blueimp-gallery.min.css │ │ │ │ │ │ └── demo.css │ │ │ │ │ └── img │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── play-pause.png │ │ │ │ │ │ ├── play-pause.svg │ │ │ │ │ │ ├── video-play.png │ │ │ │ │ │ └── video-play.svg │ │ │ │ ├── bootstrap-markdown │ │ │ │ │ └── bootstrap-markdown.min.css │ │ │ │ ├── bootstrap-rtl │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── bootstrap-tagsinput │ │ │ │ │ └── bootstrap-tagsinput.css │ │ │ │ ├── bootstrapSocial │ │ │ │ │ └── bootstrap-social.css │ │ │ │ ├── bootstrapTour │ │ │ │ │ └── bootstrap-tour.min.css │ │ │ │ ├── c3 │ │ │ │ │ └── c3.min.css │ │ │ │ ├── chartist │ │ │ │ │ └── chartist.min.css │ │ │ │ ├── chosen │ │ │ │ │ ├── bootstrap-chosen.css │ │ │ │ │ ├── chosen-sprite.png │ │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ │ └── chosen.css │ │ │ │ ├── clockpicker │ │ │ │ │ └── clockpicker.css │ │ │ │ ├── codemirror │ │ │ │ │ ├── ambiance.css │ │ │ │ │ └── codemirror.css │ │ │ │ ├── colorpicker │ │ │ │ │ └── bootstrap-colorpicker.min.css │ │ │ │ ├── cropper │ │ │ │ │ └── cropper.min.css │ │ │ │ ├── dataTables │ │ │ │ │ └── datatables.min.css │ │ │ │ ├── datapicker │ │ │ │ │ └── datepicker3.css │ │ │ │ ├── daterangepicker │ │ │ │ │ └── daterangepicker-bs3.css │ │ │ │ ├── dropzone │ │ │ │ │ ├── basic.css │ │ │ │ │ └── dropzone.css │ │ │ │ ├── dualListbox │ │ │ │ │ └── bootstrap-duallistbox.min.css │ │ │ │ ├── footable │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── footable.eot │ │ │ │ │ │ ├── footable.svg │ │ │ │ │ │ ├── footable.ttf │ │ │ │ │ │ └── footable.woff │ │ │ │ │ └── footable.core.css │ │ │ │ ├── fullcalendar │ │ │ │ │ ├── fullcalendar.css │ │ │ │ │ └── fullcalendar.print.css │ │ │ │ ├── iCheck │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── green.png │ │ │ │ │ └── green@2x.png │ │ │ │ ├── images │ │ │ │ │ ├── bootstrap-colorpicker │ │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ └── saturation.png │ │ │ │ │ ├── sort.png │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ ├── sprite-skin-flat2.png │ │ │ │ │ ├── sprite-skin-nice.png │ │ │ │ │ ├── sprite-skin-simple.png │ │ │ │ │ ├── spritemap.png │ │ │ │ │ └── spritemap@2x.png │ │ │ │ ├── ionRangeSlider │ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ │ │ └── ion.rangeSlider.skinSimple.css │ │ │ │ ├── jQueryUI │ │ │ │ │ ├── images │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui-1.10.4.custom.min.css │ │ │ │ │ └── jquery-ui.css │ │ │ │ ├── jasny │ │ │ │ │ └── jasny-bootstrap.min.css │ │ │ │ ├── jqGrid │ │ │ │ │ └── ui.jqgrid.css │ │ │ │ ├── jsTree │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 39px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.min.css │ │ │ │ │ └── throbber.gif │ │ │ │ ├── ladda │ │ │ │ │ ├── ladda-themeless.min.css │ │ │ │ │ └── ladda.min.css │ │ │ │ ├── morris │ │ │ │ │ └── morris-0.4.3.min.css │ │ │ │ ├── nouslider │ │ │ │ │ └── jquery.nouislider.css │ │ │ │ ├── select2 │ │ │ │ │ └── select2.min.css │ │ │ │ ├── slick │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── slick.eot │ │ │ │ │ │ ├── slick.svg │ │ │ │ │ │ ├── slick.ttf │ │ │ │ │ │ └── slick.woff │ │ │ │ │ ├── slick-theme.css │ │ │ │ │ └── slick.css │ │ │ │ ├── social-buttons │ │ │ │ │ └── social-buttons.css │ │ │ │ ├── steps │ │ │ │ │ └── jquery.steps.css │ │ │ │ ├── summernote │ │ │ │ │ ├── font │ │ │ │ │ │ ├── summernote.eot │ │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ │ └── summernote.woff │ │ │ │ │ ├── summernote-bs3.css │ │ │ │ │ └── summernote.css │ │ │ │ ├── sweetalert │ │ │ │ │ └── sweetalert.css │ │ │ │ ├── switchery │ │ │ │ │ └── switchery.css │ │ │ │ ├── toastr │ │ │ │ │ └── toastr.min.css │ │ │ │ └── touchspin │ │ │ │ │ └── jquery.bootstrap-touchspin.min.css │ │ │ ├── style.css │ │ │ └── sweetalert.css │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── images.jpeg │ │ │ └── thumbs-up.jpg │ │ └── js │ │ │ ├── api │ │ │ └── typehead_collection.json │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── csrf_token.js │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── demo │ │ │ ├── chartjs-demo.js │ │ │ ├── dashboard-demo.js │ │ │ ├── flot-demo.js │ │ │ ├── flot-demo2.js │ │ │ ├── morris-demo.js │ │ │ ├── peity-demo.js │ │ │ ├── rickshaw-demo.js │ │ │ └── sparkline-demo.js │ │ │ ├── echarts-all.js │ │ │ ├── echarts.js │ │ │ ├── exporting.js │ │ │ ├── highstock.js │ │ │ ├── inspinia.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-2.1.1.js │ │ │ ├── jquery-ui-1.10.4.min.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.js │ │ │ ├── layer.js │ │ │ ├── plugins │ │ │ ├── blueimp │ │ │ │ └── jquery.blueimp-gallery.min.js │ │ │ ├── bootstrap-markdown │ │ │ │ ├── bootstrap-markdown.js │ │ │ │ └── markdown.js │ │ │ ├── bootstrap-tagsinput │ │ │ │ └── bootstrap-tagsinput.js │ │ │ ├── bootstrapTour │ │ │ │ └── bootstrap-tour.min.js │ │ │ ├── c3 │ │ │ │ └── c3.min.js │ │ │ ├── chartJs │ │ │ │ └── Chart.min.js │ │ │ ├── chartist │ │ │ │ ├── chartist.min.js │ │ │ │ └── chartist.min.js.map │ │ │ ├── chosen │ │ │ │ └── chosen.jquery.js │ │ │ ├── clipboard │ │ │ │ └── clipboard.min.js │ │ │ ├── clockpicker │ │ │ │ └── clockpicker.js │ │ │ ├── codemirror │ │ │ │ ├── codemirror.js │ │ │ │ └── mode │ │ │ │ │ ├── apl │ │ │ │ │ ├── apl.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk │ │ │ │ │ ├── asterisk.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── clike │ │ │ │ │ ├── clike.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── scala.html │ │ │ │ │ ├── clojure │ │ │ │ │ ├── clojure.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── cobol │ │ │ │ │ ├── cobol.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ ├── css.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── less.html │ │ │ │ │ ├── less_test.js │ │ │ │ │ ├── scss.html │ │ │ │ │ ├── scss_test.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── cypher │ │ │ │ │ ├── cypher.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── d │ │ │ │ │ ├── d.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff │ │ │ │ │ ├── diff.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── django │ │ │ │ │ ├── django.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── dtd │ │ │ │ │ ├── dtd.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── dylan │ │ │ │ │ ├── dylan.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl │ │ │ │ │ ├── ecl.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── eiffel │ │ │ │ │ ├── eiffel.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang │ │ │ │ │ ├── erlang.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── fortran │ │ │ │ │ ├── fortran.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── gas │ │ │ │ │ ├── gas.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm │ │ │ │ │ ├── gfm.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ │ ├── gherkin │ │ │ │ │ ├── gherkin.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── go │ │ │ │ │ ├── go.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy │ │ │ │ │ ├── groovy.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── haml │ │ │ │ │ ├── haml.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ │ ├── haskell │ │ │ │ │ ├── haskell.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe │ │ │ │ │ ├── haxe.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── http │ │ │ │ │ ├── http.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jade │ │ │ │ │ ├── index.html │ │ │ │ │ └── jade.js │ │ │ │ │ ├── javascript │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── json-ld.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2 │ │ │ │ │ ├── index.html │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── julia │ │ │ │ │ ├── index.html │ │ │ │ │ └── julia.js │ │ │ │ │ ├── kotlin │ │ │ │ │ ├── index.html │ │ │ │ │ └── kotlin.js │ │ │ │ │ ├── livescript │ │ │ │ │ ├── index.html │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua │ │ │ │ │ ├── index.html │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ ├── index.html │ │ │ │ │ ├── markdown.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc │ │ │ │ │ ├── index.html │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike │ │ │ │ │ ├── index.html │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica │ │ │ │ │ ├── index.html │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── nginx │ │ │ │ │ ├── index.html │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── ntriples │ │ │ │ │ ├── index.html │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave │ │ │ │ │ ├── index.html │ │ │ │ │ └── octave.js │ │ │ │ │ ├── pascal │ │ │ │ │ ├── index.html │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs │ │ │ │ │ ├── index.html │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl │ │ │ │ │ ├── index.html │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── php.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── pig │ │ │ │ │ ├── index.html │ │ │ │ │ └── pig.js │ │ │ │ │ ├── properties │ │ │ │ │ ├── index.html │ │ │ │ │ └── properties.js │ │ │ │ │ ├── puppet │ │ │ │ │ ├── index.html │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python │ │ │ │ │ ├── index.html │ │ │ │ │ └── python.js │ │ │ │ │ ├── q │ │ │ │ │ ├── index.html │ │ │ │ │ └── q.js │ │ │ │ │ ├── r │ │ │ │ │ ├── index.html │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ ├── changes │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst │ │ │ │ │ ├── index.html │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ruby.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── rust │ │ │ │ │ ├── index.html │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sass │ │ │ │ │ ├── index.html │ │ │ │ │ └── sass.js │ │ │ │ │ ├── scheme │ │ │ │ │ ├── index.html │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ ├── index.html │ │ │ │ │ ├── shell.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── sieve │ │ │ │ │ ├── index.html │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim │ │ │ │ │ ├── index.html │ │ │ │ │ ├── slim.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ ├── index.html │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ ├── index.html │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── smartymixed │ │ │ │ │ ├── index.html │ │ │ │ │ └── smartymixed.js │ │ │ │ │ ├── solr │ │ │ │ │ ├── index.html │ │ │ │ │ └── solr.js │ │ │ │ │ ├── sparql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── sql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex │ │ │ │ │ ├── index.html │ │ │ │ │ ├── stex.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── tcl │ │ │ │ │ ├── index.html │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml │ │ │ │ │ ├── index.html │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado │ │ │ │ │ ├── index.html │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── turtle │ │ │ │ │ ├── index.html │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── vb │ │ │ │ │ ├── index.html │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ ├── index.html │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ ├── index.html │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── xml │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yaml │ │ │ │ │ ├── index.html │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80 │ │ │ │ │ ├── index.html │ │ │ │ │ └── z80.js │ │ │ ├── colorpicker │ │ │ │ └── bootstrap-colorpicker.min.js │ │ │ ├── cropper │ │ │ │ └── cropper.min.js │ │ │ ├── d3 │ │ │ │ ├── LICENSE │ │ │ │ └── d3.min.js │ │ │ ├── dataTables │ │ │ │ └── datatables.min.js │ │ │ ├── datamaps │ │ │ │ └── datamaps.all.min.js │ │ │ ├── daterangepicker │ │ │ │ └── daterangepicker.js │ │ │ ├── diff_match_patch │ │ │ │ ├── COPYING │ │ │ │ ├── README.txt │ │ │ │ └── javascript │ │ │ │ │ └── diff_match_patch.js │ │ │ ├── dotdotdot │ │ │ │ └── jquery.dotdotdot.min.js │ │ │ ├── dropzone │ │ │ │ └── dropzone.js │ │ │ ├── dualListbox │ │ │ │ └── jquery.bootstrap-duallistbox.js │ │ │ ├── easypiechart │ │ │ │ ├── easypiechart.js │ │ │ │ └── jquery.easypiechart.js │ │ │ ├── flot │ │ │ │ ├── curvedLines.js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.spline.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ └── jquery.flot.tooltip.min.js │ │ │ ├── footable │ │ │ │ └── footable.all.min.js │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.min.js │ │ │ │ └── moment.min.js │ │ │ ├── gritter │ │ │ │ ├── images │ │ │ │ │ ├── gritter-light.png │ │ │ │ │ ├── gritter-long.png │ │ │ │ │ ├── gritter.png │ │ │ │ │ └── ie-spacer.gif │ │ │ │ ├── jquery.gritter.css │ │ │ │ └── jquery.gritter.min.js │ │ │ ├── i18next │ │ │ │ └── i18next.min.js │ │ │ ├── iCheck │ │ │ │ └── icheck.min.js │ │ │ ├── idle-timer │ │ │ │ └── idle-timer.min.js │ │ │ ├── ionRangeSlider │ │ │ │ └── ion.rangeSlider.min.js │ │ │ ├── jasny │ │ │ │ └── jasny-bootstrap.min.js │ │ │ ├── jeditable │ │ │ │ └── jquery.jeditable.js │ │ │ ├── jqGrid │ │ │ │ ├── i18n │ │ │ │ │ ├── grid.locale-ar.js │ │ │ │ │ ├── grid.locale-bg.js │ │ │ │ │ ├── grid.locale-bg1251.js │ │ │ │ │ ├── grid.locale-cat.js │ │ │ │ │ ├── grid.locale-cn.js │ │ │ │ │ ├── grid.locale-cs.js │ │ │ │ │ ├── grid.locale-da.js │ │ │ │ │ ├── grid.locale-de.js │ │ │ │ │ ├── grid.locale-dk.js │ │ │ │ │ ├── grid.locale-el.js │ │ │ │ │ ├── grid.locale-en.js │ │ │ │ │ ├── grid.locale-es.js │ │ │ │ │ ├── grid.locale-fa.js │ │ │ │ │ ├── grid.locale-fi.js │ │ │ │ │ ├── grid.locale-fr.js │ │ │ │ │ ├── grid.locale-gl.js │ │ │ │ │ ├── grid.locale-he.js │ │ │ │ │ ├── grid.locale-hr.js │ │ │ │ │ ├── grid.locale-hr1250.js │ │ │ │ │ ├── grid.locale-hu.js │ │ │ │ │ ├── grid.locale-id.js │ │ │ │ │ ├── grid.locale-is.js │ │ │ │ │ ├── grid.locale-it.js │ │ │ │ │ ├── grid.locale-ja.js │ │ │ │ │ ├── grid.locale-kr.js │ │ │ │ │ ├── grid.locale-lt.js │ │ │ │ │ ├── grid.locale-mne.js │ │ │ │ │ ├── grid.locale-nl.js │ │ │ │ │ ├── grid.locale-no.js │ │ │ │ │ ├── grid.locale-pl.js │ │ │ │ │ ├── grid.locale-pt-br.js │ │ │ │ │ ├── grid.locale-pt.js │ │ │ │ │ ├── grid.locale-ro.js │ │ │ │ │ ├── grid.locale-ru.js │ │ │ │ │ ├── grid.locale-sk.js │ │ │ │ │ ├── grid.locale-sr-latin.js │ │ │ │ │ ├── grid.locale-sr.js │ │ │ │ │ ├── grid.locale-sv.js │ │ │ │ │ ├── grid.locale-th.js │ │ │ │ │ ├── grid.locale-tr.js │ │ │ │ │ ├── grid.locale-tw.js │ │ │ │ │ ├── grid.locale-ua.js │ │ │ │ │ └── grid.locale-vi.js │ │ │ │ └── jquery.jqGrid.min.js │ │ │ ├── jquery-ui │ │ │ │ ├── i18n │ │ │ │ │ ├── jquery-ui-i18n.min.js │ │ │ │ │ ├── jquery.ui.datepicker-af.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ar-DZ.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ar.min.js │ │ │ │ │ ├── jquery.ui.datepicker-az.min.js │ │ │ │ │ ├── jquery.ui.datepicker-be.min.js │ │ │ │ │ ├── jquery.ui.datepicker-bg.min.js │ │ │ │ │ ├── jquery.ui.datepicker-bs.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ca.min.js │ │ │ │ │ ├── jquery.ui.datepicker-cs.min.js │ │ │ │ │ ├── jquery.ui.datepicker-cy-GB.min.js │ │ │ │ │ ├── jquery.ui.datepicker-da.min.js │ │ │ │ │ ├── jquery.ui.datepicker-de.min.js │ │ │ │ │ ├── jquery.ui.datepicker-el.min.js │ │ │ │ │ ├── jquery.ui.datepicker-en-AU.min.js │ │ │ │ │ ├── jquery.ui.datepicker-en-GB.min.js │ │ │ │ │ ├── jquery.ui.datepicker-en-NZ.min.js │ │ │ │ │ ├── jquery.ui.datepicker-eo.min.js │ │ │ │ │ ├── jquery.ui.datepicker-es.min.js │ │ │ │ │ ├── jquery.ui.datepicker-et.min.js │ │ │ │ │ ├── jquery.ui.datepicker-eu.min.js │ │ │ │ │ ├── jquery.ui.datepicker-fa.min.js │ │ │ │ │ ├── jquery.ui.datepicker-fi.min.js │ │ │ │ │ ├── jquery.ui.datepicker-fo.min.js │ │ │ │ │ ├── jquery.ui.datepicker-fr-CA.min.js │ │ │ │ │ ├── jquery.ui.datepicker-fr-CH.min.js │ │ │ │ │ ├── jquery.ui.datepicker-fr.min.js │ │ │ │ │ ├── jquery.ui.datepicker-gl.min.js │ │ │ │ │ ├── jquery.ui.datepicker-he.min.js │ │ │ │ │ ├── jquery.ui.datepicker-hi.min.js │ │ │ │ │ ├── jquery.ui.datepicker-hr.min.js │ │ │ │ │ ├── jquery.ui.datepicker-hu.min.js │ │ │ │ │ ├── jquery.ui.datepicker-hy.min.js │ │ │ │ │ ├── jquery.ui.datepicker-id.min.js │ │ │ │ │ ├── jquery.ui.datepicker-is.min.js │ │ │ │ │ ├── jquery.ui.datepicker-it.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ja.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ka.min.js │ │ │ │ │ ├── jquery.ui.datepicker-kk.min.js │ │ │ │ │ ├── jquery.ui.datepicker-km.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ko.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ky.min.js │ │ │ │ │ ├── jquery.ui.datepicker-lb.min.js │ │ │ │ │ ├── jquery.ui.datepicker-lt.min.js │ │ │ │ │ ├── jquery.ui.datepicker-lv.min.js │ │ │ │ │ ├── jquery.ui.datepicker-mk.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ml.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ms.min.js │ │ │ │ │ ├── jquery.ui.datepicker-nb.min.js │ │ │ │ │ ├── jquery.ui.datepicker-nl-BE.min.js │ │ │ │ │ ├── jquery.ui.datepicker-nl.min.js │ │ │ │ │ ├── jquery.ui.datepicker-nn.min.js │ │ │ │ │ ├── jquery.ui.datepicker-no.min.js │ │ │ │ │ ├── jquery.ui.datepicker-pl.min.js │ │ │ │ │ ├── jquery.ui.datepicker-pt-BR.min.js │ │ │ │ │ ├── jquery.ui.datepicker-pt.min.js │ │ │ │ │ ├── jquery.ui.datepicker-rm.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ro.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ru.min.js │ │ │ │ │ ├── jquery.ui.datepicker-sk.min.js │ │ │ │ │ ├── jquery.ui.datepicker-sl.min.js │ │ │ │ │ ├── jquery.ui.datepicker-sq.min.js │ │ │ │ │ ├── jquery.ui.datepicker-sr-SR.min.js │ │ │ │ │ ├── jquery.ui.datepicker-sr.min.js │ │ │ │ │ ├── jquery.ui.datepicker-sv.min.js │ │ │ │ │ ├── jquery.ui.datepicker-ta.min.js │ │ │ │ │ ├── jquery.ui.datepicker-th.min.js │ │ │ │ │ ├── jquery.ui.datepicker-tj.min.js │ │ │ │ │ ├── jquery.ui.datepicker-tr.min.js │ │ │ │ │ ├── jquery.ui.datepicker-uk.min.js │ │ │ │ │ ├── jquery.ui.datepicker-vi.min.js │ │ │ │ │ ├── jquery.ui.datepicker-zh-CN.min.js │ │ │ │ │ ├── jquery.ui.datepicker-zh-HK.min.js │ │ │ │ │ └── jquery.ui.datepicker-zh-TW.min.js │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery-ui.min.js │ │ │ ├── jsKnob │ │ │ │ └── jquery.knob.js │ │ │ ├── jsTree │ │ │ │ └── jstree.min.js │ │ │ ├── justified-gallery │ │ │ │ ├── README.md │ │ │ │ ├── jquery.justifiedgallery.css │ │ │ │ ├── jquery.justifiedgallery.js │ │ │ │ ├── jquery.justifiedgallery.min.css │ │ │ │ ├── jquery.justifiedgallery.min.js │ │ │ │ └── loading.gif │ │ │ ├── jvectormap │ │ │ │ ├── jquery-jvectormap-2.0.2.css │ │ │ │ ├── jquery-jvectormap-2.0.2.min.js │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ ├── ladda │ │ │ │ ├── ladda.jquery.min.js │ │ │ │ ├── ladda.min.js │ │ │ │ └── spin.min.js │ │ │ ├── masonary │ │ │ │ └── masonry.pkgd.min.js │ │ │ ├── metisMenu │ │ │ │ └── jquery.metisMenu.js │ │ │ ├── morris │ │ │ │ ├── morris.js │ │ │ │ └── raphael-2.1.0.min.js │ │ │ ├── nestable │ │ │ │ └── jquery.nestable.js │ │ │ ├── nouslider │ │ │ │ └── jquery.nouislider.min.js │ │ │ ├── pace │ │ │ │ └── pace.min.js │ │ │ ├── pdfjs │ │ │ │ ├── pdf.js │ │ │ │ └── pdf.worker.js │ │ │ ├── peity │ │ │ │ └── jquery.peity.min.js │ │ │ ├── preetyTextDiff │ │ │ │ └── jquery.pretty-text-diff.min.js │ │ │ ├── rickshaw │ │ │ │ ├── rickshaw.min.js │ │ │ │ └── vendor │ │ │ │ │ └── d3.v3.js │ │ │ ├── select2 │ │ │ │ └── select2.full.min.js │ │ │ ├── slick │ │ │ │ └── slick.min.js │ │ │ ├── slimscroll │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ └── jquery.slimscroll.min.js │ │ │ ├── sparkline │ │ │ │ └── jquery.sparkline.min.js │ │ │ ├── staps │ │ │ │ └── jquery.steps.min.js │ │ │ ├── summernote │ │ │ │ └── summernote.min.js │ │ │ ├── sweetalert │ │ │ │ └── sweetalert.min.js │ │ │ ├── switchery │ │ │ │ └── switchery.js │ │ │ ├── tinycon │ │ │ │ └── tinycon.min.js │ │ │ ├── toastr │ │ │ │ └── toastr.min.js │ │ │ ├── topojson │ │ │ │ ├── LICENSE │ │ │ │ └── topojson.js │ │ │ ├── touchspin │ │ │ │ └── jquery.bootstrap-touchspin.min.js │ │ │ ├── typehead │ │ │ │ └── bootstrap3-typeahead.min.js │ │ │ ├── validate │ │ │ │ └── jquery.validate.min.js │ │ │ ├── video │ │ │ │ └── responsible-video.js │ │ │ └── wow │ │ │ │ └── wow.min.js │ │ │ ├── skin │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ └── sweetalert.min.js │ ├── plugins │ │ └── fullavatareditor │ │ │ ├── asp.net │ │ │ ├── c# │ │ │ │ ├── Upload.aspx │ │ │ │ ├── Upload.aspx.cs │ │ │ │ └── bin │ │ │ │ │ └── Newtonsoft.Json.dll │ │ │ └── vb │ │ │ │ ├── Upload.aspx │ │ │ │ ├── Upload.aspx.vb │ │ │ │ └── bin │ │ │ │ └── Newtonsoft.Json.dll │ │ │ ├── asp │ │ │ ├── Upload.asp │ │ │ └── Upload.asp.cls │ │ │ ├── crossdomain.xml │ │ │ ├── expressInstall.swf │ │ │ ├── fullAvatarEditor.swf │ │ │ ├── jsp │ │ │ └── upload.jsp │ │ │ ├── php │ │ │ └── upload.php │ │ │ ├── scripts │ │ │ ├── fullAvatarEditor.js │ │ │ ├── jQuery.Cookie.js │ │ │ ├── jQuery.Drag.js │ │ │ ├── jQuery.Resize.js │ │ │ ├── jQuery.dialog.js │ │ │ ├── swfobject.js │ │ │ └── test.js │ │ │ └── simpleDemo.html │ └── upload │ │ ├── css │ │ ├── demo-ie8.css │ │ ├── demo.css │ │ ├── jquery.fileupload-noscript.css │ │ ├── jquery.fileupload-ui-noscript.css │ │ ├── jquery.fileupload-ui.css │ │ ├── jquery.fileupload.css │ │ └── style.css │ │ ├── img │ │ ├── loading.gif │ │ └── progressbar.gif │ │ └── js │ │ ├── app.js │ │ ├── cors │ │ ├── jquery.postmessage-transport.js │ │ └── jquery.xdr-transport.js │ │ ├── jquery.fileupload-angular.js │ │ ├── jquery.fileupload-audio.js │ │ ├── jquery.fileupload-image.js │ │ ├── jquery.fileupload-jquery-ui.js │ │ ├── jquery.fileupload-process.js │ │ ├── jquery.fileupload-ui.js │ │ ├── jquery.fileupload-validate.js │ │ ├── jquery.fileupload-video.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.iframe-transport.js │ │ ├── main.js │ │ └── vendor │ │ └── jquery.ui.widget.js └── templates │ ├── 404.html │ ├── all_job_list.html │ ├── all_job_log.html │ ├── auth │ ├── change_email.html │ ├── change_password.html │ ├── email │ │ ├── board.html │ │ ├── change_email.html │ │ ├── change_email.txt │ │ ├── confirm.html │ │ ├── confirm.txt │ │ ├── reset_password.html │ │ └── reset_password.txt │ ├── login.html │ ├── login2.html │ ├── register.html │ ├── reset_password.html │ └── unconfirmed.html │ ├── base.html │ ├── create_job.html │ ├── index.html │ ├── location.html │ ├── login_log.html │ ├── mail │ ├── new_message.html │ ├── new_message.txt │ ├── new_user.html │ ├── new_user.txt │ └── task_list.html │ ├── others.html │ └── stdout.html ├── docs └── image │ ├── addjob.png │ ├── liuchengtu.png │ ├── login.png │ ├── logo.png │ ├── pausejob.png │ └── stdout.png ├── jobs └── crawler_girls.py ├── script └── demon_run.sh ├── test.py └── webhook.py /.flaskenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/.flaskenv -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/auth/__init__.py -------------------------------------------------------------------------------- /app/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/auth/forms.py -------------------------------------------------------------------------------- /app/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/auth/views.py -------------------------------------------------------------------------------- /app/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/commands.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/config.py -------------------------------------------------------------------------------- /app/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/decorators.py -------------------------------------------------------------------------------- /app/dingding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/dingding.py -------------------------------------------------------------------------------- /app/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/email.py -------------------------------------------------------------------------------- /app/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/extensions.py -------------------------------------------------------------------------------- /app/job/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/job/__init__.py -------------------------------------------------------------------------------- /app/job/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/job/core.py -------------------------------------------------------------------------------- /app/job/public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/job/public.py -------------------------------------------------------------------------------- /app/job/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/job/views.py -------------------------------------------------------------------------------- /app/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/main/__init__.py -------------------------------------------------------------------------------- /app/main/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/main/errors.py -------------------------------------------------------------------------------- /app/main/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/main/forms.py -------------------------------------------------------------------------------- /app/main/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/main/views.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/models.py -------------------------------------------------------------------------------- /app/static/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/animate.css -------------------------------------------------------------------------------- /app/static/css/bootstrap-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/bootstrap-rtl.css -------------------------------------------------------------------------------- /app/static/css/bootstrap.min.css_back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/bootstrap.min.css_back -------------------------------------------------------------------------------- /app/static/css/bootstrap.min.csss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/bootstrap.min.csss -------------------------------------------------------------------------------- /app/static/css/demo/webuploader-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/demo/webuploader-demo.css -------------------------------------------------------------------------------- /app/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/font-awesome.css -------------------------------------------------------------------------------- /app/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /app/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/login.css -------------------------------------------------------------------------------- /app/static/css/patterns/header-profile-skin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/patterns/header-profile-skin-1.png -------------------------------------------------------------------------------- /app/static/css/patterns/header-profile-skin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/patterns/header-profile-skin-3.png -------------------------------------------------------------------------------- /app/static/css/patterns/header-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/patterns/header-profile.png -------------------------------------------------------------------------------- /app/static/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/patterns/shattered.png -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/css/blueimp-gallery-video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/css/blueimp-gallery-video.css -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/css/blueimp-gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/css/blueimp-gallery.css -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/css/blueimp-gallery.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/css/blueimp-gallery.min.css -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/css/demo.css -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/img/error.png -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/img/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/img/error.svg -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/img/loading.gif -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/img/play-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/img/play-pause.png -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/img/play-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/img/play-pause.svg -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/img/video-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/img/video-play.png -------------------------------------------------------------------------------- /app/static/css/plugins/blueimp/img/video-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/blueimp/img/video-play.svg -------------------------------------------------------------------------------- /app/static/css/plugins/bootstrap-table/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/bootstrap-table/bootstrap-table.min.css -------------------------------------------------------------------------------- /app/static/css/plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /app/static/css/plugins/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /app/static/css/plugins/chosen/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/chosen/chosen.css -------------------------------------------------------------------------------- /app/static/css/plugins/clockpicker/clockpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/clockpicker/clockpicker.css -------------------------------------------------------------------------------- /app/static/css/plugins/codemirror/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/codemirror/ambiance.css -------------------------------------------------------------------------------- /app/static/css/plugins/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/codemirror/codemirror.css -------------------------------------------------------------------------------- /app/static/css/plugins/cropper/cropper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/cropper/cropper.min.css -------------------------------------------------------------------------------- /app/static/css/plugins/dataTables/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/dataTables/dataTables.bootstrap.css -------------------------------------------------------------------------------- /app/static/css/plugins/datapicker/datepicker3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/datapicker/datepicker3.css -------------------------------------------------------------------------------- /app/static/css/plugins/dropzone/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/dropzone/basic.css -------------------------------------------------------------------------------- /app/static/css/plugins/dropzone/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/dropzone/dropzone.css -------------------------------------------------------------------------------- /app/static/css/plugins/duallistbox/bootstrap-duallistbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/duallistbox/bootstrap-duallistbox.css -------------------------------------------------------------------------------- /app/static/css/plugins/footable/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/footable/fonts/footable.eot -------------------------------------------------------------------------------- /app/static/css/plugins/footable/fonts/footable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/footable/fonts/footable.svg -------------------------------------------------------------------------------- /app/static/css/plugins/footable/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/footable/fonts/footable.ttf -------------------------------------------------------------------------------- /app/static/css/plugins/footable/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/footable/fonts/footable.woff -------------------------------------------------------------------------------- /app/static/css/plugins/footable/footable.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/footable/footable.core.css -------------------------------------------------------------------------------- /app/static/css/plugins/fullcalendar/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/fullcalendar/fullcalendar.css -------------------------------------------------------------------------------- /app/static/css/plugins/fullcalendar/fullcalendar.print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/fullcalendar/fullcalendar.print.css -------------------------------------------------------------------------------- /app/static/css/plugins/iCheck/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/iCheck/custom.css -------------------------------------------------------------------------------- /app/static/css/plugins/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/iCheck/green.png -------------------------------------------------------------------------------- /app/static/css/plugins/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/iCheck/green@2x.png -------------------------------------------------------------------------------- /app/static/css/plugins/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/images/sort_asc.png -------------------------------------------------------------------------------- /app/static/css/plugins/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/images/sort_desc.png -------------------------------------------------------------------------------- /app/static/css/plugins/images/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/images/sprite-skin-flat.png -------------------------------------------------------------------------------- /app/static/css/plugins/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/images/spritemap.png -------------------------------------------------------------------------------- /app/static/css/plugins/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/images/spritemap@2x.png -------------------------------------------------------------------------------- /app/static/css/plugins/ionRangeSlider/ion.rangeSlider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/ionRangeSlider/ion.rangeSlider.css -------------------------------------------------------------------------------- /app/static/css/plugins/jasny/jasny-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/jasny/jasny-bootstrap.min.css -------------------------------------------------------------------------------- /app/static/css/plugins/jqgrid/ui.jqgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/jqgrid/ui.jqgrid.css -------------------------------------------------------------------------------- /app/static/css/plugins/jsTree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/jsTree/32px.png -------------------------------------------------------------------------------- /app/static/css/plugins/jsTree/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/jsTree/style.min.css -------------------------------------------------------------------------------- /app/static/css/plugins/jsTree/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/jsTree/throbber.gif -------------------------------------------------------------------------------- /app/static/css/plugins/markdown/bootstrap-markdown.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/markdown/bootstrap-markdown.min.css -------------------------------------------------------------------------------- /app/static/css/plugins/morris/morris-0.4.3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/morris/morris-0.4.3.min.css -------------------------------------------------------------------------------- /app/static/css/plugins/multiselect/bootstrap-multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/multiselect/bootstrap-multiselect.css -------------------------------------------------------------------------------- /app/static/css/plugins/nouslider/jquery.nouislider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/nouslider/jquery.nouislider.css -------------------------------------------------------------------------------- /app/static/css/plugins/plyr/plyr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/plyr/plyr.css -------------------------------------------------------------------------------- /app/static/css/plugins/plyr/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/plyr/sprite.svg -------------------------------------------------------------------------------- /app/static/css/plugins/simditor/simditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/simditor/simditor.css -------------------------------------------------------------------------------- /app/static/css/plugins/steps/jquery.steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/steps/jquery.steps.css -------------------------------------------------------------------------------- /app/static/css/plugins/summernote/summernote-bs3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/summernote/summernote-bs3.css -------------------------------------------------------------------------------- /app/static/css/plugins/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/summernote/summernote.css -------------------------------------------------------------------------------- /app/static/css/plugins/sweetalert/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/sweetalert/sweetalert.css -------------------------------------------------------------------------------- /app/static/css/plugins/switchery/switchery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/switchery/switchery.css -------------------------------------------------------------------------------- /app/static/css/plugins/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/toastr/toastr.min.css -------------------------------------------------------------------------------- /app/static/css/plugins/treeview/bootstrap-treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/treeview/bootstrap-treeview.css -------------------------------------------------------------------------------- /app/static/css/plugins/webuploader/webuploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/plugins/webuploader/webuploader.css -------------------------------------------------------------------------------- /app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/style.css -------------------------------------------------------------------------------- /app/static/css/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/css/sweetalert.css -------------------------------------------------------------------------------- /app/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/favicon.ico -------------------------------------------------------------------------------- /app/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /app/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/static/img/QQ20171102-002842-HD.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/QQ20171102-002842-HD.gif -------------------------------------------------------------------------------- /app/static/img/barbarian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/barbarian.png -------------------------------------------------------------------------------- /app/static/img/blog.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/blog.jpeg -------------------------------------------------------------------------------- /app/static/img/browser.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/browser.psd -------------------------------------------------------------------------------- /app/static/img/deving.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/deving.jpeg -------------------------------------------------------------------------------- /app/static/img/dribbble_shots__my_task.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/dribbble_shots__my_task.jpg -------------------------------------------------------------------------------- /app/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/favicon.ico -------------------------------------------------------------------------------- /app/static/img/fuck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/fuck.jpg -------------------------------------------------------------------------------- /app/static/img/goblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/goblin.png -------------------------------------------------------------------------------- /app/static/img/logo-taskio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/logo-taskio.png -------------------------------------------------------------------------------- /app/static/img/miaopai.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/miaopai.jpeg -------------------------------------------------------------------------------- /app/static/img/notice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/notice.jpg -------------------------------------------------------------------------------- /app/static/img/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/test.gif -------------------------------------------------------------------------------- /app/static/img/tux.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/tux.jpeg -------------------------------------------------------------------------------- /app/static/img/tux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/tux.jpg -------------------------------------------------------------------------------- /app/static/img/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/img/wizard.png -------------------------------------------------------------------------------- /app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/js/contabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/contabs.js -------------------------------------------------------------------------------- /app/static/js/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/content.js -------------------------------------------------------------------------------- /app/static/js/daterangepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/daterangepicker.js -------------------------------------------------------------------------------- /app/static/js/demo/bootstrap-table-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/bootstrap-table-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/bootstrap_table_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/bootstrap_table_test.json -------------------------------------------------------------------------------- /app/static/js/demo/bootstrap_table_test2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/bootstrap_table_test2.json -------------------------------------------------------------------------------- /app/static/js/demo/echarts-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/echarts-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/flot-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/flot-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/form-advanced-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/form-advanced-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/form-validate-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/form-validate-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/layer-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/layer-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/morris-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/morris-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/peity-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/peity-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/photos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/photos.json -------------------------------------------------------------------------------- /app/static/js/demo/rickshaw-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/rickshaw-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/sparkline-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/sparkline-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/table_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/table_base.json -------------------------------------------------------------------------------- /app/static/js/demo/treeview-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/treeview-demo.js -------------------------------------------------------------------------------- /app/static/js/demo/webuploader-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/demo/webuploader-demo.js -------------------------------------------------------------------------------- /app/static/js/hplus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/hplus.js -------------------------------------------------------------------------------- /app/static/js/jquery-ui-1.10.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/jquery-ui-1.10.4.min.js -------------------------------------------------------------------------------- /app/static/js/jquery-ui.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/jquery-ui.custom.min.js -------------------------------------------------------------------------------- /app/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/jquery.min.js -------------------------------------------------------------------------------- /app/static/js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/jquery.min.map -------------------------------------------------------------------------------- /app/static/js/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/jquery.sparkline.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/beautifyhtml/beautifyhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/beautifyhtml/beautifyhtml.js -------------------------------------------------------------------------------- /app/static/js/plugins/blueimp/jquery.blueimp-gallery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/blueimp/jquery.blueimp-gallery.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/bootstrap-table/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/bootstrap-table/bootstrap-table.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/chartJs/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/chartJs/Chart.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/chosen/chosen.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/chosen/chosen.jquery.js -------------------------------------------------------------------------------- /app/static/js/plugins/clockpicker/clockpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/clockpicker/clockpicker.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/codemirror.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/apl/apl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/apl/apl.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/apl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/apl/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/asterisk/asterisk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/asterisk/asterisk.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/asterisk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/asterisk/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/clike/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/clike/clike.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/clike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/clike/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/clike/scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/clike/scala.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/clojure/clojure.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/clojure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/clojure/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/cobol/cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/cobol/cobol.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/cobol/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/cobol/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/coffeescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/coffeescript/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/commonlisp/commonlisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/commonlisp/commonlisp.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/commonlisp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/commonlisp/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/css/css.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/css/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/css/less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/css/less.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/css/less_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/css/less_test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/css/scss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/css/scss.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/css/scss_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/css/scss_test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/css/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/css/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/cypher/cypher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/cypher/cypher.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/cypher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/cypher/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/d/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/d/d.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/d/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/dart/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/dart/dart.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/dart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/dart/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/diff/diff.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/diff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/diff/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/django/django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/django/django.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/django/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/django/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/dockerfile/dockerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/dockerfile/dockerfile.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/dockerfile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/dockerfile/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/dtd/dtd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/dtd/dtd.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/dtd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/dtd/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/dylan/dylan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/dylan/dylan.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/dylan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/dylan/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/ebnf/ebnf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/ebnf/ebnf.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/ebnf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/ebnf/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/ecl/ecl.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/ecl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/ecl/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/eiffel/eiffel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/eiffel/eiffel.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/eiffel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/eiffel/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/erlang/erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/erlang/erlang.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/erlang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/erlang/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/fortran/fortran.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/fortran/fortran.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/fortran/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/fortran/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/gas/gas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/gas/gas.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/gas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/gas/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/gfm/gfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/gfm/gfm.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/gfm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/gfm/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/gfm/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/gfm/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/gherkin/gherkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/gherkin/gherkin.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/gherkin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/gherkin/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/go/go.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/go/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/groovy/groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/groovy/groovy.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/groovy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/groovy/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/haml/haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/haml/haml.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/haml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/haml/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/haml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/haml/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/haskell/haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/haskell/haskell.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/haskell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/haskell/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/haxe/haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/haxe/haxe.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/haxe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/haxe/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/htmlembedded/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/htmlembedded/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/htmlmixed/htmlmixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/htmlmixed/htmlmixed.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/htmlmixed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/htmlmixed/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/http/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/http/http.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/http/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/http/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/idl/idl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/idl/idl.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/idl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/idl/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/jade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/jade/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/jade/jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/jade/jade.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/javascript/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/javascript/javascript.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/javascript/json-ld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/javascript/json-ld.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/javascript/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/javascript/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/jinja2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/jinja2/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/jinja2/jinja2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/jinja2/jinja2.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/julia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/julia/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/julia/julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/julia/julia.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/kotlin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/kotlin/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/kotlin/kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/kotlin/kotlin.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/livescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/livescript/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/livescript/livescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/livescript/livescript.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/lua/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/lua/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/lua/lua.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/markdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/markdown/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/markdown/markdown.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/markdown/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/markdown/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/meta.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/mirc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/mirc/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/mirc/mirc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/mirc/mirc.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/mllike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/mllike/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/mllike/mllike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/mllike/mllike.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/modelica/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/modelica/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/modelica/modelica.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/modelica/modelica.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/nginx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/nginx/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/nginx/nginx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/nginx/nginx.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/ntriples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/ntriples/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/ntriples/ntriples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/ntriples/ntriples.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/octave/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/octave/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/octave/octave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/octave/octave.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/pascal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/pascal/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/pascal/pascal.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/pegjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/pegjs/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/pegjs/pegjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/pegjs/pegjs.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/perl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/perl/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/perl/perl.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/php/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/php/php.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/php/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/php/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/pig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/pig/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/pig/pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/pig/pig.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/properties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/properties/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/properties/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/properties/properties.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/puppet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/puppet/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/puppet/puppet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/puppet/puppet.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/python/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/python/python.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/q/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/q/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/q/q.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/r/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/r/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/r/r.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/rpm/changes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/rpm/changes/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/rpm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/rpm/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/rpm/rpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/rpm/rpm.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/rst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/rst/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/rst/rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/rst/rst.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/ruby/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/ruby/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/ruby/ruby.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/ruby/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/ruby/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/rust/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/rust/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/rust/rust.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/sass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/sass/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/sass/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/sass/sass.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/scheme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/scheme/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/scheme/scheme.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/shell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/shell/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/shell/shell.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/shell/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/shell/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/sieve/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/sieve/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/sieve/sieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/sieve/sieve.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/slim/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/slim/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/slim/slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/slim/slim.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/slim/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/slim/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/smalltalk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/smalltalk/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/smalltalk/smalltalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/smalltalk/smalltalk.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/smarty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/smarty/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/smarty/smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/smarty/smarty.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/smartymixed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/smartymixed/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/solr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/solr/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/solr/solr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/solr/solr.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/soy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/soy/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/soy/soy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/soy/soy.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/sparql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/sparql/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/sparql/sparql.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/spreadsheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/spreadsheet/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/sql/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/sql/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/sql/sql.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/stex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/stex/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/stex/stex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/stex/stex.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/stex/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/stex/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/tcl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/tcl/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/tcl/tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/tcl/tcl.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/textile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/textile/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/textile/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/textile/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/textile/textile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/textile/textile.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/tiddlywiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/tiddlywiki/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/tiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/tiki/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/tiki/tiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/tiki/tiki.css -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/tiki/tiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/tiki/tiki.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/toml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/toml/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/toml/toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/toml/toml.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/tornado/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/tornado/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/tornado/tornado.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/tornado/tornado.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/turtle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/turtle/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/turtle/turtle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/turtle/turtle.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/vb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/vb/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/vb/vb.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/vbscript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/vbscript/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/vbscript/vbscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/vbscript/vbscript.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/velocity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/velocity/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/velocity/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/velocity/velocity.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/verilog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/verilog/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/verilog/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/verilog/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/verilog/verilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/verilog/verilog.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/xml/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/xml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/xml/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/xml/xml.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/xquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/xquery/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/xquery/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/xquery/test.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/xquery/xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/xquery/xquery.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/yaml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/yaml/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/yaml/yaml.js -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/z80/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/z80/index.html -------------------------------------------------------------------------------- /app/static/js/plugins/codemirror/mode/z80/z80.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/codemirror/mode/z80/z80.js -------------------------------------------------------------------------------- /app/static/js/plugins/colorpicker/bootstrap-colorpicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/colorpicker/bootstrap-colorpicker.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/cropper/cropper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/cropper/cropper.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/dataTables/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/dataTables/dataTables.bootstrap.js -------------------------------------------------------------------------------- /app/static/js/plugins/dataTables/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/dataTables/jquery.dataTables.js -------------------------------------------------------------------------------- /app/static/js/plugins/datapicker/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/datapicker/bootstrap-datepicker.js -------------------------------------------------------------------------------- /app/static/js/plugins/diff_match_patch/diff_match_patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/diff_match_patch/diff_match_patch.js -------------------------------------------------------------------------------- /app/static/js/plugins/dropzone/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/dropzone/dropzone.js -------------------------------------------------------------------------------- /app/static/js/plugins/easypiechart/jquery.easypiechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/easypiechart/jquery.easypiechart.js -------------------------------------------------------------------------------- /app/static/js/plugins/echarts/echarts-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/echarts/echarts-all.js -------------------------------------------------------------------------------- /app/static/js/plugins/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fancybox/blank.gif -------------------------------------------------------------------------------- /app/static/js/plugins/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /app/static/js/plugins/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /app/static/js/plugins/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /app/static/js/plugins/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /app/static/js/plugins/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /app/static/js/plugins/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /app/static/js/plugins/fancybox/jquery.fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fancybox/jquery.fancybox.js -------------------------------------------------------------------------------- /app/static/js/plugins/flot/curvedLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/flot/curvedLines.js -------------------------------------------------------------------------------- /app/static/js/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /app/static/js/plugins/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /app/static/js/plugins/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /app/static/js/plugins/flot/jquery.flot.spline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/flot/jquery.flot.spline.js -------------------------------------------------------------------------------- /app/static/js/plugins/flot/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/flot/jquery.flot.symbol.js -------------------------------------------------------------------------------- /app/static/js/plugins/flot/jquery.flot.tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/flot/jquery.flot.tooltip.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/footable/footable.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/footable/footable.all.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/fullcalendar/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fullcalendar/fullcalendar.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/fullcalendar/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/fullcalendar/moment.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /app/static/js/plugins/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/gritter/images/gritter.png -------------------------------------------------------------------------------- /app/static/js/plugins/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /app/static/js/plugins/gritter/jquery.gritter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/gritter/jquery.gritter.css -------------------------------------------------------------------------------- /app/static/js/plugins/gritter/jquery.gritter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/gritter/jquery.gritter.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/iCheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/iCheck/icheck.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/ionRangeSlider/ion.rangeSlider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/ionRangeSlider/ion.rangeSlider.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/jasny/jasny-bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/jasny/jasny-bootstrap.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/jeditable/jquery.jeditable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/jeditable/jquery.jeditable.js -------------------------------------------------------------------------------- /app/static/js/plugins/jqgrid/i18n/grid.locale-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/jqgrid/i18n/grid.locale-cn.js -------------------------------------------------------------------------------- /app/static/js/plugins/jqgrid/jquery.jqGrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/jqgrid/jquery.jqGrid.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/jsKnob/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/jsKnob/jquery.knob.js -------------------------------------------------------------------------------- /app/static/js/plugins/jsTree/jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/jsTree/jstree.js -------------------------------------------------------------------------------- /app/static/js/plugins/jsTree/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/jsTree/jstree.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/layer/extend/layer.ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/extend/layer.ext.js -------------------------------------------------------------------------------- /app/static/js/plugins/layer/laydate/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/laydate/laydate.js -------------------------------------------------------------------------------- /app/static/js/plugins/layer/laydate/need/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/laydate/need/laydate.css -------------------------------------------------------------------------------- /app/static/js/plugins/layer/laydate/skins/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/laydate/skins/default/icon.png -------------------------------------------------------------------------------- /app/static/js/plugins/layer/laydate/skins/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/laydate/skins/default/laydate.css -------------------------------------------------------------------------------- /app/static/js/plugins/layer/layer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/layer.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/layer/layim/data/chatlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/layim/data/chatlog.json -------------------------------------------------------------------------------- /app/static/js/plugins/layer/layim/data/friend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/layim/data/friend.json -------------------------------------------------------------------------------- /app/static/js/plugins/layer/layim/data/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/layim/data/group.json -------------------------------------------------------------------------------- /app/static/js/plugins/layer/layim/data/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/layim/data/groups.json -------------------------------------------------------------------------------- /app/static/js/plugins/layer/layim/layim.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/layim/layim.css -------------------------------------------------------------------------------- /app/static/js/plugins/layer/layim/layim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/layim/layim.js -------------------------------------------------------------------------------- /app/static/js/plugins/layer/layim/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/layim/loading.gif -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/icon.png -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/icon_ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/icon_ext.png -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/textbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/textbg.png -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/xubox_ico0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/xubox_ico0.png -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/xubox_loading0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/xubox_loading0.gif -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/xubox_loading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/xubox_loading1.gif -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/xubox_loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/xubox_loading2.gif -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/xubox_loading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/xubox_loading3.gif -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/default/xubox_title0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/default/xubox_title0.png -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/layer.css -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/layer.ext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/layer.ext.css -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/moon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/moon/default.png -------------------------------------------------------------------------------- /app/static/js/plugins/layer/skin/moon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/layer/skin/moon/style.css -------------------------------------------------------------------------------- /app/static/js/plugins/markdown/bootstrap-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/markdown/bootstrap-markdown.js -------------------------------------------------------------------------------- /app/static/js/plugins/markdown/bootstrap-markdown.zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/markdown/bootstrap-markdown.zh.js -------------------------------------------------------------------------------- /app/static/js/plugins/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/markdown/markdown.js -------------------------------------------------------------------------------- /app/static/js/plugins/markdown/to-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/markdown/to-markdown.js -------------------------------------------------------------------------------- /app/static/js/plugins/metisMenu/jquery.metisMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/metisMenu/jquery.metisMenu.js -------------------------------------------------------------------------------- /app/static/js/plugins/morris/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/morris/morris.js -------------------------------------------------------------------------------- /app/static/js/plugins/morris/raphael-2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/morris/raphael-2.1.0.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/multiselect/bootstrap-multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/multiselect/bootstrap-multiselect.js -------------------------------------------------------------------------------- /app/static/js/plugins/nestable/jquery.nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/nestable/jquery.nestable.js -------------------------------------------------------------------------------- /app/static/js/plugins/nouslider/jquery.nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/nouslider/jquery.nouislider.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/pace/pace.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/peity/jquery.peity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/peity/jquery.peity.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/plyr/plyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/plyr/plyr.js -------------------------------------------------------------------------------- /app/static/js/plugins/prettyfile/bootstrap-prettyfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/prettyfile/bootstrap-prettyfile.js -------------------------------------------------------------------------------- /app/static/js/plugins/rickshaw/rickshaw.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/rickshaw/rickshaw.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/rickshaw/vendor/d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/rickshaw/vendor/d3.v3.js -------------------------------------------------------------------------------- /app/static/js/plugins/simditor/hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/simditor/hotkeys.js -------------------------------------------------------------------------------- /app/static/js/plugins/simditor/hotkeys.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/simditor/hotkeys.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/simditor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/simditor/jquery.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/simditor/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/simditor/module.js -------------------------------------------------------------------------------- /app/static/js/plugins/simditor/module.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/simditor/module.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/simditor/simditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/simditor/simditor.js -------------------------------------------------------------------------------- /app/static/js/plugins/simditor/simditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/simditor/simditor.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/simditor/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/simditor/uploader.js -------------------------------------------------------------------------------- /app/static/js/plugins/simditor/uploader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/simditor/uploader.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/slimscroll/jquery.slimscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/slimscroll/jquery.slimscroll.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/sparkline/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/sparkline/jquery.sparkline.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/staps/jquery.steps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/staps/jquery.steps.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/suggest/bootstrap-suggest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/suggest/bootstrap-suggest.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/suggest/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/suggest/data.json -------------------------------------------------------------------------------- /app/static/js/plugins/summernote/summernote-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/summernote/summernote-zh-CN.js -------------------------------------------------------------------------------- /app/static/js/plugins/summernote/summernote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/summernote/summernote.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/sweetalert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/sweetalert/sweetalert.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/switchery/switchery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/switchery/switchery.js -------------------------------------------------------------------------------- /app/static/js/plugins/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/toastr/toastr.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/treeview/bootstrap-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/treeview/bootstrap-treeview.js -------------------------------------------------------------------------------- /app/static/js/plugins/validate/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/validate/additional-methods.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/validate/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/validate/jquery.validate.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/validate/messages_zh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/validate/messages_zh.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/README.md -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/Uploader.swf -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.css -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.custom.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.custom.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.fis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.fis.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.flashonly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.flashonly.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.flashonly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.flashonly.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.html5only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.html5only.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.html5only.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.html5only.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.noimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.noimage.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.noimage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.noimage.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.nolog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.nolog.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.nolog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.nolog.min.js -------------------------------------------------------------------------------- /app/static/js/plugins/webuploader/webuploader.withoutimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/plugins/webuploader/webuploader.withoutimage.js -------------------------------------------------------------------------------- /app/static/js/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/sweetalert.min.js -------------------------------------------------------------------------------- /app/static/js/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/js/welcome.js -------------------------------------------------------------------------------- /app/static/opsplatform/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/animate.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/bk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/bk.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/bk.css.map: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/opsplatform/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/bootstrap.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/bootstrap.css.map -------------------------------------------------------------------------------- /app/static/opsplatform/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /app/static/opsplatform/css/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/dataTables.bootstrap.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/layer.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/loading.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/1.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/2.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/3.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/4.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/5.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/6.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/7.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/congruent_pentagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/congruent_pentagon.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/header-profile-skin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/header-profile-skin-1.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/header-profile-skin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/header-profile-skin-2.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/header-profile-skin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/header-profile-skin-3.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/header-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/header-profile.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/otis_redding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/otis_redding.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/shattered.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/patterns/triangular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/patterns/triangular.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/blueimp/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/blueimp/css/demo.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/blueimp/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/blueimp/img/error.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/blueimp/img/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/blueimp/img/error.svg -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/blueimp/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/blueimp/img/loading.gif -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/blueimp/img/play-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/blueimp/img/play-pause.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/blueimp/img/play-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/blueimp/img/play-pause.svg -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/blueimp/img/video-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/blueimp/img/video-play.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/blueimp/img/video-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/blueimp/img/video-play.svg -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/c3/c3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/c3/c3.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/chartist/chartist.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/chartist/chartist.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/chosen/bootstrap-chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/chosen/bootstrap-chosen.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/chosen/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/chosen/chosen.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/clockpicker/clockpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/clockpicker/clockpicker.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/codemirror/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/codemirror/ambiance.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/codemirror/codemirror.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/cropper/cropper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/cropper/cropper.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/datapicker/datepicker3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/datapicker/datepicker3.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/dropzone/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/dropzone/basic.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/dropzone/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/dropzone/dropzone.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/footable/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/footable/fonts/footable.eot -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/footable/fonts/footable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/footable/fonts/footable.svg -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/footable/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/footable/fonts/footable.ttf -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/footable/footable.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/footable/footable.core.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/iCheck/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/iCheck/custom.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/iCheck/green.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/iCheck/green@2x.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/images/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/images/sort.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/images/sort_asc.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/images/sort_desc.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/images/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/images/sprite-skin-flat.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/images/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/images/sprite-skin-nice.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/images/spritemap.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/images/spritemap@2x.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/jQueryUI/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/jQueryUI/jquery-ui.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/jqGrid/ui.jqgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/jqGrid/ui.jqgrid.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/jsTree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/jsTree/32px.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/jsTree/39px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/jsTree/39px.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/jsTree/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/jsTree/40px.png -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/jsTree/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/jsTree/style.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/jsTree/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/jsTree/style.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/jsTree/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/jsTree/throbber.gif -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/ladda/ladda.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/ladda/ladda.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/morris/morris-0.4.3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/morris/morris-0.4.3.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/select2/select2.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/slick/ajax-loader.gif -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/slick/fonts/slick.eot -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/slick/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/slick/fonts/slick.svg -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/slick/fonts/slick.woff -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/slick/slick-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/slick/slick-theme.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/slick/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/slick/slick.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/steps/jquery.steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/steps/jquery.steps.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/summernote/summernote.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/sweetalert/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/sweetalert/sweetalert.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/switchery/switchery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/switchery/switchery.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/plugins/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/plugins/toastr/toastr.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/style.css -------------------------------------------------------------------------------- /app/static/opsplatform/css/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/css/sweetalert.css -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/animated.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/core.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/icons.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/larger.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/list.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/path.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/less/variables.less -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_animated.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /app/static/opsplatform/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /app/static/opsplatform/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/static/opsplatform/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/static/opsplatform/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/static/opsplatform/img/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/img/images.jpeg -------------------------------------------------------------------------------- /app/static/opsplatform/img/thumbs-up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/img/thumbs-up.jpg -------------------------------------------------------------------------------- /app/static/opsplatform/js/api/typehead_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/api/typehead_collection.json -------------------------------------------------------------------------------- /app/static/opsplatform/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/bootstrap.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/csrf_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/csrf_token.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/dataTables.bootstrap.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/demo/chartjs-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/demo/chartjs-demo.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/demo/dashboard-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/demo/dashboard-demo.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/demo/flot-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/demo/flot-demo.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/demo/flot-demo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/demo/flot-demo2.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/demo/morris-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/demo/morris-demo.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/demo/peity-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/demo/peity-demo.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/demo/rickshaw-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/demo/rickshaw-demo.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/demo/sparkline-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/demo/sparkline-demo.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/echarts-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/echarts-all.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/echarts.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/exporting.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/highstock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/highstock.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/inspinia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/inspinia.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/jquery-2.1.1.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/jquery-ui-1.10.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/jquery-ui-1.10.4.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/jquery-ui.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/jquery-ui.custom.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/jquery.dataTables.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/jquery.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/layer.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/c3/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/c3/c3.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/chartJs/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/chartJs/Chart.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/chartist/chartist.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/chartist/chartist.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/chosen/chosen.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/chosen/chosen.jquery.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/codemirror/codemirror.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/codemirror/mode/d/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/codemirror/mode/d/d.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/codemirror/mode/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/codemirror/mode/go/go.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/codemirror/mode/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/codemirror/mode/meta.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/codemirror/mode/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/codemirror/mode/q/q.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/codemirror/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/codemirror/mode/r/r.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/codemirror/mode/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/codemirror/mode/vb/vb.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/cropper/cropper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/cropper/cropper.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/d3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/d3/LICENSE -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/d3/d3.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/diff_match_patch/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/diff_match_patch/COPYING -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/dropzone/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/dropzone/dropzone.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/flot/curvedLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/flot/curvedLines.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/flot/excanvas.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/flot/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/flot/jquery.flot.time.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/i18next/i18next.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/i18next/i18next.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/iCheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/iCheck/icheck.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/jsKnob/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/jsKnob/jquery.knob.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/jsTree/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/jsTree/jstree.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/ladda/ladda.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/ladda/ladda.jquery.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/ladda/ladda.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/ladda/ladda.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/ladda/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/ladda/spin.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/morris/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/morris/morris.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/pace/pace.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/pdfjs/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/pdfjs/pdf.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/pdfjs/pdf.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/pdfjs/pdf.worker.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/peity/jquery.peity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/peity/jquery.peity.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/rickshaw/rickshaw.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/rickshaw/rickshaw.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/rickshaw/vendor/d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/rickshaw/vendor/d3.v3.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/slick/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/slick/slick.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/staps/jquery.steps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/staps/jquery.steps.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/switchery/switchery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/switchery/switchery.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/tinycon/tinycon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/tinycon/tinycon.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/toastr/toastr.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/topojson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/topojson/LICENSE -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/topojson/topojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/topojson/topojson.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/plugins/wow/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/plugins/wow/wow.min.js -------------------------------------------------------------------------------- /app/static/opsplatform/js/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/skin/default/icon-ext.png -------------------------------------------------------------------------------- /app/static/opsplatform/js/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/skin/default/icon.png -------------------------------------------------------------------------------- /app/static/opsplatform/js/skin/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/skin/default/layer.css -------------------------------------------------------------------------------- /app/static/opsplatform/js/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/skin/default/loading-0.gif -------------------------------------------------------------------------------- /app/static/opsplatform/js/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/skin/default/loading-1.gif -------------------------------------------------------------------------------- /app/static/opsplatform/js/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/skin/default/loading-2.gif -------------------------------------------------------------------------------- /app/static/opsplatform/js/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/opsplatform/js/sweetalert.min.js -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/asp.net/c#/Upload.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/asp.net/c#/Upload.aspx -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/asp.net/vb/Upload.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/asp.net/vb/Upload.aspx -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/asp/Upload.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/asp/Upload.asp -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/asp/Upload.asp.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/asp/Upload.asp.cls -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/crossdomain.xml -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/expressInstall.swf -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/fullAvatarEditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/fullAvatarEditor.swf -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/jsp/upload.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/jsp/upload.jsp -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/php/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/php/upload.php -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/scripts/jQuery.Drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/scripts/jQuery.Drag.js -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/scripts/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/scripts/swfobject.js -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/scripts/test.js -------------------------------------------------------------------------------- /app/static/plugins/fullavatareditor/simpleDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/plugins/fullavatareditor/simpleDemo.html -------------------------------------------------------------------------------- /app/static/upload/css/demo-ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/css/demo-ie8.css -------------------------------------------------------------------------------- /app/static/upload/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/css/demo.css -------------------------------------------------------------------------------- /app/static/upload/css/jquery.fileupload-noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/css/jquery.fileupload-noscript.css -------------------------------------------------------------------------------- /app/static/upload/css/jquery.fileupload-ui-noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/css/jquery.fileupload-ui-noscript.css -------------------------------------------------------------------------------- /app/static/upload/css/jquery.fileupload-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/css/jquery.fileupload-ui.css -------------------------------------------------------------------------------- /app/static/upload/css/jquery.fileupload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/css/jquery.fileupload.css -------------------------------------------------------------------------------- /app/static/upload/css/style.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | body { 4 | padding-top: 60px; 5 | } 6 | */ -------------------------------------------------------------------------------- /app/static/upload/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/img/loading.gif -------------------------------------------------------------------------------- /app/static/upload/img/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/img/progressbar.gif -------------------------------------------------------------------------------- /app/static/upload/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/app.js -------------------------------------------------------------------------------- /app/static/upload/js/cors/jquery.postmessage-transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/cors/jquery.postmessage-transport.js -------------------------------------------------------------------------------- /app/static/upload/js/cors/jquery.xdr-transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/cors/jquery.xdr-transport.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.fileupload-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.fileupload-angular.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.fileupload-audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.fileupload-audio.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.fileupload-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.fileupload-image.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.fileupload-jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.fileupload-jquery-ui.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.fileupload-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.fileupload-process.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.fileupload-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.fileupload-ui.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.fileupload-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.fileupload-validate.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.fileupload-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.fileupload-video.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.fileupload.js -------------------------------------------------------------------------------- /app/static/upload/js/jquery.iframe-transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/jquery.iframe-transport.js -------------------------------------------------------------------------------- /app/static/upload/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/main.js -------------------------------------------------------------------------------- /app/static/upload/js/vendor/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/static/upload/js/vendor/jquery.ui.widget.js -------------------------------------------------------------------------------- /app/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/all_job_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/all_job_list.html -------------------------------------------------------------------------------- /app/templates/all_job_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/all_job_log.html -------------------------------------------------------------------------------- /app/templates/auth/change_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/change_email.html -------------------------------------------------------------------------------- /app/templates/auth/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/change_password.html -------------------------------------------------------------------------------- /app/templates/auth/email/board.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/auth/email/change_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/email/change_email.html -------------------------------------------------------------------------------- /app/templates/auth/email/change_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/email/change_email.txt -------------------------------------------------------------------------------- /app/templates/auth/email/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/email/confirm.html -------------------------------------------------------------------------------- /app/templates/auth/email/confirm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/email/confirm.txt -------------------------------------------------------------------------------- /app/templates/auth/email/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/email/reset_password.html -------------------------------------------------------------------------------- /app/templates/auth/email/reset_password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/email/reset_password.txt -------------------------------------------------------------------------------- /app/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/login.html -------------------------------------------------------------------------------- /app/templates/auth/login2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/login2.html -------------------------------------------------------------------------------- /app/templates/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/register.html -------------------------------------------------------------------------------- /app/templates/auth/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/reset_password.html -------------------------------------------------------------------------------- /app/templates/auth/unconfirmed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/auth/unconfirmed.html -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/create_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/create_job.html -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/location.html -------------------------------------------------------------------------------- /app/templates/login_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/login_log.html -------------------------------------------------------------------------------- /app/templates/mail/new_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/mail/new_message.html -------------------------------------------------------------------------------- /app/templates/mail/new_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/mail/new_message.txt -------------------------------------------------------------------------------- /app/templates/mail/new_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/mail/new_user.html -------------------------------------------------------------------------------- /app/templates/mail/new_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/mail/new_user.txt -------------------------------------------------------------------------------- /app/templates/mail/task_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/mail/task_list.html -------------------------------------------------------------------------------- /app/templates/others.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/others.html -------------------------------------------------------------------------------- /app/templates/stdout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/app/templates/stdout.html -------------------------------------------------------------------------------- /docs/image/addjob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/docs/image/addjob.png -------------------------------------------------------------------------------- /docs/image/liuchengtu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/docs/image/liuchengtu.png -------------------------------------------------------------------------------- /docs/image/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/docs/image/login.png -------------------------------------------------------------------------------- /docs/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/docs/image/logo.png -------------------------------------------------------------------------------- /docs/image/pausejob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/docs/image/pausejob.png -------------------------------------------------------------------------------- /docs/image/stdout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/docs/image/stdout.png -------------------------------------------------------------------------------- /jobs/crawler_girls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/jobs/crawler_girls.py -------------------------------------------------------------------------------- /script/demon_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/script/demon_run.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/test.py -------------------------------------------------------------------------------- /webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barry-ran/TaskScheduler/HEAD/webhook.py --------------------------------------------------------------------------------