gitextract_z89967oo/ └── Check Maven Webapp/ ├── .classpath ├── .project ├── .settings/ │ ├── .jsdtscope │ ├── com.genuitec.eclipse.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.ltk.core.refactoring.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ └── org.eclipse.wst.validation.prefs ├── pom.xml ├── src/ │ └── main/ │ ├── java/ │ │ └── edu/ │ │ └── fjnu/ │ │ └── online/ │ │ ├── common/ │ │ │ └── springdao/ │ │ │ ├── AppContext.java │ │ │ └── SQLDAO.java │ │ ├── controller/ │ │ │ ├── BaseController.java │ │ │ ├── admin/ │ │ │ │ ├── CourseController.java │ │ │ │ ├── GradeController.java │ │ │ │ ├── PaperController.java │ │ │ │ ├── QuestionController.java │ │ │ │ ├── TypeController.java │ │ │ │ └── UserController.java │ │ │ └── user/ │ │ │ ├── ErrorBookController.java │ │ │ ├── PaperMgController.java │ │ │ └── StuController.java │ │ ├── dao/ │ │ │ ├── BaseDao.java │ │ │ ├── CourseDao.java │ │ │ ├── ErrorBookDao.java │ │ │ ├── GradeDao.java │ │ │ ├── PaperDao.java │ │ │ ├── QuestionDao.java │ │ │ ├── TypeDao.java │ │ │ ├── UserDao.java │ │ │ └── impl/ │ │ │ ├── BaseDaoImpl.java │ │ │ ├── CourseDaoImpl.java │ │ │ ├── ErrorBookDaoImpl.java │ │ │ ├── GradeDaoImpl.java │ │ │ ├── PaperDaoImpl.java │ │ │ ├── QuestionDaoImpl.java │ │ │ ├── TypeDaoImpl.java │ │ │ └── UserDaoImpl.java │ │ ├── domain/ │ │ │ ├── Course.java │ │ │ ├── ErrorBook.java │ │ │ ├── Factory.java │ │ │ ├── Grade.java │ │ │ ├── MsgItem.java │ │ │ ├── Paper.java │ │ │ ├── Question.java │ │ │ ├── Type.java │ │ │ └── User.java │ │ ├── pagination/ │ │ │ ├── Page.java │ │ │ └── PageInterceptor.java │ │ ├── service/ │ │ │ ├── CourseService.java │ │ │ ├── ErrorBookService.java │ │ │ ├── GradeService.java │ │ │ ├── PaperService.java │ │ │ ├── QuestionService.java │ │ │ ├── TypeService.java │ │ │ ├── UserService.java │ │ │ └── impl/ │ │ │ ├── CourseServiceImpl.java │ │ │ ├── ErrorBookServiceImpl.java │ │ │ ├── GradeServiceImpl.java │ │ │ ├── PaperServiceImpl.java │ │ │ ├── QuestionServiceImpl.java │ │ │ ├── TypeServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ └── util/ │ │ ├── Arith.java │ │ ├── ComputeScore.java │ │ ├── Computeclass.java │ │ ├── DateConverter.java │ │ ├── DownloadUtil.java │ │ ├── FormatStyle.java │ │ ├── MD5Util.java │ │ ├── MybatisUtil.java │ │ ├── TextSimilarityUtil.java │ │ ├── UtilFuns.java │ │ └── file/ │ │ └── FileUtil.java │ ├── resources/ │ │ ├── beans.xml │ │ ├── edu/ │ │ │ └── fjnu/ │ │ │ └── online/ │ │ │ └── mapper/ │ │ │ ├── Course.xml │ │ │ ├── ErrorBook.xml │ │ │ ├── Factory.xml │ │ │ ├── Grade.xml │ │ │ ├── Paper.xml │ │ │ ├── Question.xml │ │ │ ├── Type.xml │ │ │ └── User.xml │ │ ├── jdbc.properties │ │ ├── springmvc-servlet.xml │ │ └── sqlMapConfig.xml │ └── webapp/ │ ├── WEB-INF/ │ │ ├── pages/ │ │ │ ├── admin/ │ │ │ │ ├── course-mgt.jsp │ │ │ │ ├── course-reg.jsp │ │ │ │ ├── course-upd.jsp │ │ │ │ ├── grade-mgt.jsp │ │ │ │ ├── grade-reg.jsp │ │ │ │ ├── grade-upd.jsp │ │ │ │ ├── index.jsp │ │ │ │ ├── info-deal.jsp │ │ │ │ ├── info-det.jsp │ │ │ │ ├── info-mgt.jsp │ │ │ │ ├── info-qry.jsp │ │ │ │ ├── info-reg.jsp │ │ │ │ ├── info-upd.jsp │ │ │ │ ├── login.jsp │ │ │ │ ├── paper-mgt.jsp │ │ │ │ ├── paper-qry.jsp │ │ │ │ ├── paper-reg.jsp │ │ │ │ ├── question-mgt.jsp │ │ │ │ ├── question-qry.jsp │ │ │ │ ├── question-reg.jsp │ │ │ │ ├── question-upd.jsp │ │ │ │ ├── type-info.jsp │ │ │ │ ├── type-mgt.jsp │ │ │ │ ├── type-qry.jsp │ │ │ │ ├── type-reg.jsp │ │ │ │ └── type-upd.jsp │ │ │ ├── base.jsp │ │ │ ├── baseinfo/ │ │ │ │ ├── left.jsp │ │ │ │ └── main.jsp │ │ │ ├── baselist.jsp │ │ │ ├── bases.jsp │ │ │ ├── home/ │ │ │ │ ├── fmain.jsp │ │ │ │ ├── left.jsp │ │ │ │ ├── olmsgList.jsp │ │ │ │ └── title.jsp │ │ │ ├── index1.jsp │ │ │ └── user/ │ │ │ ├── about.html │ │ │ ├── about.jsp │ │ │ ├── index.html │ │ │ ├── index.jsp │ │ │ ├── login.html │ │ │ ├── login.jsp │ │ │ ├── mybooks.html │ │ │ ├── mybooks.jsp │ │ │ ├── mypaper.html │ │ │ ├── mypaper.jsp │ │ │ ├── onlinecheck.html │ │ │ ├── paperdetail.jsp │ │ │ ├── qrypaper.jsp │ │ │ ├── regist.html │ │ │ ├── regist.jsp │ │ │ ├── regist1.jsp │ │ │ ├── scorequery.html │ │ │ ├── scorequery.jsp │ │ │ ├── tomypaper.jsp │ │ │ ├── userinfo.html │ │ │ └── userinfo.jsp │ │ └── web.xml │ ├── components/ │ │ ├── chart/ │ │ │ ├── amcolumn/ │ │ │ │ ├── amcharts_key.txt │ │ │ │ ├── amcolumn.swf │ │ │ │ ├── amcolumn_data.txt │ │ │ │ ├── amcolumn_data.xml │ │ │ │ ├── amcolumn_data333.txt │ │ │ │ ├── amcolumn_settings.xml │ │ │ │ ├── export.aspx │ │ │ │ ├── export.aspx.cs │ │ │ │ ├── export.php │ │ │ │ ├── fonts/ │ │ │ │ │ ├── arial.fla │ │ │ │ │ ├── arial.swf │ │ │ │ │ ├── garamond.swf │ │ │ │ │ ├── tahoma.swf │ │ │ │ │ └── times new roman.swf │ │ │ │ ├── patterns/ │ │ │ │ │ ├── diagonal.fla │ │ │ │ │ ├── diagonal.swf │ │ │ │ │ ├── horizontal.fla │ │ │ │ │ ├── horizontal.swf │ │ │ │ │ ├── vertical.fla │ │ │ │ │ └── vertical.swf │ │ │ │ ├── plugins/ │ │ │ │ │ └── value_indicator.swf │ │ │ │ └── swfobject.js │ │ │ ├── amline_1.6.4.1/ │ │ │ │ ├── amline/ │ │ │ │ │ ├── amcharts_key.txt │ │ │ │ │ ├── amline.swf │ │ │ │ │ ├── amline_data.txt │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ ├── export.aspx │ │ │ │ │ ├── export.aspx.cs │ │ │ │ │ ├── export.php │ │ │ │ │ ├── fonts/ │ │ │ │ │ │ ├── arial.swf │ │ │ │ │ │ ├── garamond.swf │ │ │ │ │ │ ├── georgia.swf │ │ │ │ │ │ ├── tahoma.fla │ │ │ │ │ │ ├── tahoma.swf │ │ │ │ │ │ └── times new roman.swf │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ └── value_indicator.swf │ │ │ │ │ └── swfobject.js │ │ │ │ ├── amline.html │ │ │ │ ├── changelog.txt │ │ │ │ ├── examples/ │ │ │ │ │ ├── auto_resizing_chart/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chart_with_data_gaps/ │ │ │ │ │ │ ├── amline_data.txt │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chart_with_scroller/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ ├── bg.swf │ │ │ │ │ │ ├── bomb.swf │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── data_and_settings_inisde_html/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── javascript_control/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── multiple_charts_on_one_page/ │ │ │ │ │ │ ├── amline_data1.txt │ │ │ │ │ │ ├── amline_data2.txt │ │ │ │ │ │ ├── amline_settings1.xml │ │ │ │ │ │ ├── amline_settings2.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── no_interactivity/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── stacked_area_chart/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ └── value_indicator_plugin/ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ └── index.html │ │ │ │ ├── licence.txt │ │ │ │ └── readme.txt │ │ │ └── ampie_1.6.4.1/ │ │ │ ├── ampie/ │ │ │ │ ├── amcharts_key.txt │ │ │ │ ├── ampie.swf │ │ │ │ ├── ampie_data.txt │ │ │ │ ├── ampie_data.xml │ │ │ │ ├── ampie_settings.xml │ │ │ │ ├── export.aspx │ │ │ │ ├── export.aspx.cs │ │ │ │ ├── export.php │ │ │ │ ├── patterns/ │ │ │ │ │ ├── diagonal.fla │ │ │ │ │ ├── diagonal.swf │ │ │ │ │ ├── horizontal.fla │ │ │ │ │ ├── horizontal.swf │ │ │ │ │ ├── vertical.fla │ │ │ │ │ └── vertical.swf │ │ │ │ ├── swfobject.js │ │ │ │ └── xx.xml │ │ │ ├── ampie.html │ │ │ ├── changelog.txt │ │ │ ├── examples/ │ │ │ │ ├── ampie/ │ │ │ │ │ ├── ampie1/ │ │ │ │ │ │ ├── ampie_data.txt │ │ │ │ │ │ └── ampie_settings.xml │ │ │ │ │ ├── ampie3/ │ │ │ │ │ │ ├── ampie_data.xml │ │ │ │ │ │ └── ampie_settings.xml │ │ │ │ │ ├── ampie4/ │ │ │ │ │ │ ├── ampie_data1.txt │ │ │ │ │ │ ├── ampie_data2.txt │ │ │ │ │ │ ├── ampie_settings1.xml │ │ │ │ │ │ └── ampie_settings2.xml │ │ │ │ │ ├── ampie5/ │ │ │ │ │ │ ├── ampie_data.xml │ │ │ │ │ │ ├── ampie_settings.xml │ │ │ │ │ │ └── bg.swf │ │ │ │ │ └── js/ │ │ │ │ │ ├── ampie_data.xml │ │ │ │ │ └── ampie_settings.xml │ │ │ │ ├── ampie1.html │ │ │ │ ├── ampie2.html │ │ │ │ ├── ampie3.html │ │ │ │ ├── ampie4.html │ │ │ │ ├── ampie5.html │ │ │ │ ├── js_example.html │ │ │ │ └── multiple_charts_on_one_page/ │ │ │ │ ├── ampie_data1.txt │ │ │ │ ├── ampie_data2.txt │ │ │ │ ├── ampie_settings1.xml │ │ │ │ ├── ampie_settings2.xml │ │ │ │ └── index.html │ │ │ ├── licence.txt │ │ │ └── readme.txt │ │ └── jquery-ui/ │ │ └── jquery-1.2.6.js │ ├── css/ │ │ ├── WdatePicker.css │ │ ├── base.css │ │ ├── bootstrap.css │ │ ├── extreme/ │ │ │ ├── extremecomponents.css │ │ │ └── extremesite.css │ │ ├── home.css │ │ ├── index.css │ │ ├── info-mgt.css │ │ ├── info-reg.css │ │ ├── jquery.dialog.css │ │ ├── jquery.searchableSelect.css │ │ ├── login.css │ │ ├── reset.css │ │ ├── style.css │ │ ├── supersized.css │ │ ├── swipebox.css │ │ ├── time.css │ │ └── userlogin.css │ ├── images/ │ │ └── olmsg/ │ │ ├── mouse149.ANI │ │ ├── shubiao.ani │ │ └── wish1.swf │ ├── index.jsp │ ├── js/ │ │ ├── WdatePicker.js │ │ ├── bootstrap.js │ │ ├── calendar.js │ │ ├── classie.js │ │ ├── common.js │ │ ├── core.js │ │ ├── datepicker/ │ │ │ ├── My97DatePicker.htm │ │ │ ├── WdatePicker.js │ │ │ ├── calendar.js │ │ │ ├── config.js │ │ │ ├── lang/ │ │ │ │ ├── en.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── readme.txt │ │ │ └── skin/ │ │ │ ├── WdatePicker.css │ │ │ ├── default/ │ │ │ │ └── datepicker.css │ │ │ └── whyGreen/ │ │ │ └── datepicker.css │ │ ├── dtree/ │ │ │ ├── ckdtree/ │ │ │ │ ├── api.html │ │ │ │ ├── dtree.css │ │ │ │ ├── dtree.js │ │ │ │ └── example01.html │ │ │ ├── dtree/ │ │ │ │ ├── bzgk.html │ │ │ │ ├── dept.html │ │ │ │ ├── dtree.css │ │ │ │ ├── dtree.js │ │ │ │ ├── dtreebak.js │ │ │ │ └── example01.html │ │ │ └── tdtree/ │ │ │ ├── api.html │ │ │ ├── dtree.css │ │ │ ├── dtree.js │ │ │ ├── example01.html │ │ │ └── frame.html │ │ ├── easing.js │ │ ├── index.js │ │ ├── jquery-1.10.1.js │ │ ├── jquery.dialog.js │ │ ├── jquery.js │ │ ├── jquery.pagination.js │ │ ├── jquery.searchableSelect.js │ │ ├── lang/ │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── modernizr.custom.js │ │ ├── move-top.js │ │ ├── scripts.js │ │ ├── skin/ │ │ │ ├── WdatePicker.css │ │ │ ├── default/ │ │ │ │ └── datepicker.css │ │ │ └── whyGreen/ │ │ │ └── datepicker.css │ │ ├── supersized-init.js │ │ ├── tabledo.js │ │ └── uisearch.js │ ├── make/ │ │ └── xlsprint/ │ │ ├── OFFER.xls │ │ ├── SALES.xls │ │ ├── SAMPLE.xls │ │ ├── tCONTRACT.xls │ │ ├── tEXPORT.xls │ │ ├── tFINANCE.xls │ │ ├── tHOMEPARKINGLIST.xls │ │ ├── tINVOICE.xls │ │ ├── tOUTPRODUCT.xls │ │ ├── tPARKINGLIST.xls │ │ ├── tSHIPPINGORDER.xls │ │ └── txOutProduct.xls │ ├── skin/ │ │ └── default/ │ │ ├── css/ │ │ │ ├── default.css │ │ │ ├── login.css │ │ │ ├── main.css │ │ │ ├── table.css │ │ │ └── title.css │ │ └── js/ │ │ └── toggle.js │ └── sql/ │ └── onlinetest.sql └── target/ ├── Check/ │ ├── WEB-INF/ │ │ ├── classes/ │ │ │ ├── beans.xml │ │ │ ├── edu/ │ │ │ │ └── fjnu/ │ │ │ │ └── online/ │ │ │ │ └── mapper/ │ │ │ │ ├── Course.xml │ │ │ │ ├── ErrorBook.xml │ │ │ │ ├── Factory.xml │ │ │ │ ├── Grade.xml │ │ │ │ ├── Paper.xml │ │ │ │ ├── Question.xml │ │ │ │ ├── Type.xml │ │ │ │ └── User.xml │ │ │ ├── jdbc.properties │ │ │ ├── springmvc-servlet.xml │ │ │ └── sqlMapConfig.xml │ │ ├── lib/ │ │ │ ├── aopalliance-1.0.jar │ │ │ ├── c3p0-0.9.1.2.jar │ │ │ ├── com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar │ │ │ ├── commons-codec-1.5.jar │ │ │ ├── commons-fileupload-1.2.2.jar │ │ │ ├── commons-io-2.0.1.jar │ │ │ ├── commons-logging-1.1.1.jar │ │ │ ├── dom4j-1.6.1.jar │ │ │ ├── hamcrest-core-1.1.jar │ │ │ ├── jackson-core-asl-1.9.11.jar │ │ │ ├── jackson-mapper-asl-1.9.11.jar │ │ │ ├── jcommon-1.0.16.jar │ │ │ ├── jfreechart-1.0.13.jar │ │ │ ├── jsp-api-2.1.jar │ │ │ ├── jsqlparser-0.9.1.jar │ │ │ ├── jstl-api-1.2.jar │ │ │ ├── jstl-impl-1.2.jar │ │ │ ├── junit-4.9.jar │ │ │ ├── jxl-2.4.2.jar │ │ │ ├── log4j-1.2.13.jar │ │ │ ├── mybatis-3.2.2.jar │ │ │ ├── mybatis-spring-1.2.0.jar │ │ │ ├── mysql-connector-java-5.1.10.jar │ │ │ ├── pagehelper-4.0.0.jar │ │ │ ├── poi-3.9.jar │ │ │ ├── poi-ooxml-3.9.jar │ │ │ ├── poi-ooxml-schemas-3.9.jar │ │ │ ├── servlet-api-2.5.jar │ │ │ ├── spring-aop-3.2.2.RELEASE.jar │ │ │ ├── spring-beans-3.2.2.RELEASE.jar │ │ │ ├── spring-context-3.2.2.RELEASE.jar │ │ │ ├── spring-core-3.2.2.RELEASE.jar │ │ │ ├── spring-expression-3.2.2.RELEASE.jar │ │ │ ├── spring-jdbc-3.2.2.RELEASE.jar │ │ │ ├── spring-orm-3.2.2.RELEASE.jar │ │ │ ├── spring-tx-3.2.2.RELEASE.jar │ │ │ ├── spring-web-3.2.2.RELEASE.jar │ │ │ ├── spring-webmvc-3.2.2.RELEASE.jar │ │ │ ├── stax-api-1.0.1.jar │ │ │ ├── xml-apis-1.0.b2.jar │ │ │ └── xmlbeans-2.3.0.jar │ │ ├── pages/ │ │ │ ├── admin/ │ │ │ │ ├── course-mgt.jsp │ │ │ │ ├── course-reg.jsp │ │ │ │ ├── course-upd.jsp │ │ │ │ ├── grade-mgt.jsp │ │ │ │ ├── grade-reg.jsp │ │ │ │ ├── grade-upd.jsp │ │ │ │ ├── index.jsp │ │ │ │ ├── info-deal.jsp │ │ │ │ ├── info-det.jsp │ │ │ │ ├── info-mgt.jsp │ │ │ │ ├── info-qry.jsp │ │ │ │ ├── info-reg.jsp │ │ │ │ ├── info-upd.jsp │ │ │ │ ├── login.jsp │ │ │ │ ├── paper-mgt.jsp │ │ │ │ ├── paper-qry.jsp │ │ │ │ ├── paper-reg.jsp │ │ │ │ ├── question-mgt.jsp │ │ │ │ ├── question-qry.jsp │ │ │ │ ├── question-reg.jsp │ │ │ │ ├── question-upd.jsp │ │ │ │ ├── type-info.jsp │ │ │ │ ├── type-mgt.jsp │ │ │ │ ├── type-qry.jsp │ │ │ │ ├── type-reg.jsp │ │ │ │ └── type-upd.jsp │ │ │ ├── base.jsp │ │ │ ├── baseinfo/ │ │ │ │ ├── left.jsp │ │ │ │ └── main.jsp │ │ │ ├── baselist.jsp │ │ │ ├── bases.jsp │ │ │ ├── home/ │ │ │ │ ├── fmain.jsp │ │ │ │ ├── left.jsp │ │ │ │ ├── olmsgList.jsp │ │ │ │ └── title.jsp │ │ │ ├── index1.jsp │ │ │ └── user/ │ │ │ ├── index.html │ │ │ ├── index.jsp │ │ │ ├── login.html │ │ │ ├── login.jsp │ │ │ ├── mybooks.html │ │ │ ├── mybooks.jsp │ │ │ ├── mypaper.html │ │ │ ├── mypaper.jsp │ │ │ ├── onlinecheck.html │ │ │ ├── paperdetail.jsp │ │ │ ├── qrypaper.jsp │ │ │ ├── regist.html │ │ │ ├── regist.jsp │ │ │ ├── regist1.jsp │ │ │ ├── scorequery.html │ │ │ ├── scorequery.jsp │ │ │ ├── tomypaper.jsp │ │ │ ├── userinfo.html │ │ │ └── userinfo.jsp │ │ └── web.xml │ ├── components/ │ │ ├── chart/ │ │ │ ├── amcolumn/ │ │ │ │ ├── amcharts_key.txt │ │ │ │ ├── amcolumn.swf │ │ │ │ ├── amcolumn_data.txt │ │ │ │ ├── amcolumn_data.xml │ │ │ │ ├── amcolumn_data333.txt │ │ │ │ ├── amcolumn_settings.xml │ │ │ │ ├── export.aspx │ │ │ │ ├── export.aspx.cs │ │ │ │ ├── export.php │ │ │ │ ├── fonts/ │ │ │ │ │ ├── arial.fla │ │ │ │ │ ├── arial.swf │ │ │ │ │ ├── garamond.swf │ │ │ │ │ ├── tahoma.swf │ │ │ │ │ └── times new roman.swf │ │ │ │ ├── patterns/ │ │ │ │ │ ├── diagonal.fla │ │ │ │ │ ├── diagonal.swf │ │ │ │ │ ├── horizontal.fla │ │ │ │ │ ├── horizontal.swf │ │ │ │ │ ├── vertical.fla │ │ │ │ │ └── vertical.swf │ │ │ │ ├── plugins/ │ │ │ │ │ └── value_indicator.swf │ │ │ │ └── swfobject.js │ │ │ ├── amline_1.6.4.1/ │ │ │ │ ├── amline/ │ │ │ │ │ ├── amcharts_key.txt │ │ │ │ │ ├── amline.swf │ │ │ │ │ ├── amline_data.txt │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ ├── export.aspx │ │ │ │ │ ├── export.aspx.cs │ │ │ │ │ ├── export.php │ │ │ │ │ ├── fonts/ │ │ │ │ │ │ ├── arial.swf │ │ │ │ │ │ ├── garamond.swf │ │ │ │ │ │ ├── georgia.swf │ │ │ │ │ │ ├── tahoma.fla │ │ │ │ │ │ ├── tahoma.swf │ │ │ │ │ │ └── times new roman.swf │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ └── value_indicator.swf │ │ │ │ │ └── swfobject.js │ │ │ │ ├── amline.html │ │ │ │ ├── changelog.txt │ │ │ │ ├── examples/ │ │ │ │ │ ├── auto_resizing_chart/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chart_with_data_gaps/ │ │ │ │ │ │ ├── amline_data.txt │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chart_with_scroller/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ ├── bg.swf │ │ │ │ │ │ ├── bomb.swf │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── data_and_settings_inisde_html/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── javascript_control/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── multiple_charts_on_one_page/ │ │ │ │ │ │ ├── amline_data1.txt │ │ │ │ │ │ ├── amline_data2.txt │ │ │ │ │ │ ├── amline_settings1.xml │ │ │ │ │ │ ├── amline_settings2.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── no_interactivity/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── stacked_area_chart/ │ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ │ └── index.html │ │ │ │ │ └── value_indicator_plugin/ │ │ │ │ │ ├── amline_data.xml │ │ │ │ │ ├── amline_settings.xml │ │ │ │ │ └── index.html │ │ │ │ ├── licence.txt │ │ │ │ └── readme.txt │ │ │ └── ampie_1.6.4.1/ │ │ │ ├── ampie/ │ │ │ │ ├── amcharts_key.txt │ │ │ │ ├── ampie.swf │ │ │ │ ├── ampie_data.txt │ │ │ │ ├── ampie_data.xml │ │ │ │ ├── ampie_settings.xml │ │ │ │ ├── export.aspx │ │ │ │ ├── export.aspx.cs │ │ │ │ ├── export.php │ │ │ │ ├── patterns/ │ │ │ │ │ ├── diagonal.fla │ │ │ │ │ ├── diagonal.swf │ │ │ │ │ ├── horizontal.fla │ │ │ │ │ ├── horizontal.swf │ │ │ │ │ ├── vertical.fla │ │ │ │ │ └── vertical.swf │ │ │ │ ├── swfobject.js │ │ │ │ └── xx.xml │ │ │ ├── ampie.html │ │ │ ├── changelog.txt │ │ │ ├── examples/ │ │ │ │ ├── ampie/ │ │ │ │ │ ├── ampie1/ │ │ │ │ │ │ ├── ampie_data.txt │ │ │ │ │ │ └── ampie_settings.xml │ │ │ │ │ ├── ampie3/ │ │ │ │ │ │ ├── ampie_data.xml │ │ │ │ │ │ └── ampie_settings.xml │ │ │ │ │ ├── ampie4/ │ │ │ │ │ │ ├── ampie_data1.txt │ │ │ │ │ │ ├── ampie_data2.txt │ │ │ │ │ │ ├── ampie_settings1.xml │ │ │ │ │ │ └── ampie_settings2.xml │ │ │ │ │ ├── ampie5/ │ │ │ │ │ │ ├── ampie_data.xml │ │ │ │ │ │ ├── ampie_settings.xml │ │ │ │ │ │ └── bg.swf │ │ │ │ │ └── js/ │ │ │ │ │ ├── ampie_data.xml │ │ │ │ │ └── ampie_settings.xml │ │ │ │ ├── ampie1.html │ │ │ │ ├── ampie2.html │ │ │ │ ├── ampie3.html │ │ │ │ ├── ampie4.html │ │ │ │ ├── ampie5.html │ │ │ │ ├── js_example.html │ │ │ │ └── multiple_charts_on_one_page/ │ │ │ │ ├── ampie_data1.txt │ │ │ │ ├── ampie_data2.txt │ │ │ │ ├── ampie_settings1.xml │ │ │ │ ├── ampie_settings2.xml │ │ │ │ └── index.html │ │ │ ├── licence.txt │ │ │ └── readme.txt │ │ └── jquery-ui/ │ │ └── jquery-1.2.6.js │ ├── css/ │ │ ├── WdatePicker.css │ │ ├── base.css │ │ ├── bootstrap.css │ │ ├── extreme/ │ │ │ ├── extremecomponents.css │ │ │ └── extremesite.css │ │ ├── home.css │ │ ├── index.css │ │ ├── info-mgt.css │ │ ├── info-reg.css │ │ ├── jquery.dialog.css │ │ ├── jquery.searchableSelect.css │ │ ├── login.css │ │ ├── reset.css │ │ ├── style.css │ │ ├── supersized.css │ │ ├── swipebox.css │ │ ├── time.css │ │ └── userlogin.css │ ├── images/ │ │ └── olmsg/ │ │ ├── mouse149.ANI │ │ ├── shubiao.ani │ │ └── wish1.swf │ ├── index.jsp │ ├── js/ │ │ ├── WdatePicker.js │ │ ├── bootstrap.js │ │ ├── calendar.js │ │ ├── classie.js │ │ ├── common.js │ │ ├── core.js │ │ ├── datepicker/ │ │ │ ├── My97DatePicker.htm │ │ │ ├── WdatePicker.js │ │ │ ├── calendar.js │ │ │ ├── config.js │ │ │ ├── lang/ │ │ │ │ ├── en.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── readme.txt │ │ │ └── skin/ │ │ │ ├── WdatePicker.css │ │ │ ├── default/ │ │ │ │ └── datepicker.css │ │ │ └── whyGreen/ │ │ │ └── datepicker.css │ │ ├── dtree/ │ │ │ ├── ckdtree/ │ │ │ │ ├── api.html │ │ │ │ ├── dtree.css │ │ │ │ ├── dtree.js │ │ │ │ └── example01.html │ │ │ ├── dtree/ │ │ │ │ ├── bzgk.html │ │ │ │ ├── dept.html │ │ │ │ ├── dtree.css │ │ │ │ ├── dtree.js │ │ │ │ ├── dtreebak.js │ │ │ │ └── example01.html │ │ │ └── tdtree/ │ │ │ ├── api.html │ │ │ ├── dtree.css │ │ │ ├── dtree.js │ │ │ ├── example01.html │ │ │ └── frame.html │ │ ├── easing.js │ │ ├── index.js │ │ ├── jquery-1.10.1.js │ │ ├── jquery.dialog.js │ │ ├── jquery.js │ │ ├── jquery.pagination.js │ │ ├── jquery.searchableSelect.js │ │ ├── lang/ │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── modernizr.custom.js │ │ ├── move-top.js │ │ ├── scripts.js │ │ ├── skin/ │ │ │ ├── WdatePicker.css │ │ │ ├── default/ │ │ │ │ └── datepicker.css │ │ │ └── whyGreen/ │ │ │ └── datepicker.css │ │ ├── supersized-init.js │ │ ├── tabledo.js │ │ └── uisearch.js │ ├── make/ │ │ └── xlsprint/ │ │ ├── OFFER.xls │ │ ├── SALES.xls │ │ ├── SAMPLE.xls │ │ ├── tCONTRACT.xls │ │ ├── tEXPORT.xls │ │ ├── tFINANCE.xls │ │ ├── tHOMEPARKINGLIST.xls │ │ ├── tINVOICE.xls │ │ ├── tOUTPRODUCT.xls │ │ ├── tPARKINGLIST.xls │ │ ├── tSHIPPINGORDER.xls │ │ └── txOutProduct.xls │ └── skin/ │ └── default/ │ ├── css/ │ │ ├── default.css │ │ ├── login.css │ │ ├── main.css │ │ ├── table.css │ │ └── title.css │ └── js/ │ └── toggle.js ├── Check.war ├── classes/ │ ├── beans.xml │ ├── edu/ │ │ └── fjnu/ │ │ └── online/ │ │ └── mapper/ │ │ ├── Course.xml │ │ ├── ErrorBook.xml │ │ ├── Factory.xml │ │ ├── Grade.xml │ │ ├── Paper.xml │ │ ├── Question.xml │ │ ├── Type.xml │ │ └── User.xml │ ├── jdbc.properties │ ├── springmvc-servlet.xml │ └── sqlMapConfig.xml ├── m2e-jee/ │ └── web-resources/ │ └── META-INF/ │ ├── MANIFEST.MF │ └── maven/ │ └── edu.fjnu.online/ │ └── Check/ │ ├── pom.properties │ └── pom.xml ├── maven-archiver/ │ └── pom.properties └── maven-status/ └── maven-compiler-plugin/ ├── compile/ │ └── default-compile/ │ ├── createdFiles.lst │ └── inputFiles.lst └── testCompile/ └── default-testCompile/ └── inputFiles.lst