在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → spring boot 在线学习系统.zip

spring boot 在线学习系统.zip

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:14.41M
  • 下载次数:25
  • 浏览次数:146
  • 发布时间:2021-11-23
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
spring boot 开发在线学习系统 批量导入 上传文件视频 在线观看
【实例截图】
【核心代码】
16359647360068155717.zip
├── 03源码
│   └── study
│   ├── mvnw
│   ├── mvnw.cmd
│   ├── pom.xml
│   ├── src
│   │   ├── main
│   │   │   ├── java
│   │   │   │   └── com
│   │   │   │   └── example
│   │   │   │   └── demo
│   │   │   │   ├── controller
│   │   │   │   │   ├── BatchController.java
│   │   │   │   │   ├── CourseController.java
│   │   │   │   │   ├── CourseresoureController.java
│   │   │   │   │   ├── ExamscoreController.java
│   │   │   │   │   ├── HomeController.java
│   │   │   │   │   ├── LoginController.java
│   │   │   │   │   ├── RoleController.java
│   │   │   │   │   ├── StudentController.java
│   │   │   │   │   └── StudyrecordController.java
│   │   │   │   ├── dao
│   │   │   │   │   ├── Batchmapper.java
│   │   │   │   │   ├── Courseinfomapper.java
│   │   │   │   │   ├── Courseresouremapper.java
│   │   │   │   │   ├── Examscoremapper.java
│   │   │   │   │   ├── Studyrecordmapper.java
│   │   │   │   │   ├── Sysrolemapper.java
│   │   │   │   │   └── Sysusermapper.java
│   │   │   │   ├── entity
│   │   │   │   │   ├── Coureseresourebatch.java
│   │   │   │   │   ├── Courseinfo.java
│   │   │   │   │   ├── Courseresoure.java
│   │   │   │   │   ├── Examscore.java
│   │   │   │   │   ├── Studybatch.java
│   │   │   │   │   ├── Studyrecord.java
│   │   │   │   │   ├── Sysrole.java
│   │   │   │   │   ├── Sysuser.java
│   │   │   │   │   └── Userbatch.java
│   │   │   │   ├── service
│   │   │   │   │   ├── Batchservice.java
│   │   │   │   │   ├── Courseinfoservice.java
│   │   │   │   │   ├── Courseresoureservice.java
│   │   │   │   │   ├── Examscoreservice.java
│   │   │   │   │   ├── Studyrecordservice.java
│   │   │   │   │   ├── Sysroleservice.java
│   │   │   │   │   └── Sysservice.java
│   │   │   │   ├── servicelmpl
│   │   │   │   │   ├── Batchlmpl.java
│   │   │   │   │   ├── Courseinfolmpl.java
│   │   │   │   │   ├── Courseresourelmpl.java
│   │   │   │   │   ├── Examscorelmpl.java
│   │   │   │   │   ├── Studyrecordlmpl.java
│   │   │   │   │   ├── Sysrolelmpl.java
│   │   │   │   │   └── Sysuserlmpl.java
│   │   │   │   ├── StudyApplication.java
│   │   │   │   └── utils
│   │   │   │   └── ExcelUtil.java
│   │   │   └── resources
│   │   │   ├── application.properties
│   │   │   ├── static
│   │   │   │   ├── 404
│   │   │   │   │   ├── assets
│   │   │   │   │   │   ├── chart-master
│   │   │   │   │   │   │   ├── Chart.js
│   │   │   │   │   │   │   ├── Chart.min.js
│   │   │   │   │   │   │   ├── component.json
│   │   │   │   │   │   │   ├── docs
│   │   │   │   │   │   │   │   ├── Chart.js
│   │   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   │   ├── prettify.css
│   │   │   │   │   │   │   │   ├── prettify.js
│   │   │   │   │   │   │   │   ├── prettify.less
│   │   │   │   │   │   │   │   ├── styles.css
│   │   │   │   │   │   │   │   └── styles.less
│   │   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   │   ├── readme.md
│   │   │   │   │   │   │   ├── samples
│   │   │   │   │   │   │   │   ├── bar.html
│   │   │   │   │   │   │   │   ├── doughnut.html
│   │   │   │   │   │   │   │   ├── line.html
│   │   │   │   │   │   │   │   ├── pie.html
│   │   │   │   │   │   │   │   ├── polarArea.html
│   │   │   │   │   │   │   │   ├── radar.html
│   │   │   │   │   │   │   │   └── sixup.html
│   │   │   │   │   │   │   └── site
│   │   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   │   ├── 6charts.png
│   │   │   │   │   │   │   │   ├── Chart.js
│   │   │   │   │   │   │   │   ├── effects.js
│   │   │   │   │   │   │   │   ├── excanvas.js
│   │   │   │   │   │   │   │   ├── html.png
│   │   │   │   │   │   │   │   └── simple.png
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   └── styles.css
│   │   │   │   │   │   ├── ckeditor
│   │   │   │   │   │   │   ├── build-config.js
│   │   │   │   │   │   │   ├── CHANGES.md
│   │   │   │   │   │   │   ├── ckeditor.js
│   │   │   │   │   │   │   ├── config.js
│   │   │   │   │   │   │   ├── contents.css
│   │   │   │   │   │   │   ├── lang
│   │   │   │   │   │   │   │   ├── af.js
│   │   │   │   │   │   │   │   ├── ar.js
│   │   │   │   │   │   │   │   ├── bg.js
│   │   │   │   │   │   │   │   ├── bn.js
│   │   │   │   │   │   │   │   ├── bs.js
│   │   │   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   │   │   ├── da.js
│   │   │   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   │   │   ├── en-au.js
│   │   │   │   │   │   │   │   ├── en-ca.js
│   │   │   │   │   │   │   │   ├── en-gb.js
│   │   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   │   │   ├── eu.js
│   │   │   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   │   │   ├── fo.js
│   │   │   │   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   │   ├── gl.js
│   │   │   │   │   │   │   │   ├── gu.js
│   │   │   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   │   │   ├── hi.js
│   │   │   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   │   │   ├── hu.js
│   │   │   │   │   │   │   │   ├── is.js
│   │   │   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   │   │   ├── ja.js
│   │   │   │   │   │   │   │   ├── ka.js
│   │   │   │   │   │   │   │   ├── km.js
│   │   │   │   │   │   │   │   ├── ko.js
│   │   │   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   │   │   ├── lt.js
│   │   │   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   │   │   ├── mk.js
│   │   │   │   │   │   │   │   ├── mn.js
│   │   │   │   │   │   │   │   ├── ms.js
│   │   │   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   │   │   ├── pl.js
│   │   │   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   │   │   ├── pt.js
│   │   │   │   │   │   │   │   ├── ro.js
│   │   │   │   │   │   │   │   ├── ru.js
│   │   │   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   │   │   ├── sl.js
│   │   │   │   │   │   │   │   ├── sr.js
│   │   │   │   │   │   │   │   ├── sr-latn.js
│   │   │   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   │   │   ├── th.js
│   │   │   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   │   │   ├── uk.js
│   │   │   │   │   │   │   │   ├── vi.js
│   │   │   │   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   │   │   │   └── zh.js
│   │   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   │   ├── plugins
│   │   │   │   │   │   │   │   ├── a11yhelp
│   │   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   │   ├── a11yhelp.js
│   │   │   │   │   │   │   │   │   └── lang
│   │   │   │   │   │   │   │   │   ├── ar.js
│   │   │   │   │   │   │   │   │   ├── bg.js
│   │   │   │   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   │   │   │   ├── da.js
│   │   │   │   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   │   │   ├── gu.js
│   │   │   │   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   │   │   │   ├── hi.js
│   │   │   │   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   │   │   │   ├── hu.js
│   │   │   │   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   │   │   │   ├── ja.js
│   │   │   │   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   │   │   │   ├── lt.js
│   │   │   │   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   │   │   │   ├── mk.js
│   │   │   │   │   │   │   │   │   ├── mn.js
│   │   │   │   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   │   │   │   ├── pl.js
│   │   │   │   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   │   │   │   ├── pt.js
│   │   │   │   │   │   │   │   │   ├── ro.js
│   │   │   │   │   │   │   │   │   ├── ru.js
│   │   │   │   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   │   │   │   ├── sl.js
│   │   │   │   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   │   │   │   ├── uk.js
│   │   │   │   │   │   │   │   │   ├── vi.js
│   │   │   │   │   │   │   │   │   └── zh-cn.js
│   │   │   │   │   │   │   │   ├── about
│   │   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   │   ├── about.js
│   │   │   │   │   │   │   │   │   └── logo_ckeditor.png
│   │   │   │   │   │   │   │   ├── clipboard
│   │   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   │   └── paste.js
│   │   │   │   │   │   │   │   ├── dialog
│   │   │   │   │   │   │   │   │   └── dialogDefinition.js
│   │   │   │   │   │   │   │   ├── fakeobjects
│   │   │   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │   │   │   └── spacer.gif
│   │   │   │   │   │   │   │   ├── icons.png
│   │   │   │   │   │   │   │   ├── image
│   │   │   │   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   │   │   │   └── image.js
│   │   │   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │   │   │   └── noimage.png
│   │   │   │   │   │   │   │   ├── link
│   │   │   │   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   │   │   │   │   └── link.js
│   │   │   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │   │   │   └── anchor.png
│   │   │   │   │   │   │   │   ├── magicline
│   │   │   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │   │   │   └── icon.png
│   │   │   │   │   │   │   │   ├── pastefromword
│   │   │   │   │   │   │   │   │   └── filter
│   │   │   │   │   │   │   │   │   └── default.js
│   │   │   │   │   │   │   │   ├── scayt
│   │   │   │   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   │   │   │   ├── options.js
│   │   │   │   │   │   │   │   │   │   └── toolbar.css
│   │   │   │   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   │   │   │   └── README.md
│   │   │   │   │   │   │   │   ├── specialchar
│   │   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   │   ├── lang
│   │   │   │   │   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   │   │   │   │   └── zh-cn.js
│   │   │   │   │   │   │   │   │   └── specialchar.js
│   │   │   │   │   │   │   │   ├── table
│   │   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   │   └── table.js
│   │   │   │   │   │   │   │   ├── tabletools
│   │   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   │   └── tableCell.js
│   │   │   │   │   │   │   │   └── wsc
│   │   │   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   │   │   ├── ciframe.html
│   │   │   │   │   │   │   │   │   ├── tmpFrameset.html
│   │   │   │   │   │   │   │   │   ├── wsc.css
│   │   │   │   │   │   │   │   │   └── wsc.js
│   │   │   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   │   │   └── README.md
│   │   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   │   ├── samples
│   │   │   │   │   │   │   │   ├── ajax.html
│   │   │   │   │   │   │   │   ├── api.html
│   │   │   │   │   │   │   │   ├── appendto.html
│   │   │   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   │   │   ├── inlineall
│   │   │   │   │   │   │   │   │   │   └── logo.png
│   │   │   │   │   │   │   │   │   ├── outputxhtml
│   │   │   │   │   │   │   │   │   │   └── outputxhtml.css
│   │   │   │   │   │   │   │   │   ├── posteddata.php
│   │   │   │   │   │   │   │   │   ├── sample.css
│   │   │   │   │   │   │   │   │   ├── sample.jpg
│   │   │   │   │   │   │   │   │   └── uilanguages
│   │   │   │   │   │   │   │   │   └── languages.js
│   │   │   │   │   │   │   │   ├── divreplace.html
│   │   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   │   ├── inlineall.html
│   │   │   │   │   │   │   │   ├── inlinebycode.html
│   │   │   │   │   │   │   │   ├── plugins
│   │   │   │   │   │   │   │   │   ├── dialog
│   │   │   │   │   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   │   │   │   │   └── my_dialog.js
│   │   │   │   │   │   │   │   │   │   └── dialog.html
│   │   │   │   │   │   │   │   │   ├── enterkey
│   │   │   │   │   │   │   │   │   │   └── enterkey.html
│   │   │   │   │   │   │   │   │   ├── htmlwriter
│   │   │   │   │   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   │   │   │   │   └── outputforflash
│   │   │   │   │   │   │   │   │   │   │   ├── outputforflash.fla
│   │   │   │   │   │   │   │   │   │   │   ├── outputforflash.swf
│   │   │   │   │   │   │   │   │   │   │   └── swfobject.js
│   │   │   │   │   │   │   │   │   │   ├── outputforflash.html
│   │   │   │   │   │   │   │   │   │   └── outputhtml.html
│   │   │   │   │   │   │   │   │   ├── magicline
│   │   │   │   │   │   │   │   │   │   └── magicline.html
│   │   │   │   │   │   │   │   │   ├── toolbar
│   │   │   │   │   │   │   │   │   │   └── toolbar.html
│   │   │   │   │   │   │   │   │   └── wysiwygarea
│   │   │   │   │   │   │   │   │   └── fullpage.html
│   │   │   │   │   │   │   │   ├── readonly.html
│   │   │   │   │   │   │   │   ├── replacebyclass.html
│   │   │   │   │   │   │   │   ├── replacebycode.html
│   │   │   │   │   │   │   │   ├── sample.css
│   │   │   │   │   │   │   │   ├── sample.js
│   │   │   │   │   │   │   │   ├── sample_posteddata.php
│   │   │   │   │   │   │   │   ├── tabindex.html
│   │   │   │   │   │   │   │   ├── uicolor.html
│   │   │   │   │   │   │   │   ├── uilanguages.html
│   │   │   │   │   │   │   │   └── xhtmlstyle.html
│   │   │   │   │   │   │   ├── skins
│   │   │   │   │   │   │   │   └── moono
│   │   │   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   │   │   ├── dialog_ie7.css
│   │   │   │   │   │   │   │   ├── dialog_ie8.css
│   │   │   │   │   │   │   │   ├── dialog_ie.css
│   │   │   │   │   │   │   │   ├── dialog_iequirks.css
│   │   │   │   │   │   │   │   ├── dialog_opera.css
│   │   │   │   │   │   │   │   ├── editor.css
│   │   │   │   │   │   │   │   ├── editor_gecko.css
│   │   │   │   │   │   │   │   ├── editor_ie7.css
│   │   │   │   │   │   │   │   ├── editor_ie8.css
│   │   │   │   │   │   │   │   ├── editor_ie.css
│   │   │   │   │   │   │   │   ├── editor_iequirks.css
│   │   │   │   │   │   │   │   ├── icons.png
│   │   │   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   │   │   ├── arrow.png
│   │   │   │   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   │   │   │   └── mini.png
│   │   │   │   │   │   │   │   └── readme.md
│   │   │   │   │   │   │   └── styles.js
│   │   │   │   │   │   ├── fullcalendar
│   │   │   │   │   │   │   ├── changelog.txt
│   │   │   │   │   │   │   ├── demos
│   │   │   │   │   │   │   │   ├── agenda-views.html
│   │   │   │   │   │   │   │   ├── basic-views.html
│   │   │   │   │   │   │   │   ├── cupertino
│   │   │   │   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   │   │   │   ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png
│   │   │   │   │   │   │   │   │   │   ├── ui-bg_flat_15_cd0a0a_40x100.png
│   │   │   │   │   │   │   │   │   │   ├── ui-bg_glass_100_e4f1fb_1x400.png
│   │   │   │   │   │   │   │   │   │   ├── ui-bg_glass_50_3baae3_1x400.png
│   │   │   │   │   │   │   │   │   │   ├── ui-bg_glass_80_d7ebf9_1x400.png
│   │   │   │   │   │   │   │   │   │   ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png
│   │   │   │   │   │   │   │   │   │   ├── ui-bg_highlight-hard_70_000000_1x100.png
│   │   │   │   │   │   │   │   │   │   ├── ui-bg_highlight-soft_100_deedf7_1x100.png
│   │   │   │   │   │   │   │   │   │   ├── ui-bg_highlight-soft_25_ffef8f_1x100.png
│   │   │   │   │   │   │   │   │   │   ├── ui-icons_2694e8_256x240.png
│   │   │   │   │   │   │   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   │   │   │   │   │   │   ├── ui-icons_3d80b3_256x240.png
│   │   │   │   │   │   │   │   │   │   ├── ui-icons_72a7cf_256x240.png
│   │   │   │   │   │   │   │   │   │   └── ui-icons_ffffff_256x240.png
│   │   │   │   │   │   │   │   │   └── theme.css
│   │   │   │   │   │   │   │   ├── default.html
│   │   │   │   │   │   │   │   ├── external-dragging.html
│   │   │   │   │   │   │   │   ├── gcal.html
│   │   │   │   │   │   │   │   ├── json-events.php
│   │   │   │   │   │   │   │   ├── json.html
│   │   │   │   │   │   │   │   ├── selectable.html
│   │   │   │   │   │   │   │   └── theme.html
│   │   │   │   │   │   │   ├── fullcalendar
│   │   │   │   │   │   │   │   ├── bootstrap-fullcalendar.css
│   │   │   │   │   │   │   │   ├── fullcalendar.css
│   │   │   │   │   │   │   │   ├── fullcalendar.js
│   │   │   │   │   │   │   │   ├── fullcalendar.min.js
│   │   │   │   │   │   │   │   ├── fullcalendar.print.css
│   │   │   │   │   │   │   │   └── gcal.js
│   │   │   │   │   │   │   ├── GPL-LICENSE.txt
│   │   │   │   │   │   │   ├── jquery
│   │   │   │   │   │   │   │   ├── jquery-1.8.1.min.js
│   │   │   │   │   │   │   │   └── jquery-ui-1.8.23.custom.min.js
│   │   │   │   │   │   │   └── MIT-LICENSE.txt
│   │   │   │   │   │   ├── jquery-easy-pie-chart
│   │   │   │   │   │   │   ├── examples
│   │   │   │   │   │   │   │   ├── excanvas.js
│   │   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   │   └── style.css
│   │   │   │   │   │   │   ├── img
│   │   │   │   │   │   │   │   └── easy-pie-chart.png
│   │   │   │   │   │   │   ├── jquery.easy-pie-chart.coffee
│   │   │   │   │   │   │   ├── jquery.easy-pie-chart.css
│   │   │   │   │   │   │   ├── jquery.easy-pie-chart.js
│   │   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   │   └── Readme.md
│   │   │   │   │   │   ├── jquery-file-upload
│   │   │   │   │   │   │   ├── blueimp-file-upload.jquery.json
│   │   │   │   │   │   │   ├── CONTRIBUTING.md
│   │   │   │   │   │   │   ├── cors
│   │   │   │   │   │   │   │   ├── postmessage.html
│   │   │   │   │   │   │   │   └── result.html
│   │   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   │   ├── jquery.fileupload-ui.css
│   │   │   │   │   │   │   │   ├── jquery.fileupload-ui-noscript.css
│   │   │   │   │   │   │   │   └── style.css
│   │   │   │   │   │   │   ├── img
│   │   │   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   │   │   └── progressbar.gif
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   │   ├── cors
│   │   │   │   │   │   │   │   │   ├── jquery.postmessage-transport.js
│   │   │   │   │   │   │   │   │   └── jquery.xdr-transport.js
│   │   │   │   │   │   │   │   ├── jquery.fileupload-fp.js
│   │   │   │   │   │   │   │   ├── jquery.fileupload.js
│   │   │   │   │   │   │   │   ├── jquery.fileupload-ui.js
│   │   │   │   │   │   │   │   ├── jquery.iframe-transport.js
│   │   │   │   │   │   │   │   ├── main.js
│   │   │   │   │   │   │   │   └── vendor
│   │   │   │   │   │   │   │   ├── canvas-to-blob.min.js
│   │   │   │   │   │   │   │   ├── jquery.ui.widget.js
│   │   │   │   │   │   │   │   ├── load-image.min.js
│   │   │   │   │   │   │   │   └── tmpl.min.js
│   │   │   │   │   │   │   ├── package.json
│   │   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   │   ├── server
│   │   │   │   │   │   │   │   ├── gae-go
│   │   │   │   │   │   │   │   │   ├── app
│   │   │   │   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   │   │   │   ├── app.yaml
│   │   │   │   │   │   │   │   │   └── static
│   │   │   │   │   │   │   │   │   ├── favicon.ico
│   │   │   │   │   │   │   │   │   └── robots.txt
│   │   │   │   │   │   │   │   ├── gae-python
│   │   │   │   │   │   │   │   │   ├── app.yaml
│   │   │   │   │   │   │   │   │   ├── main.py
│   │   │   │   │   │   │   │   │   └── static
│   │   │   │   │   │   │   │   │   ├── favicon.ico
│   │   │   │   │   │   │   │   │   └── robots.txt
│   │   │   │   │   │   │   │   ├── node
│   │   │   │   │   │   │   │   │   ├── package.json
│   │   │   │   │   │   │   │   │   ├── public
│   │   │   │   │   │   │   │   │   │   └── files
│   │   │   │   │   │   │   │   │   │   └── thumbnail
│   │   │   │   │   │   │   │   │   ├── server.js
│   │   │   │   │   │   │   │   │   └── tmp
│   │   │   │   │   │   │   │   └── php
│   │   │   │   │   │   │   │   ├── files
│   │   │   │   │   │   │   │   │   ├── style-responsive.css
│   │   │   │   │   │   │   │   │   └── thumbnail
│   │   │   │   │   │   │   │   ├── index.php
│   │   │   │   │   │   │   │   └── UploadHandler.php
│   │   │   │   │   │   │   └── test
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   └── test.js
│   │   │   │   │   │   ├── jquery-knob
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   │   └── jquery.knob.js
│   │   │   │   │   │   │   └── README.md
│   │   │   │   │   │   ├── jquery-ui
│   │   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   │   ├── animated-overlay.gif
│   │   │   │   │   │   │   │   ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│   │   │   │   │   │   │   │   ├── ui-bg_diagonals-thick_20_666666_40x40.png
│   │   │   │   │   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   │   │   │   │   ├── ui-bg_flat_10_000000_40x100.png
│   │   │   │   │   │   │   │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │   │   │   │   │   │   ├── ui-bg_glass_100_f6f6f6_1x400.png
│   │   │   │   │   │   │   │   ├── ui-bg_glass_100_fdf5ce_1x400.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_gloss-wave_35_f6a828_500x100.png
│   │   │   │   │   │   │   │   ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│   │   │   │   │   │   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   │   │   │   │   │   ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│   │   │   │   │   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_228ef1_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_888888_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_cd0a0a_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_ef8c08_256x240.png
│   │   │   │   │   │   │   │   ├── ui-icons_ffd27a_256x240.png
│   │   │   │   │   │   │   │   └── ui-icons_ffffff_256x240.png
│   │   │   │   │   │   │   ├── jquery-ui-1.10.1.custom.css
│   │   │   │   │   │   │   ├── jquery-ui-1.10.1.custom.min.css
│   │   │   │   │   │   │   ├── jquery-ui-1.10.1.custom.min.js
│   │   │   │   │   │   │   ├── jquery-ui-1.10.2.custom.min.js
│   │   │   │   │   │   │   └── jquery-ui-1.9.2.custom.min.js
│   │   │   │   │   │   └── morris.js-0.4.3
│   │   │   │   │   │   ├── component.json
│   │   │   │   │   │   ├── examples
│   │   │   │   │   │   │   ├── area-as-line.html
│   │   │   │   │   │   │   ├── area.html
│   │   │   │   │   │   │   ├── bar-colors.html
│   │   │   │   │   │   │   ├── bar.html
│   │   │   │   │   │   │   ├── bar-no-axes.html
│   │   │   │   │   │   │   ├── days.html
│   │   │   │   │   │   │   ├── decimal-custom-hover.html
│   │   │   │   │   │   │   ├── diagonal-xlabels-bar.html
│   │   │   │   │   │   │   ├── diagonal-xlabels.html
│   │   │   │   │   │   │   ├── donut-colors.html
│   │   │   │   │   │   │   ├── donut-formatter.html
│   │   │   │   │   │   │   ├── donut.html
│   │   │   │   │   │   │   ├── dst.html
│   │   │   │   │   │   │   ├── events.html
│   │   │   │   │   │   │   ├── goals.html
│   │   │   │   │   │   │   ├── lib
│   │   │   │   │   │   │   │   ├── example.css
│   │   │   │   │   │   │   │   ├── example.js
│   │   │   │   │   │   │   │   ├── prettify.css
│   │   │   │   │   │   │   │   └── prettify.js
│   │   │   │   │   │   │   ├── months-no-smooth.html
│   │   │   │   │   │   │   ├── negative.html
│   │   │   │   │   │   │   ├── no-grid.html
│   │   │   │   │   │   │   ├── non-continuous.html
│   │   │   │   │   │   │   ├── non-date.html
│   │   │   │   │   │   │   ├── quarters.html
│   │   │   │   │   │   │   ├── stacked_bars.html
│   │   │   │   │   │   │   ├── _template.html
│   │   │   │   │   │   │   ├── timestamps.html
│   │   │   │   │   │   │   ├── updating.html
│   │   │   │   │   │   │   ├── weeks.html
│   │   │   │   │   │   │   └── years.html
│   │   │   │   │   │   ├── grunt.js
│   │   │   │   │   │   ├── less
│   │   │   │   │   │   │   └── morris.core.less
│   │   │   │   │   │   ├── lib
│   │   │   │   │   │   │   ├── morris.area.coffee
│   │   │   │   │   │   │   ├── morris.bar.coffee
│   │   │   │   │   │   │   ├── morris.coffee
│   │   │   │   │   │   │   ├── morris.donut.coffee
│   │   │   │   │   │   │   ├── morris.grid.coffee
│   │   │   │   │   │   │   ├── morris.hover.coffee
│   │   │   │   │   │   │   └── morris.line.coffee
│   │   │   │   │   │   ├── morris.css
│   │   │   │   │   │   ├── morris.js
│   │   │   │   │   │   ├── morris.min.js
│   │   │   │   │   │   ├── package.json
│   │   │   │   │   │   ├── raphael-min.js
│   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   └── spec
│   │   │   │   │   │   ├── lib
│   │   │   │   │   │   │   ├── area
│   │   │   │   │   │   │   │   └── area_spec.coffee
│   │   │   │   │   │   │   ├── bar
│   │   │   │   │   │   │   │   ├── bar_spec.coffee
│   │   │   │   │   │   │   │   └── colours.coffee
│   │   │   │   │   │   │   ├── commas_spec.coffee
│   │   │   │   │   │   │   ├── donut
│   │   │   │   │   │   │   │   └── donut_spec.coffee
│   │   │   │   │   │   │   ├── grid
│   │   │   │   │   │   │   │   ├── auto_grid_lines_spec.coffee
│   │   │   │   │   │   │   │   ├── set_data_spec.coffee
│   │   │   │   │   │   │   │   └── y_label_format_spec.coffee
│   │   │   │   │   │   │   ├── hover_spec.coffee
│   │   │   │   │   │   │   ├── label_series_spec.coffee
│   │   │   │   │   │   │   ├── line
│   │   │   │   │   │   │   │   └── line_spec.coffee
│   │   │   │   │   │   │   ├── pad_spec.coffee
│   │   │   │   │   │   │   └── parse_time_spec.coffee
│   │   │   │   │   │   ├── specs.html
│   │   │   │   │   │   ├── support
│   │   │   │   │   │   │   └── placeholder.coffee
│   │   │   │   │   │   └── vendor
│   │   │   │   │   │   ├── chai-1.3.0.js
│   │   │   │   │   │   ├── chai-jquery-1.1.0.js
│   │   │   │   │   │   ├── jquery-1.8.2.min.js
│   │   │   │   │   │   ├── mocha-1.6.0.css
│   │   │   │   │   │   ├── mocha-1.6.0.js
│   │   │   │   │   │   ├── raphael-2.1.0.min.js
│   │   │   │   │   │   ├── sinon-1.5.0.js
│   │   │   │   │   │   └── sinon-chai-2.1.2.js
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   │   ├── bootstrap-theme.css
│   │   │   │   │   │   ├── elegant-icons-style.css
│   │   │   │   │   │   ├── font-awesome.css
│   │   │   │   │   │   ├── font-awesome.min.css
│   │   │   │   │   │   ├── fullcalendar.css
│   │   │   │   │   │   ├── jquery-jvectormap-1.2.2.css
│   │   │   │   │   │   ├── jquery-ui-1.10.4.min.css
│   │   │   │   │   │   ├── line-icons.css
│   │   │   │   │   │   ├── owl.carousel.css
│   │   │   │   │   │   ├── style.css
│   │   │   │   │   │   ├── style-responsive.css
│   │   │   │   │   │   ├── widgets.css
│   │   │   │   │   │   └── xcharts.min.css
│   │   │   │   │   ├── fonts
│   │   │   │   │   │   ├── ElegantIcons.eot
│   │   │   │   │   │   ├── ElegantIcons.svg
│   │   │   │   │   │   ├── ElegantIcons.ttf
│   │   │   │   │   │   ├── ElegantIcons.woff
│   │   │   │   │   │   ├── FontAwesome.otf
│   │   │   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   │   │   ├── fontawesome-webfont.woff
│   │   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── arrow-up.png
│   │   │   │   │   │   ├── avatar1.jpg
│   │   │   │   │   │   ├── avatar1_small.jpg
│   │   │   │   │   │   ├── avatar-mini2.jpg
│   │   │   │   │   │   ├── avatar-mini3.jpg
│   │   │   │   │   │   ├── avatar-mini4.jpg
│   │   │   │   │   │   ├── avatar-mini.jpg
│   │   │   │   │   │   ├── bg-1.jpg
│   │   │   │   │   │   ├── chart-texture.jpg
│   │   │   │   │   │   ├── chat-avatar2.jpg
│   │   │   │   │   │   ├── chat-avatar.jpg
│   │   │   │   │   │   ├── customSelect-arrow.gif
│   │   │   │   │   │   ├── geekslabs.png
│   │   │   │   │   │   ├── Germany.png
│   │   │   │   │   │   ├── icons
│   │   │   │   │   │   │   ├── line-icon-c.png
│   │   │   │   │   │   │   ├── line-icon-hover.png
│   │   │   │   │   │   │   ├── line-icon.png
│   │   │   │   │   │   │   ├── search-line-icon.png
│   │   │   │   │   │   │   ├── social.png
│   │   │   │   │   │   │   ├── weather-hover.png
│   │   │   │   │   │   │   └── weather.png
│   │   │   │   │   │   ├── India.png
│   │   │   │   │   │   ├── left-arrow.png
│   │   │   │   │   │   ├── logo-big.png
│   │   │   │   │   │   ├── mail-avatar.jpg
│   │   │   │   │   │   ├── profile-avatar.jpg
│   │   │   │   │   │   ├── profile-widget-avatar.jpg
│   │   │   │   │   │   ├── right-arrow.png
│   │   │   │   │   │   ├── Russia.png
│   │   │   │   │   │   ├── sample-img-1.jpg
│   │   │   │   │   │   ├── sample-img-2.png
│   │   │   │   │   │   ├── sample-img-3.png
│   │   │   │   │   │   ├── search-icon.jpg
│   │   │   │   │   │   ├── Spain.png
│   │   │   │   │   │   ├── user22.png
│   │   │   │   │   │   └── user.jpg
│   │   │   │   │   └── js
│   │   │   │   │   ├── additional-methods.min.js
│   │   │   │   │   ├── bootstrap.js
│   │   │   │   │   ├── bootstrap.min.js
│   │   │   │   │   ├── bootstrap-switch.js
│   │   │   │   │   ├── bootstrap-wysiwyg-custom.js
│   │   │   │   │   ├── bootstrap-wysiwyg.js
│   │   │   │   │   ├── calendar-custom.js
│   │   │   │   │   ├── chartjs-custom.js
│   │   │   │   │   ├── charts-flot.js
│   │   │   │   │   ├── charts.js
│   │   │   │   │   ├── charts-other.js
│   │   │   │   │   ├── charts-xcharts.js
│   │   │   │   │   ├── dynamic-table.js
│   │   │   │   │   ├── easy-pie-chart.js
│   │   │   │   │   ├── excanvas.min.js
│   │   │   │   │   ├── form-component.js
│   │   │   │   │   ├── form-validation-script.js
│   │   │   │   │   ├── fullcalendar.js
│   │   │   │   │   ├── fullcalendar.min.js
│   │   │   │   │   ├── ga.js
│   │   │   │   │   ├── gdp-data.js
│   │   │   │   │   ├── gritter.js
│   │   │   │   │   ├── html5shiv.js
│   │   │   │   │   ├── index.js
│   │   │   │   │   ├── jquery-1.8.3.min.js
│   │   │   │   │   ├── jquery.autosize.min.js
│   │   │   │   │   ├── jquery.customSelect.min.js
│   │   │   │   │   ├── jquery.flot.pie.js
│   │   │   │   │   ├── jquery.hotkeys.js
│   │   │   │   │   ├── jquery.js
│   │   │   │   │   ├── jquery-jvectormap-1.2.2.min.js
│   │   │   │   │   ├── jquery-jvectormap-world-mill-en.js
│   │   │   │   │   ├── jquery.localscroll.js
│   │   │   │   │   ├── jquery.nicescroll.js
│   │   │   │   │   ├── jquery.placeholder.min.js
│   │   │   │   │   ├── jquery.rateit.min.js
│   │   │   │   │   ├── jquery.scrollTo.min.js
│   │   │   │   │   ├── jquery.slimscroll.min.js
│   │   │   │   │   ├── jquery.smartWizard.js
│   │   │   │   │   ├── jquery.sparkline-11.js
│   │   │   │   │   ├── jquery.sparkline.js
│   │   │   │   │   ├── jquery.stepy.js
│   │   │   │   │   ├── jquery.tagsinput.js
│   │   │   │   │   ├── jquery-ui-1.10.4.min.js
│   │   │   │   │   ├── jquery-ui-1.9.2.custom.min.js
│   │   │   │   │   ├── jquery.validate.min.js
│   │   │   │   │   ├── lte-ie7.js
│   │   │   │   │   ├── morris.min.js
│   │   │   │   │   ├── morris-script.js
│   │   │   │   │   ├── owl.carousel.js
│   │   │   │   │   ├── scripts.js
│   │   │   │   │   ├── sliders.js
│   │   │   │   │   ├── sparkline-chart.js
│   │   │   │   │   ├── sparklines.js
│   │   │   │   │   └── xcharts.min.js
│   │   │   │   ├── admin1
│   │   │   │   │   ├── css
│   │   │   │   │   │   └── style.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── 1.jpg
│   │   │   │   │   │   ├── 2.jpg
│   │   │   │   │   │   ├── 3.jpg
│   │   │   │   │   │   ├── 4.jpg
│   │   │   │   │   │   ├── 5.jpg
│   │   │   │   │   │   └── 6.jpg
│   │   │   │   │   └── js
│   │   │   │   │   ├── common.js
│   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   ├── jquery.validate.min.js
│   │   │   │   │   ├── supersized.3.2.7.min.js
│   │   │   │   │   └── supersized-init.js
│   │   │   │   ├── button
│   │   │   │   │   ├── css
│   │   │   │   │   │   └── button.min.css
│   │   │   │   │   └── js
│   │   │   │   │   └── script.js
│   │   │   │   ├── button1
│   │   │   │   │   └── css
│   │   │   │   │   ├── default.css
│   │   │   │   │   ├── demo.css
│   │   │   │   │   ├── loaders.css
│   │   │   │   │   ├── normalize.css
│   │   │   │   │   └── styles.css
│   │   │   │   ├── content
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── home.css
│   │   │   │   │   │   ├── jquery.treetable.css
│   │   │   │   │   │   ├── jquery.treetable.theme.default.css
│   │   │   │   │   │   ├── login.css
│   │   │   │   │   │   ├── Site.css
│   │   │   │   │   │   └── ViewPage.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── login.jpg
│   │   │   │   │   │   └── top-img.jpg
│   │   │   │   │   └── js
│   │   │   │   │   ├── echarts.min.js
│   │   │   │   │   ├── jquery-1.7.1.js
│   │   │   │   │   ├── jquery-1.9.1.js
│   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   ├── jquery-migrate-1.1.1.js
│   │   │   │   │   └── jquery.treetable.js
│   │   │   │   ├── home
│   │   │   │   │   ├── supersized.3.2.7.min.js
│   │   │   │   │   └── supersized-init.js
│   │   │   │   ├── index
│   │   │   │   │   ├── admin
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   └── default
│   │   │   │   │   │   │   ├── index.css
│   │   │   │   │   │   │   ├── login.css
│   │   │   │   │   │   │   └── share.css
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── back1.jpg
│   │   │   │   │   │   │   ├── back2.jpg
│   │   │   │   │   │   │   ├── back3.jpg
│   │   │   │   │   │   │   ├── checkNum.jpg
│   │   │   │   │   │   │   ├── close.gif
│   │   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── loge.png
│   │   │   │   │   │   │   └── logo-right.png
│   │   │   │   │   │   └── js
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   └── login.js
│   │   │   │   │   ├── layui
│   │   │   │   │   │   ├── content
│   │   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   │   ├── home.css
│   │   │   │   │   │   │   │   ├── jquery.treetable.css
│   │   │   │   │   │   │   │   ├── jquery.treetable.theme.default.css
│   │   │   │   │   │   │   │   ├── login.css
│   │   │   │   │   │   │   │   ├── Site.css
│   │   │   │   │   │   │   │   └── ViewPage.css
│   │   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   │   ├── login.jpg
│   │   │   │   │   │   │   │   └── top-img.jpg
│   │   │   │   │   │   │   └── js
│   │   │   │   │   │   │   ├── echarts.min.js
│   │   │   │   │   │   │   ├── jquery-1.7.1.js
│   │   │   │   │   │   │   ├── jquery-1.9.1.js
│   │   │   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   │   │   ├── jquery-migrate-1.1.1.js
│   │   │   │   │   │   │   └── jquery.treetable.js
│   │   │   │   │   │   ├── hcss
│   │   │   │   │   │   │   ├── css.css
│   │   │   │   │   │   │   ├── dateIco.png
│   │   │   │   │   │   │   ├── manhuaDate.1.0.css
│   │   │   │   │   │   │   ├── page1.css
│   │   │   │   │   │   │   ├── page.css
│   │   │   │   │   │   │   └── public.css
│   │   │   │   │   │   ├── img
│   │   │   │   │   │   │   ├── coin02.png
│   │   │   │   │   │   │   ├── no.png
│   │   │   │   │   │   │   └── ok.png
│   │   │   │   │   │   ├── jjs
│   │   │   │   │   │   │   ├── ajaxfileupload.js
│   │   │   │   │   │   │   ├── jquery-1.7.2.min.js
│   │   │   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   │   │   ├── jquery.mousewheel.js
│   │   │   │   │   │   │   ├── manhuaDate.1.0.js
│   │   │   │   │   │   │   ├── page.js
│   │   │   │   │   │   │   ├── public.js
│   │   │   │   │   │   │   └── scroll.js
│   │   │   │   │   │   └── js
│   │   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   │   ├── jquery.mockjax.js
│   │   │   │   │   │   ├── jquery-ui.min.js
│   │   │   │   │   │   ├── Particleground.js
│   │   │   │   │   │   ├── stopExecutionOnTimeout.js
│   │   │   │   │   │   └── Treatment.js
│   │   │   │   │   └── share
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── jquery.mCustomScrollbar.css
│   │   │   │   │   │   ├── mCSB_buttons.png
│   │   │   │   │   │   └── share.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   └── favicon.ico
│   │   │   │   │   └── js
│   │   │   │   │   ├── jquery-1.11.0.js
│   │   │   │   │   ├── jquery-1.11.0.min.js
│   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   └── jsUtil.js
│   │   │   │   ├── js
│   │   │   │   │   ├── jquery-3.2.0.js
│   │   │   │   │   ├── layer.js
│   │   │   │   │   └── WdatePicker.js
│   │   │   │   └── upload
│   │   │   └── templates
│   │   │   └── thymeleaf
│   │   │   ├── batch
│   │   │   │   ├── addbatchmanage.html
│   │   │   │   ├── listbatch.html
│   │   │   │   └── updatebatch.html
│   │   │   ├── course
│   │   │   │   ├── addcourse.html
│   │   │   │   ├── listcourse.html
│   │   │   │   └── updatecourse.html
│   │   │   ├── courseresour
│   │   │   │   ├── addcourseresoure.html
│   │   │   │   ├── listresoure.html
│   │   │   │   └── updateresoure.html
│   │   │   ├── error
│   │   │   │   ├── error.html
│   │   │   │   └── success.html
│   │   │   ├── examscore
│   │   │   │   ├── exclexam.html
│   │   │   │   ├── listscore.html
│   │   │   │   └── updatescore.html
│   │   │   ├── home
│   │   │   │   └── home.html
│   │   │   ├── login
│   │   │   │   ├── login.html
│   │   │   │   └── regiest.html
│   │   │   ├── role
│   │   │   │   ├── addrole.html
│   │   │   │   ├── listrole.html
│   │   │   │   └── updaterole.html
│   │   │   ├── student
│   │   │   │   ├── studentindex.html
│   │   │   │   ├── studentmessage.html
│   │   │   │   ├── studentresoure.html
│   │   │   │   ├── studybatch.html
│   │   │   │   ├── study.html
│   │   │   │   ├── studyrecord.html
│   │   │   │   └── studyview.html
│   │   │   ├── studyrecord
│   │   │   │   └── listrecord.html
│   │   │   └── user
│   │   │   ├── adduser.html
│   │   │   ├── listuser.html
│   │   │   ├── updatemessage.html
│   │   │   ├── updateps.html
│   │   │   └── userindex.html
│   │   └── test
│   │   └── java
│   │   └── com
│   │   └── example
│   │   └── demo
│   │   └── StudyApplicationTests.java
│   └── target
│   ├── classes
│   │   ├── application.properties
│   │   ├── com
│   │   │   └── example
│   │   │   └── demo
│   │   │   ├── controller
│   │   │   │   ├── BatchController.class
│   │   │   │   ├── CourseController.class
│   │   │   │   ├── CourseresoureController.class
│   │   │   │   ├── ExamscoreController.class
│   │   │   │   ├── HomeController.class
│   │   │   │   ├── LoginController.class
│   │   │   │   ├── RoleController.class
│   │   │   │   ├── StudentController.class
│   │   │   │   └── StudyrecordController.class
│   │   │   ├── dao
│   │   │   │   ├── Batchmapper.class
│   │   │   │   ├── Courseinfomapper.class
│   │   │   │   ├── Courseresouremapper.class
│   │   │   │   ├── Examscoremapper.class
│   │   │   │   ├── Studyrecordmapper.class
│   │   │   │   ├── Sysrolemapper.class
│   │   │   │   └── Sysusermapper.class
│   │   │   ├── entity
│   │   │   │   ├── Coureseresourebatch.class
│   │   │   │   ├── Courseinfo.class
│   │   │   │   ├── Courseresoure.class
│   │   │   │   ├── Examscore.class
│   │   │   │   ├── Studybatch.class
│   │   │   │   ├── Studyrecord.class
│   │   │   │   ├── Sysrole.class
│   │   │   │   ├── Sysuser.class
│   │   │   │   └── Userbatch.class
│   │   │   ├── service
│   │   │   │   ├── Batchservice.class
│   │   │   │   ├── Courseinfoservice.class
│   │   │   │   ├── Courseresoureservice.class
│   │   │   │   ├── Examscoreservice.class
│   │   │   │   ├── Studyrecordservice.class
│   │   │   │   ├── Sysroleservice.class
│   │   │   │   └── Sysservice.class
│   │   │   ├── servicelmpl
│   │   │   │   ├── Batchlmpl.class
│   │   │   │   ├── Courseinfolmpl.class
│   │   │   │   ├── Courseresourelmpl.class
│   │   │   │   ├── Examscorelmpl.class
│   │   │   │   ├── Studyrecordlmpl.class
│   │   │   │   ├── Sysrolelmpl.class
│   │   │   │   └── Sysuserlmpl.class
│   │   │   ├── StudyApplication.class
│   │   │   └── utils
│   │   │   └── ExcelUtil.class
│   │   ├── META-INF
│   │   │   ├── MANIFEST.MF
│   │   │   └── maven
│   │   │   └── com.example
│   │   │   └── study
│   │   │   ├── pom.properties
│   │   │   └── pom.xml
│   │   ├── static
│   │   │   ├── 404
│   │   │   │   ├── assets
│   │   │   │   │   ├── chart-master
│   │   │   │   │   │   ├── Chart.js
│   │   │   │   │   │   ├── Chart.min.js
│   │   │   │   │   │   ├── component.json
│   │   │   │   │   │   ├── docs
│   │   │   │   │   │   │   ├── Chart.js
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   ├── prettify.css
│   │   │   │   │   │   │   ├── prettify.js
│   │   │   │   │   │   │   ├── prettify.less
│   │   │   │   │   │   │   ├── styles.css
│   │   │   │   │   │   │   └── styles.less
│   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   ├── readme.md
│   │   │   │   │   │   ├── samples
│   │   │   │   │   │   │   ├── bar.html
│   │   │   │   │   │   │   ├── doughnut.html
│   │   │   │   │   │   │   ├── line.html
│   │   │   │   │   │   │   ├── pie.html
│   │   │   │   │   │   │   ├── polarArea.html
│   │   │   │   │   │   │   ├── radar.html
│   │   │   │   │   │   │   └── sixup.html
│   │   │   │   │   │   └── site
│   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   ├── 6charts.png
│   │   │   │   │   │   │   ├── Chart.js
│   │   │   │   │   │   │   ├── effects.js
│   │   │   │   │   │   │   ├── excanvas.js
│   │   │   │   │   │   │   ├── html.png
│   │   │   │   │   │   │   └── simple.png
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   └── styles.css
│   │   │   │   │   ├── ckeditor
│   │   │   │   │   │   ├── build-config.js
│   │   │   │   │   │   ├── CHANGES.md
│   │   │   │   │   │   ├── ckeditor.js
│   │   │   │   │   │   ├── config.js
│   │   │   │   │   │   ├── contents.css
│   │   │   │   │   │   ├── lang
│   │   │   │   │   │   │   ├── af.js
│   │   │   │   │   │   │   ├── ar.js
│   │   │   │   │   │   │   ├── bg.js
│   │   │   │   │   │   │   ├── bn.js
│   │   │   │   │   │   │   ├── bs.js
│   │   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   │   ├── da.js
│   │   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   │   ├── en-au.js
│   │   │   │   │   │   │   ├── en-ca.js
│   │   │   │   │   │   │   ├── en-gb.js
│   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   │   ├── eu.js
│   │   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   │   ├── fo.js
│   │   │   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   ├── gl.js
│   │   │   │   │   │   │   ├── gu.js
│   │   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   │   ├── hi.js
│   │   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   │   ├── hu.js
│   │   │   │   │   │   │   ├── is.js
│   │   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   │   ├── ja.js
│   │   │   │   │   │   │   ├── ka.js
│   │   │   │   │   │   │   ├── km.js
│   │   │   │   │   │   │   ├── ko.js
│   │   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   │   ├── lt.js
│   │   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   │   ├── mk.js
│   │   │   │   │   │   │   ├── mn.js
│   │   │   │   │   │   │   ├── ms.js
│   │   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   │   ├── pl.js
│   │   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   │   ├── pt.js
│   │   │   │   │   │   │   ├── ro.js
│   │   │   │   │   │   │   ├── ru.js
│   │   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   │   ├── sl.js
│   │   │   │   │   │   │   ├── sr.js
│   │   │   │   │   │   │   ├── sr-latn.js
│   │   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   │   ├── th.js
│   │   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   │   ├── uk.js
│   │   │   │   │   │   │   ├── vi.js
│   │   │   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   │   │   └── zh.js
│   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   ├── plugins
│   │   │   │   │   │   │   ├── a11yhelp
│   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   ├── a11yhelp.js
│   │   │   │   │   │   │   │   └── lang
│   │   │   │   │   │   │   │   ├── ar.js
│   │   │   │   │   │   │   │   ├── bg.js
│   │   │   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   │   │   ├── da.js
│   │   │   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   │   ├── gu.js
│   │   │   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   │   │   ├── hi.js
│   │   │   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   │   │   ├── hu.js
│   │   │   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   │   │   ├── ja.js
│   │   │   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   │   │   ├── lt.js
│   │   │   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   │   │   ├── mk.js
│   │   │   │   │   │   │   │   ├── mn.js
│   │   │   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   │   │   ├── pl.js
│   │   │   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   │   │   ├── pt.js
│   │   │   │   │   │   │   │   ├── ro.js
│   │   │   │   │   │   │   │   ├── ru.js
│   │   │   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   │   │   ├── sl.js
│   │   │   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   │   │   ├── uk.js
│   │   │   │   │   │   │   │   ├── vi.js
│   │   │   │   │   │   │   │   └── zh-cn.js
│   │   │   │   │   │   │   ├── about
│   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   ├── about.js
│   │   │   │   │   │   │   │   └── logo_ckeditor.png
│   │   │   │   │   │   │   ├── clipboard
│   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   └── paste.js
│   │   │   │   │   │   │   ├── dialog
│   │   │   │   │   │   │   │   └── dialogDefinition.js
│   │   │   │   │   │   │   ├── fakeobjects
│   │   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │   │   └── spacer.gif
│   │   │   │   │   │   │   ├── icons.png
│   │   │   │   │   │   │   ├── image
│   │   │   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   │   │   └── image.js
│   │   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │   │   └── noimage.png
│   │   │   │   │   │   │   ├── link
│   │   │   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   │   │   │   └── link.js
│   │   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │   │   └── anchor.png
│   │   │   │   │   │   │   ├── magicline
│   │   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │   │   └── icon.png
│   │   │   │   │   │   │   ├── pastefromword
│   │   │   │   │   │   │   │   └── filter
│   │   │   │   │   │   │   │   └── default.js
│   │   │   │   │   │   │   ├── scayt
│   │   │   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   │   │   ├── options.js
│   │   │   │   │   │   │   │   │   └── toolbar.css
│   │   │   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   │   │   └── README.md
│   │   │   │   │   │   │   ├── specialchar
│   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   ├── lang
│   │   │   │   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   │   │   │   └── zh-cn.js
│   │   │   │   │   │   │   │   └── specialchar.js
│   │   │   │   │   │   │   ├── table
│   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   └── table.js
│   │   │   │   │   │   │   ├── tabletools
│   │   │   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   │   │   └── tableCell.js
│   │   │   │   │   │   │   └── wsc
│   │   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   │   ├── ciframe.html
│   │   │   │   │   │   │   │   ├── tmpFrameset.html
│   │   │   │   │   │   │   │   ├── wsc.css
│   │   │   │   │   │   │   │   └── wsc.js
│   │   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   │   └── README.md
│   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   ├── samples
│   │   │   │   │   │   │   ├── ajax.html
│   │   │   │   │   │   │   ├── api.html
│   │   │   │   │   │   │   ├── appendto.html
│   │   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   │   ├── inlineall
│   │   │   │   │   │   │   │   │   └── logo.png
│   │   │   │   │   │   │   │   ├── outputxhtml
│   │   │   │   │   │   │   │   │   └── outputxhtml.css
│   │   │   │   │   │   │   │   ├── posteddata.php
│   │   │   │   │   │   │   │   ├── sample.css
│   │   │   │   │   │   │   │   ├── sample.jpg
│   │   │   │   │   │   │   │   └── uilanguages
│   │   │   │   │   │   │   │   └── languages.js
│   │   │   │   │   │   │   ├── divreplace.html
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   ├── inlineall.html
│   │   │   │   │   │   │   ├── inlinebycode.html
│   │   │   │   │   │   │   ├── plugins
│   │   │   │   │   │   │   │   ├── dialog
│   │   │   │   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   │   │   │   └── my_dialog.js
│   │   │   │   │   │   │   │   │   └── dialog.html
│   │   │   │   │   │   │   │   ├── enterkey
│   │   │   │   │   │   │   │   │   └── enterkey.html
│   │   │   │   │   │   │   │   ├── htmlwriter
│   │   │   │   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   │   │   │   └── outputforflash
│   │   │   │   │   │   │   │   │   │   ├── outputforflash.fla
│   │   │   │   │   │   │   │   │   │   ├── outputforflash.swf
│   │   │   │   │   │   │   │   │   │   └── swfobject.js
│   │   │   │   │   │   │   │   │   ├── outputforflash.html
│   │   │   │   │   │   │   │   │   └── outputhtml.html
│   │   │   │   │   │   │   │   ├── magicline
│   │   │   │   │   │   │   │   │   └── magicline.html
│   │   │   │   │   │   │   │   ├── toolbar
│   │   │   │   │   │   │   │   │   └── toolbar.html
│   │   │   │   │   │   │   │   └── wysiwygarea
│   │   │   │   │   │   │   │   └── fullpage.html
│   │   │   │   │   │   │   ├── readonly.html
│   │   │   │   │   │   │   ├── replacebyclass.html
│   │   │   │   │   │   │   ├── replacebycode.html
│   │   │   │   │   │   │   ├── sample.css
│   │   │   │   │   │   │   ├── sample.js
│   │   │   │   │   │   │   ├── sample_posteddata.php
│   │   │   │   │   │   │   ├── tabindex.html
│   │   │   │   │   │   │   ├── uicolor.html
│   │   │   │   │   │   │   ├── uilanguages.html
│   │   │   │   │   │   │   └── xhtmlstyle.html
│   │   │   │   │   │   ├── skins
│   │   │   │   │   │   │   └── moono
│   │   │   │   │   │   │   ├── dialog.css
│   │   │   │   │   │   │   ├── dialog_ie7.css
│   │   │   │   │   │   │   ├── dialog_ie8.css
│   │   │   │   │   │   │   ├── dialog_ie.css
│   │   │   │   │   │   │   ├── dialog_iequirks.css
│   │   │   │   │   │   │   ├── dialog_opera.css
│   │   │   │   │   │   │   ├── editor.css
│   │   │   │   │   │   │   ├── editor_gecko.css
│   │   │   │   │   │   │   ├── editor_ie7.css
│   │   │   │   │   │   │   ├── editor_ie8.css
│   │   │   │   │   │   │   ├── editor_ie.css
│   │   │   │   │   │   │   ├── editor_iequirks.css
│   │   │   │   │   │   │   ├── icons.png
│   │   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   │   ├── arrow.png
│   │   │   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   │   │   └── mini.png
│   │   │   │   │   │   │   └── readme.md
│   │   │   │   │   │   └── styles.js
│   │   │   │   │   ├── fullcalendar
│   │   │   │   │   │   ├── changelog.txt
│   │   │   │   │   │   ├── demos
│   │   │   │   │   │   │   ├── agenda-views.html
│   │   │   │   │   │   │   ├── basic-views.html
│   │   │   │   │   │   │   ├── cupertino
│   │   │   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   │   │   ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png
│   │   │   │   │   │   │   │   │   ├── ui-bg_flat_15_cd0a0a_40x100.png
│   │   │   │   │   │   │   │   │   ├── ui-bg_glass_100_e4f1fb_1x400.png
│   │   │   │   │   │   │   │   │   ├── ui-bg_glass_50_3baae3_1x400.png
│   │   │   │   │   │   │   │   │   ├── ui-bg_glass_80_d7ebf9_1x400.png
│   │   │   │   │   │   │   │   │   ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png
│   │   │   │   │   │   │   │   │   ├── ui-bg_highlight-hard_70_000000_1x100.png
│   │   │   │   │   │   │   │   │   ├── ui-bg_highlight-soft_100_deedf7_1x100.png
│   │   │   │   │   │   │   │   │   ├── ui-bg_highlight-soft_25_ffef8f_1x100.png
│   │   │   │   │   │   │   │   │   ├── ui-icons_2694e8_256x240.png
│   │   │   │   │   │   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   │   │   │   │   │   ├── ui-icons_3d80b3_256x240.png
│   │   │   │   │   │   │   │   │   ├── ui-icons_72a7cf_256x240.png
│   │   │   │   │   │   │   │   │   └── ui-icons_ffffff_256x240.png
│   │   │   │   │   │   │   │   └── theme.css
│   │   │   │   │   │   │   ├── default.html
│   │   │   │   │   │   │   ├── external-dragging.html
│   │   │   │   │   │   │   ├── gcal.html
│   │   │   │   │   │   │   ├── json-events.php
│   │   │   │   │   │   │   ├── json.html
│   │   │   │   │   │   │   ├── selectable.html
│   │   │   │   │   │   │   └── theme.html
│   │   │   │   │   │   ├── fullcalendar
│   │   │   │   │   │   │   ├── bootstrap-fullcalendar.css
│   │   │   │   │   │   │   ├── fullcalendar.css
│   │   │   │   │   │   │   ├── fullcalendar.js
│   │   │   │   │   │   │   ├── fullcalendar.min.js
│   │   │   │   │   │   │   ├── fullcalendar.print.css
│   │   │   │   │   │   │   └── gcal.js
│   │   │   │   │   │   ├── GPL-LICENSE.txt
│   │   │   │   │   │   ├── jquery
│   │   │   │   │   │   │   ├── jquery-1.8.1.min.js
│   │   │   │   │   │   │   └── jquery-ui-1.8.23.custom.min.js
│   │   │   │   │   │   └── MIT-LICENSE.txt
│   │   │   │   │   ├── jquery-easy-pie-chart
│   │   │   │   │   │   ├── examples
│   │   │   │   │   │   │   ├── excanvas.js
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   └── style.css
│   │   │   │   │   │   ├── img
│   │   │   │   │   │   │   └── easy-pie-chart.png
│   │   │   │   │   │   ├── jquery.easy-pie-chart.coffee
│   │   │   │   │   │   ├── jquery.easy-pie-chart.css
│   │   │   │   │   │   ├── jquery.easy-pie-chart.js
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   └── Readme.md
│   │   │   │   │   ├── jquery-file-upload
│   │   │   │   │   │   ├── blueimp-file-upload.jquery.json
│   │   │   │   │   │   ├── CONTRIBUTING.md
│   │   │   │   │   │   ├── cors
│   │   │   │   │   │   │   ├── postmessage.html
│   │   │   │   │   │   │   └── result.html
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   ├── jquery.fileupload-ui.css
│   │   │   │   │   │   │   ├── jquery.fileupload-ui-noscript.css
│   │   │   │   │   │   │   └── style.css
│   │   │   │   │   │   ├── img
│   │   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   │   └── progressbar.gif
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   ├── cors
│   │   │   │   │   │   │   │   ├── jquery.postmessage-transport.js
│   │   │   │   │   │   │   │   └── jquery.xdr-transport.js
│   │   │   │   │   │   │   ├── jquery.fileupload-fp.js
│   │   │   │   │   │   │   ├── jquery.fileupload.js
│   │   │   │   │   │   │   ├── jquery.fileupload-ui.js
│   │   │   │   │   │   │   ├── jquery.iframe-transport.js
│   │   │   │   │   │   │   ├── main.js
│   │   │   │   │   │   │   └── vendor
│   │   │   │   │   │   │   ├── canvas-to-blob.min.js
│   │   │   │   │   │   │   ├── jquery.ui.widget.js
│   │   │   │   │   │   │   ├── load-image.min.js
│   │   │   │   │   │   │   └── tmpl.min.js
│   │   │   │   │   │   ├── package.json
│   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   ├── server
│   │   │   │   │   │   │   ├── gae-go
│   │   │   │   │   │   │   │   ├── app
│   │   │   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   │   │   ├── app.yaml
│   │   │   │   │   │   │   │   └── static
│   │   │   │   │   │   │   │   ├── favicon.ico
│   │   │   │   │   │   │   │   └── robots.txt
│   │   │   │   │   │   │   ├── gae-python
│   │   │   │   │   │   │   │   ├── app.yaml
│   │   │   │   │   │   │   │   ├── main.py
│   │   │   │   │   │   │   │   └── static
│   │   │   │   │   │   │   │   ├── favicon.ico
│   │   │   │   │   │   │   │   └── robots.txt
│   │   │   │   │   │   │   ├── node
│   │   │   │   │   │   │   │   ├── package.json
│   │   │   │   │   │   │   │   └── server.js
│   │   │   │   │   │   │   └── php
│   │   │   │   │   │   │   ├── files
│   │   │   │   │   │   │   │   └── style-responsive.css
│   │   │   │   │   │   │   ├── index.php
│   │   │   │   │   │   │   └── UploadHandler.php
│   │   │   │   │   │   └── test
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   └── test.js
│   │   │   │   │   ├── jquery-knob
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   └── jquery.knob.js
│   │   │   │   │   │   └── README.md
│   │   │   │   │   ├── jquery-ui
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── animated-overlay.gif
│   │   │   │   │   │   │   ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│   │   │   │   │   │   │   ├── ui-bg_diagonals-thick_20_666666_40x40.png
│   │   │   │   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   │   │   │   ├── ui-bg_flat_10_000000_40x100.png
│   │   │   │   │   │   │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │   │   │   │   │   ├── ui-bg_glass_100_f6f6f6_1x400.png
│   │   │   │   │   │   │   ├── ui-bg_glass_100_fdf5ce_1x400.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_gloss-wave_35_f6a828_500x100.png
│   │   │   │   │   │   │   ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│   │   │   │   │   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   │   │   │   │   ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│   │   │   │   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   │   │   │   ├── ui-icons_228ef1_256x240.png
│   │   │   │   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   │   │   │   ├── ui-icons_888888_256x240.png
│   │   │   │   │   │   │   ├── ui-icons_cd0a0a_256x240.png
│   │   │   │   │   │   │   ├── ui-icons_ef8c08_256x240.png
│   │   │   │   │   │   │   ├── ui-icons_ffd27a_256x240.png
│   │   │   │   │   │   │   └── ui-icons_ffffff_256x240.png
│   │   │   │   │   │   ├── jquery-ui-1.10.1.custom.css
│   │   │   │   │   │   ├── jquery-ui-1.10.1.custom.min.css
│   │   │   │   │   │   ├── jquery-ui-1.10.1.custom.min.js
│   │   │   │   │   │   ├── jquery-ui-1.10.2.custom.min.js
│   │   │   │   │   │   └── jquery-ui-1.9.2.custom.min.js
│   │   │   │   │   └── morris.js-0.4.3
│   │   │   │   │   ├── component.json
│   │   │   │   │   ├── examples
│   │   │   │   │   │   ├── area-as-line.html
│   │   │   │   │   │   ├── area.html
│   │   │   │   │   │   ├── bar-colors.html
│   │   │   │   │   │   ├── bar.html
│   │   │   │   │   │   ├── bar-no-axes.html
│   │   │   │   │   │   ├── days.html
│   │   │   │   │   │   ├── decimal-custom-hover.html
│   │   │   │   │   │   ├── diagonal-xlabels-bar.html
│   │   │   │   │   │   ├── diagonal-xlabels.html
│   │   │   │   │   │   ├── donut-colors.html
│   │   │   │   │   │   ├── donut-formatter.html
│   │   │   │   │   │   ├── donut.html
│   │   │   │   │   │   ├── dst.html
│   │   │   │   │   │   ├── events.html
│   │   │   │   │   │   ├── goals.html
│   │   │   │   │   │   ├── lib
│   │   │   │   │   │   │   ├── example.css
│   │   │   │   │   │   │   ├── example.js
│   │   │   │   │   │   │   ├── prettify.css
│   │   │   │   │   │   │   └── prettify.js
│   │   │   │   │   │   ├── months-no-smooth.html
│   │   │   │   │   │   ├── negative.html
│   │   │   │   │   │   ├── no-grid.html
│   │   │   │   │   │   ├── non-continuous.html
│   │   │   │   │   │   ├── non-date.html
│   │   │   │   │   │   ├── quarters.html
│   │   │   │   │   │   ├── stacked_bars.html
│   │   │   │   │   │   ├── _template.html
│   │   │   │   │   │   ├── timestamps.html
│   │   │   │   │   │   ├── updating.html
│   │   │   │   │   │   ├── weeks.html
│   │   │   │   │   │   └── years.html
│   │   │   │   │   ├── grunt.js
│   │   │   │   │   ├── less
│   │   │   │   │   │   └── morris.core.less
│   │   │   │   │   ├── lib
│   │   │   │   │   │   ├── morris.area.coffee
│   │   │   │   │   │   ├── morris.bar.coffee
│   │   │   │   │   │   ├── morris.coffee
│   │   │   │   │   │   ├── morris.donut.coffee
│   │   │   │   │   │   ├── morris.grid.coffee
│   │   │   │   │   │   ├── morris.hover.coffee
│   │   │   │   │   │   └── morris.line.coffee
│   │   │   │   │   ├── morris.css
│   │   │   │   │   ├── morris.js
│   │   │   │   │   ├── morris.min.js
│   │   │   │   │   ├── package.json
│   │   │   │   │   ├── raphael-min.js
│   │   │   │   │   ├── README.md
│   │   │   │   │   └── spec
│   │   │   │   │   ├── lib
│   │   │   │   │   │   ├── area
│   │   │   │   │   │   │   └── area_spec.coffee
│   │   │   │   │   │   ├── bar
│   │   │   │   │   │   │   ├── bar_spec.coffee
│   │   │   │   │   │   │   └── colours.coffee
│   │   │   │   │   │   ├── commas_spec.coffee
│   │   │   │   │   │   ├── donut
│   │   │   │   │   │   │   └── donut_spec.coffee
│   │   │   │   │   │   ├── grid
│   │   │   │   │   │   │   ├── auto_grid_lines_spec.coffee
│   │   │   │   │   │   │   ├── set_data_spec.coffee
│   │   │   │   │   │   │   └── y_label_format_spec.coffee
│   │   │   │   │   │   ├── hover_spec.coffee
│   │   │   │   │   │   ├── label_series_spec.coffee
│   │   │   │   │   │   ├── line
│   │   │   │   │   │   │   └── line_spec.coffee
│   │   │   │   │   │   ├── pad_spec.coffee
│   │   │   │   │   │   └── parse_time_spec.coffee
│   │   │   │   │   ├── specs.html
│   │   │   │   │   ├── support
│   │   │   │   │   │   └── placeholder.coffee
│   │   │   │   │   └── vendor
│   │   │   │   │   ├── chai-1.3.0.js
│   │   │   │   │   ├── chai-jquery-1.1.0.js
│   │   │   │   │   ├── jquery-1.8.2.min.js
│   │   │   │   │   ├── mocha-1.6.0.css
│   │   │   │   │   ├── mocha-1.6.0.js
│   │   │   │   │   ├── raphael-2.1.0.min.js
│   │   │   │   │   ├── sinon-1.5.0.js
│   │   │   │   │   └── sinon-chai-2.1.2.js
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   ├── bootstrap-theme.css
│   │   │   │   │   ├── elegant-icons-style.css
│   │   │   │   │   ├── font-awesome.css
│   │   │   │   │   ├── font-awesome.min.css
│   │   │   │   │   ├── fullcalendar.css
│   │   │   │   │   ├── jquery-jvectormap-1.2.2.css
│   │   │   │   │   ├── jquery-ui-1.10.4.min.css
│   │   │   │   │   ├── line-icons.css
│   │   │   │   │   ├── owl.carousel.css
│   │   │   │   │   ├── style.css
│   │   │   │   │   ├── style-responsive.css
│   │   │   │   │   ├── widgets.css
│   │   │   │   │   └── xcharts.min.css
│   │   │   │   ├── fonts
│   │   │   │   │   ├── ElegantIcons.eot
│   │   │   │   │   ├── ElegantIcons.svg
│   │   │   │   │   ├── ElegantIcons.ttf
│   │   │   │   │   ├── ElegantIcons.woff
│   │   │   │   │   ├── FontAwesome.otf
│   │   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   │   ├── fontawesome-webfont.woff
│   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   │   ├── img
│   │   │   │   │   ├── arrow-up.png
│   │   │   │   │   ├── avatar1.jpg
│   │   │   │   │   ├── avatar1_small.jpg
│   │   │   │   │   ├── avatar-mini2.jpg
│   │   │   │   │   ├── avatar-mini3.jpg
│   │   │   │   │   ├── avatar-mini4.jpg
│   │   │   │   │   ├── avatar-mini.jpg
│   │   │   │   │   ├── bg-1.jpg
│   │   │   │   │   ├── chart-texture.jpg
│   │   │   │   │   ├── chat-avatar2.jpg
│   │   │   │   │   ├── chat-avatar.jpg
│   │   │   │   │   ├── customSelect-arrow.gif
│   │   │   │   │   ├── geekslabs.png
│   │   │   │   │   ├── Germany.png
│   │   │   │   │   ├── icons
│   │   │   │   │   │   ├── line-icon-c.png
│   │   │   │   │   │   ├── line-icon-hover.png
│   │   │   │   │   │   ├── line-icon.png
│   │   │   │   │   │   ├── search-line-icon.png
│   │   │   │   │   │   ├── social.png
│   │   │   │   │   │   ├── weather-hover.png
│   │   │   │   │   │   └── weather.png
│   │   │   │   │   ├── India.png
│   │   │   │   │   ├── left-arrow.png
│   │   │   │   │   ├── logo-big.png
│   │   │   │   │   ├── mail-avatar.jpg
│   │   │   │   │   ├── profile-avatar.jpg
│   │   │   │   │   ├── profile-widget-avatar.jpg
│   │   │   │   │   ├── right-arrow.png
│   │   │   │   │   ├── Russia.png
│   │   │   │   │   ├── sample-img-1.jpg
│   │   │   │   │   ├── sample-img-2.png
│   │   │   │   │   ├── sample-img-3.png
│   │   │   │   │   ├── search-icon.jpg
│   │   │   │   │   ├── Spain.png
│   │   │   │   │   ├── user22.png
│   │   │   │   │   └── user.jpg
│   │   │   │   └── js
│   │   │   │   ├── additional-methods.min.js
│   │   │   │   ├── bootstrap.js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── bootstrap-switch.js
│   │   │   │   ├── bootstrap-wysiwyg-custom.js
│   │   │   │   ├── bootstrap-wysiwyg.js
│   │   │   │   ├── calendar-custom.js
│   │   │   │   ├── chartjs-custom.js
│   │   │   │   ├── charts-flot.js
│   │   │   │   ├── charts.js
│   │   │   │   ├── charts-other.js
│   │   │   │   ├── charts-xcharts.js
│   │   │   │   ├── dynamic-table.js
│   │   │   │   ├── easy-pie-chart.js
│   │   │   │   ├── excanvas.min.js
│   │   │   │   ├── form-component.js
│   │   │   │   ├── form-validation-script.js
│   │   │   │   ├── fullcalendar.js
│   │   │   │   ├── fullcalendar.min.js
│   │   │   │   ├── ga.js
│   │   │   │   ├── gdp-data.js
│   │   │   │   ├── gritter.js
│   │   │   │   ├── html5shiv.js
│   │   │   │   ├── index.js
│   │   │   │   ├── jquery-1.8.3.min.js
│   │   │   │   ├── jquery.autosize.min.js
│   │   │   │   ├── jquery.customSelect.min.js
│   │   │   │   ├── jquery.flot.pie.js
│   │   │   │   ├── jquery.hotkeys.js
│   │   │   │   ├── jquery.js
│   │   │   │   ├── jquery-jvectormap-1.2.2.min.js
│   │   │   │   ├── jquery-jvectormap-world-mill-en.js
│   │   │   │   ├── jquery.localscroll.js
│   │   │   │   ├── jquery.nicescroll.js
│   │   │   │   ├── jquery.placeholder.min.js
│   │   │   │   ├── jquery.rateit.min.js
│   │   │   │   ├── jquery.scrollTo.min.js
│   │   │   │   ├── jquery.slimscroll.min.js
│   │   │   │   ├── jquery.smartWizard.js
│   │   │   │   ├── jquery.sparkline-11.js
│   │   │   │   ├── jquery.sparkline.js
│   │   │   │   ├── jquery.stepy.js
│   │   │   │   ├── jquery.tagsinput.js
│   │   │   │   ├── jquery-ui-1.10.4.min.js
│   │   │   │   ├── jquery-ui-1.9.2.custom.min.js
│   │   │   │   ├── jquery.validate.min.js
│   │   │   │   ├── lte-ie7.js
│   │   │   │   ├── morris.min.js
│   │   │   │   ├── morris-script.js
│   │   │   │   ├── owl.carousel.js
│   │   │   │   ├── scripts.js
│   │   │   │   ├── sliders.js
│   │   │   │   ├── sparkline-chart.js
│   │   │   │   ├── sparklines.js
│   │   │   │   └── xcharts.min.js
│   │   │   ├── admin1
│   │   │   │   ├── css
│   │   │   │   │   └── style.css
│   │   │   │   ├── images
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   ├── 2.jpg
│   │   │   │   │   ├── 3.jpg
│   │   │   │   │   ├── 4.jpg
│   │   │   │   │   ├── 5.jpg
│   │   │   │   │   └── 6.jpg
│   │   │   │   └── js
│   │   │   │   ├── common.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   ├── jquery.validate.min.js
│   │   │   │   ├── supersized.3.2.7.min.js
│   │   │   │   └── supersized-init.js
│   │   │   ├── button
│   │   │   │   ├── css
│   │   │   │   │   └── button.min.css
│   │   │   │   └── js
│   │   │   │   └── script.js
│   │   │   ├── button1
│   │   │   │   └── css
│   │   │   │   ├── default.css
│   │   │   │   ├── demo.css
│   │   │   │   ├── loaders.css
│   │   │   │   ├── normalize.css
│   │   │   │   └── styles.css
│   │   │   ├── content
│   │   │   │   ├── css
│   │   │   │   │   ├── home.css
│   │   │   │   │   ├── jquery.treetable.css
│   │   │   │   │   ├── jquery.treetable.theme.default.css
│   │   │   │   │   ├── login.css
│   │   │   │   │   ├── Site.css
│   │   │   │   │   └── ViewPage.css
│   │   │   │   ├── images
│   │   │   │   │   ├── login.jpg
│   │   │   │   │   └── top-img.jpg
│   │   │   │   └── js
│   │   │   │   ├── echarts.min.js
│   │   │   │   ├── jquery-1.7.1.js
│   │   │   │   ├── jquery-1.9.1.js
│   │   │   │   ├── jquery.form.js
│   │   │   │   ├── jquery-migrate-1.1.1.js
│   │   │   │   └── jquery.treetable.js
│   │   │   ├── home
│   │   │   │   ├── supersized.3.2.7.min.js
│   │   │   │   └── supersized-init.js
│   │   │   ├── index
│   │   │   │   ├── admin
│   │   │   │   │   ├── css
│   │   │   │   │   │   └── default
│   │   │   │   │   │   ├── index.css
│   │   │   │   │   │   ├── login.css
│   │   │   │   │   │   └── share.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── back1.jpg
│   │   │   │   │   │   ├── back2.jpg
│   │   │   │   │   │   ├── back3.jpg
│   │   │   │   │   │   ├── checkNum.jpg
│   │   │   │   │   │   ├── close.gif
│   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── loge.png
│   │   │   │   │   │   └── logo-right.png
│   │   │   │   │   └── js
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── login.js
│   │   │   │   ├── layui
│   │   │   │   │   ├── content
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   ├── home.css
│   │   │   │   │   │   │   ├── jquery.treetable.css
│   │   │   │   │   │   │   ├── jquery.treetable.theme.default.css
│   │   │   │   │   │   │   ├── login.css
│   │   │   │   │   │   │   ├── Site.css
│   │   │   │   │   │   │   └── ViewPage.css
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── login.jpg
│   │   │   │   │   │   │   └── top-img.jpg
│   │   │   │   │   │   └── js
│   │   │   │   │   │   ├── echarts.min.js
│   │   │   │   │   │   ├── jquery-1.7.1.js
│   │   │   │   │   │   ├── jquery-1.9.1.js
│   │   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   │   ├── jquery-migrate-1.1.1.js
│   │   │   │   │   │   └── jquery.treetable.js
│   │   │   │   │   ├── hcss
│   │   │   │   │   │   ├── css.css
│   │   │   │   │   │   ├── dateIco.png
│   │   │   │   │   │   ├── manhuaDate.1.0.css
│   │   │   │   │   │   ├── page1.css
│   │   │   │   │   │   ├── page.css
│   │   │   │   │   │   └── public.css
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── coin02.png
│   │   │   │   │   │   ├── no.png
│   │   │   │   │   │   └── ok.png
│   │   │   │   │   ├── jjs
│   │   │   │   │   │   ├── ajaxfileupload.js
│   │   │   │   │   │   ├── jquery-1.7.2.min.js
│   │   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   │   ├── jquery.mousewheel.js
│   │   │   │   │   │   ├── manhuaDate.1.0.js
│   │   │   │   │   │   ├── page.js
│   │   │   │   │   │   ├── public.js
│   │   │   │   │   │   └── scroll.js
│   │   │   │   │   └── js
│   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   ├── jquery.mockjax.js
│   │   │   │   │   ├── jquery-ui.min.js
│   │   │   │   │   ├── Particleground.js
│   │   │   │   │   ├── stopExecutionOnTimeout.js
│   │   │   │   │   └── Treatment.js
│   │   │   │   └── share
│   │   │   │   ├── css
│   │   │   │   │   ├── jquery.mCustomScrollbar.css
│   │   │   │   │   ├── mCSB_buttons.png
│   │   │   │   │   └── share.css
│   │   │   │   ├── images
│   │   │   │   │   └── favicon.ico
│   │   │   │   └── js
│   │   │   │   ├── jquery-1.11.0.js
│   │   │   │   ├── jquery-1.11.0.min.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   └── jsUtil.js
│   │   │   └── js
│   │   │   ├── jquery-3.2.0.js
│   │   │   ├── layer.js
│   │   │   └── WdatePicker.js
│   │   └── templates
│   │   └── thymeleaf
│   │   ├── batch
│   │   │   ├── addbatchmanage.html
│   │   │   ├── listbatch.html
│   │   │   └── updatebatch.html
│   │   ├── course
│   │   │   ├── addcourse.html
│   │   │   ├── listcourse.html
│   │   │   └── updatecourse.html
│   │   ├── courseresour
│   │   │   ├── addcourseresoure.html
│   │   │   ├── listresoure.html
│   │   │   └── updateresoure.html
│   │   ├── error
│   │   │   ├── error.html
│   │   │   └── success.html
│   │   ├── examscore
│   │   │   ├── exclexam.html
│   │   │   ├── listscore.html
│   │   │   └── updatescore.html
│   │   ├── home
│   │   │   └── home.html
│   │   ├── login
│   │   │   ├── login.html
│   │   │   └── regiest.html
│   │   ├── role
│   │   │   ├── addrole.html
│   │   │   ├── listrole.html
│   │   │   └── updaterole.html
│   │   ├── student
│   │   │   ├── studentindex.html
│   │   │   ├── studentmessage.html
│   │   │   ├── studentresoure.html
│   │   │   ├── studybatch.html
│   │   │   ├── study.html
│   │   │   ├── studyrecord.html
│   │   │   └── studyview.html
│   │   ├── studyrecord
│   │   │   └── listrecord.html
│   │   └── user
│   │   ├── adduser.html
│   │   ├── listuser.html
│   │   ├── updatemessage.html
│   │   ├── updateps.html
│   │   └── userindex.html
│   └── test-classes
│   └── com
│   └── example
│   └── demo
│   └── StudyApplicationTests.class
└── 04数据库
├── oos.sql
└── 数据库设计报告(1590004-159001419-彭小均).doc

358 directories, 1452 files

标签:

实例下载地址

spring boot 在线学习系统.zip

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警