├── .idea ├── artifacts │ ├── MovieManager_war.xml │ └── MovieManager_war_exploded.xml ├── compiler.xml ├── dataSources.xml ├── dictionaries │ └── sss.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml └── sqldialects.xml ├── out └── artifacts │ └── MovieManager_war_exploded │ └── META-INF │ └── MANIFEST.MF ├── pom.xml └── src └── main ├── java └── com │ └── javaedge │ ├── common │ ├── DateConverter.java │ ├── E3Result.java │ ├── FastDFSClient.java │ ├── JsonUtils.java │ ├── MovieRealm.java │ ├── NavigationTag.java │ └── Page.java │ ├── controller │ ├── AdminController.java │ ├── MovieController.java │ ├── PictureController.java │ └── UserController.java │ ├── mapper │ ├── AdminMapper.java │ ├── AdminMapper.xml │ ├── BrowseMapper.java │ ├── BrowseMapper.xml │ ├── CategoryMapper.java │ ├── CategoryMapper.xml │ ├── MovieMapper.java │ ├── MovieMapper.xml │ ├── MoviecategoryMapper.java │ ├── MoviecategoryMapper.xml │ ├── RectabMapper.java │ ├── RectabMapper.xml │ ├── ReviewMapper.java │ ├── ReviewMapper.xml │ ├── UserMapper.java │ └── UserMapper.xml │ ├── po │ ├── Admin.java │ ├── AdminExample.java │ ├── Browse.java │ ├── BrowseExample.java │ ├── Category.java │ ├── CategoryExample.java │ ├── Movie.java │ ├── MovieExample.java │ ├── Moviecategory.java │ ├── MoviecategoryExample.java │ ├── NewMovie.java │ ├── Query.java │ ├── QueryUser.java │ ├── Rectab.java │ ├── RectabExample.java │ ├── Review.java │ ├── ReviewExample.java │ ├── User.java │ └── UserExample.java │ └── service │ ├── AdminService.java │ ├── MovieService.java │ ├── SystemLogoutFilter.java │ ├── UserService.java │ └── impl │ ├── AdminServiceImpl.java │ ├── MovieServiceImpl.java │ └── UserServiceImpl.java ├── resources ├── conf │ └── client.conf ├── jdbc.properties ├── log4j.properties ├── mybatis │ └── SqlMapConfig.xml ├── resource.properties └── spring │ ├── applicationContext-dao.xml │ ├── applicationContext-service.xml │ ├── spring-shiro.xml │ └── springmvc.xml └── webapp ├── WEB-INF ├── jsp │ ├── adminLogin.jsp │ ├── adminManage.jsp │ ├── movieManage.jsp │ └── userManage.jsp ├── tld │ └── commons.tld └── web.xml ├── assets ├── css │ ├── boot-crm.css │ ├── bootstrap-datetimepicker.css │ ├── bootstrap-datetimepicker.min.css │ ├── bootstrap-editable.css │ ├── bootstrap-select.css │ ├── bootstrap-select.min.css │ ├── bootstrap-table-reorder-rows.min.css │ ├── bootstrap-table.min.css │ ├── bootstrap-tagsinput-typeahead.css │ ├── bootstrap-tagsinput.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── dataTables.bootstrap.css │ ├── default.css │ ├── fileinput.min.css │ ├── font-awesome.min.css │ ├── jquery-confirm.min.css │ ├── jquery.alerts.css │ ├── login2.css │ ├── metisMenu.min.css │ ├── multiple-select.css │ ├── sb-admin-2.css │ ├── star-rating.css │ ├── star-rating.min.css │ ├── style-login.css │ ├── style-responsive.css │ ├── style.css │ ├── table-responsive.css │ ├── taotao.css │ ├── to-do.css │ └── zabuto_calendar.css ├── font-awesome │ ├── css │ │ └── font-awesome.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff ├── fonts │ ├── 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 │ ├── blog-bg.jpg │ ├── checkbox-gray.png │ ├── friends │ │ ├── fr-01.jpg │ │ ├── fr-02.jpg │ │ ├── fr-03.jpg │ │ ├── fr-04.jpg │ │ ├── fr-05.jpg │ │ ├── fr-06.jpg │ │ ├── fr-07.jpg │ │ ├── fr-08.jpg │ │ ├── fr-09.jpg │ │ ├── fr-10.jpg │ │ └── fr-11.jpg │ ├── instagram.jpg │ ├── login-bg.jpg │ ├── loginimg │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ ├── lorde.jpg │ ├── mask.png │ ├── ny.jpg │ ├── portfolio │ │ ├── port01.jpg │ │ ├── port02.jpg │ │ ├── port03.jpg │ │ ├── port04.jpg │ │ ├── port05.jpg │ │ └── port06.jpg │ ├── product.jpg │ ├── product.png │ ├── profile-01.jpg │ ├── profile-02.jpg │ ├── radio-gray.png │ ├── ui-danro.jpg │ ├── ui-divya.jpg │ ├── ui-sam.jpg │ ├── ui-sherman.jpg │ ├── ui-zac.jpg │ ├── weather.jpg │ └── zoom.png ├── js │ ├── allMail.js │ ├── bootstrap-datetimepicker.min.js │ ├── bootstrap-inputmask │ │ └── bootstrap-inputmask.min.js │ ├── bootstrap-table-export.min.js │ ├── bootstrap-table-reorder-rows.min.js │ ├── bootstrap-table-zh-CN.min.js │ ├── bootstrap-table.min.js │ ├── bootstrap-tagsinput.min.js │ ├── bootstrap.min.js │ ├── capsLock.js │ ├── cas.login.js │ ├── chart-master │ │ └── Chart.js │ ├── common-scripts.js │ ├── common.js │ ├── dataTables.bootstrap.min.js │ ├── editable │ │ ├── bootstrap-editable.js │ │ └── bootstrap-table-editable.min.js │ ├── fancybox │ │ ├── jquery.fancybox.css │ │ └── jquery.fancybox.js │ ├── file_input │ │ ├── fileinput.min.js │ │ └── zh.js │ ├── fullcalendar │ │ ├── bootstrap-fullcalendar.css │ │ └── fullcalendar.min.js │ ├── gritter │ │ ├── css │ │ │ ├── jquery.gritter.css │ │ │ └── jquery.gritter0.css │ │ ├── images │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ └── ie-spacer.gif │ │ └── js │ │ │ └── jquery.gritter.js │ ├── highlight.pack.js │ ├── jquery-1.5.1.min.js │ ├── jquery-confirm.min.js │ ├── jquery-easy-pie-chart │ │ ├── jquery.easy-pie-chart.css │ │ └── jquery.easy-pie-chart.js │ ├── jquery-easyui-1.4.1 │ │ ├── changelog.txt │ │ ├── demo │ │ │ ├── accordion │ │ │ │ ├── _content.html │ │ │ │ ├── actions.html │ │ │ │ ├── ajax.html │ │ │ │ ├── basic.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── expandable.html │ │ │ │ ├── fluid.html │ │ │ │ ├── multiple.html │ │ │ │ └── tools.html │ │ │ ├── calendar │ │ │ │ ├── basic.html │ │ │ │ ├── custom.html │ │ │ │ ├── disabledate.html │ │ │ │ ├── firstday.html │ │ │ │ └── fluid.html │ │ │ ├── combo │ │ │ │ ├── animation.html │ │ │ │ └── basic.html │ │ │ ├── combobox │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── combobox_data1.json │ │ │ │ ├── combobox_data2.json │ │ │ │ ├── customformat.html │ │ │ │ ├── dynamicdata.html │ │ │ │ ├── fluid.html │ │ │ │ ├── group.html │ │ │ │ ├── icons.html │ │ │ │ ├── multiline.html │ │ │ │ ├── multiple.html │ │ │ │ ├── navigation.html │ │ │ │ ├── remotedata.html │ │ │ │ └── remotejsonp.html │ │ │ ├── combogrid │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── fluid.html │ │ │ │ ├── initvalue.html │ │ │ │ ├── multiple.html │ │ │ │ └── navigation.html │ │ │ ├── combotree │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── initvalue.html │ │ │ │ ├── multiple.html │ │ │ │ └── tree_data1.json │ │ │ ├── datagrid │ │ │ │ ├── aligncolumns.html │ │ │ │ ├── basic.html │ │ │ │ ├── cacheeditor.html │ │ │ │ ├── cellediting.html │ │ │ │ ├── cellstyle.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── clientpagination.html │ │ │ │ ├── columngroup.html │ │ │ │ ├── complextoolbar.html │ │ │ │ ├── contextmenu.html │ │ │ │ ├── custompager.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── datagrid_data2.json │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── formatcolumns.html │ │ │ │ ├── frozencolumns.html │ │ │ │ ├── frozenrows.html │ │ │ │ ├── mergecells.html │ │ │ │ ├── multisorting.html │ │ │ │ ├── products.json │ │ │ │ ├── rowborder.html │ │ │ │ ├── rowediting.html │ │ │ │ ├── rowstyle.html │ │ │ │ ├── selection.html │ │ │ │ ├── simpletoolbar.html │ │ │ │ └── transform.html │ │ │ ├── datebox │ │ │ │ ├── basic.html │ │ │ │ ├── buttons.html │ │ │ │ ├── dateformat.html │ │ │ │ ├── events.html │ │ │ │ ├── fluid.html │ │ │ │ ├── restrict.html │ │ │ │ ├── sharedcalendar.html │ │ │ │ └── validate.html │ │ │ ├── datetimebox │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── initvalue.html │ │ │ │ └── showseconds.html │ │ │ ├── datetimespinner │ │ │ │ ├── basic.html │ │ │ │ ├── clearicon.html │ │ │ │ ├── fluid.html │ │ │ │ └── format.html │ │ │ ├── demo.css │ │ │ ├── dialog │ │ │ │ ├── basic.html │ │ │ │ ├── complextoolbar.html │ │ │ │ ├── fluid.html │ │ │ │ └── toolbarbuttons.html │ │ │ ├── draggable │ │ │ │ ├── basic.html │ │ │ │ ├── constrain.html │ │ │ │ └── snap.html │ │ │ ├── droppable │ │ │ │ ├── accept.html │ │ │ │ ├── basic.html │ │ │ │ └── sort.html │ │ │ ├── easyloader │ │ │ │ └── basic.html │ │ │ ├── filebox │ │ │ │ ├── basic.html │ │ │ │ ├── buttonalign.html │ │ │ │ └── fluid.html │ │ │ ├── form │ │ │ │ ├── basic.html │ │ │ │ ├── form_data1.json │ │ │ │ ├── load.html │ │ │ │ └── validateonsubmit.html │ │ │ ├── layout │ │ │ │ ├── _content.html │ │ │ │ ├── addremove.html │ │ │ │ ├── autoheight.html │ │ │ │ ├── basic.html │ │ │ │ ├── complex.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── fluid.html │ │ │ │ ├── full.html │ │ │ │ ├── nestedlayout.html │ │ │ │ ├── nocollapsible.html │ │ │ │ ├── propertygrid_data1.json │ │ │ │ └── tree_data1.json │ │ │ ├── linkbutton │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── group.html │ │ │ │ ├── iconalign.html │ │ │ │ ├── plain.html │ │ │ │ ├── size.html │ │ │ │ ├── style.html │ │ │ │ └── toggle.html │ │ │ ├── menu │ │ │ │ ├── basic.html │ │ │ │ ├── customitem.html │ │ │ │ └── events.html │ │ │ ├── menubutton │ │ │ │ ├── actions.html │ │ │ │ ├── alignment.html │ │ │ │ └── basic.html │ │ │ ├── messager │ │ │ │ ├── alert.html │ │ │ │ ├── basic.html │ │ │ │ ├── interactive.html │ │ │ │ └── position.html │ │ │ ├── numberbox │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── format.html │ │ │ │ └── range.html │ │ │ ├── numberspinner │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── increment.html │ │ │ │ └── range.html │ │ │ ├── pagination │ │ │ │ ├── attaching.html │ │ │ │ ├── basic.html │ │ │ │ ├── custombuttons.html │ │ │ │ ├── layout.html │ │ │ │ ├── links.html │ │ │ │ └── simple.html │ │ │ ├── panel │ │ │ │ ├── _content.html │ │ │ │ ├── basic.html │ │ │ │ ├── customtools.html │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── loadcontent.html │ │ │ │ ├── nestedpanel.html │ │ │ │ └── paneltools.html │ │ │ ├── progressbar │ │ │ │ ├── basic.html │ │ │ │ └── fluid.html │ │ │ ├── propertygrid │ │ │ │ ├── basic.html │ │ │ │ ├── customcolumns.html │ │ │ │ ├── groupformat.html │ │ │ │ └── propertygrid_data1.json │ │ │ ├── resizable │ │ │ │ └── basic.html │ │ │ ├── searchbox │ │ │ │ ├── basic.html │ │ │ │ ├── category.html │ │ │ │ └── fluid.html │ │ │ ├── slider │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── formattip.html │ │ │ │ ├── nonlinear.html │ │ │ │ ├── rule.html │ │ │ │ └── vertical.html │ │ │ ├── splitbutton │ │ │ │ ├── actions.html │ │ │ │ └── basic.html │ │ │ ├── tabs │ │ │ │ ├── _content.html │ │ │ │ ├── autoheight.html │ │ │ │ ├── basic.html │ │ │ │ ├── dropdown.html │ │ │ │ ├── fixedwidth.html │ │ │ │ ├── fluid.html │ │ │ │ ├── hover.html │ │ │ │ ├── images │ │ │ │ │ ├── modem.png │ │ │ │ │ ├── pda.png │ │ │ │ │ ├── scanner.png │ │ │ │ │ └── tablet.png │ │ │ │ ├── nestedtabs.html │ │ │ │ ├── striptools.html │ │ │ │ ├── tabimage.html │ │ │ │ ├── tabposition.html │ │ │ │ ├── tabstools.html │ │ │ │ └── tree_data1.json │ │ │ ├── textbox │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ ├── clearicon.html │ │ │ │ ├── custom.html │ │ │ │ ├── fluid.html │ │ │ │ ├── icons.html │ │ │ │ ├── multiline.html │ │ │ │ └── size.html │ │ │ ├── timespinner │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ └── range.html │ │ │ ├── tooltip │ │ │ │ ├── _content.html │ │ │ │ ├── _dialog.html │ │ │ │ ├── ajax.html │ │ │ │ ├── basic.html │ │ │ │ ├── customcontent.html │ │ │ │ ├── customstyle.html │ │ │ │ ├── position.html │ │ │ │ ├── toolbar.html │ │ │ │ └── tooltipdialog.html │ │ │ ├── tree │ │ │ │ ├── actions.html │ │ │ │ ├── animation.html │ │ │ │ ├── basic.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── contextmenu.html │ │ │ │ ├── dnd.html │ │ │ │ ├── editable.html │ │ │ │ ├── formatting.html │ │ │ │ ├── icons.html │ │ │ │ ├── lazyload.html │ │ │ │ ├── lines.html │ │ │ │ ├── tree_data1.json │ │ │ │ └── tree_data2.json │ │ │ ├── treegrid │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── clientpagination.html │ │ │ │ ├── contextmenu.html │ │ │ │ ├── editable.html │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── lines.html │ │ │ │ ├── reports.html │ │ │ │ ├── treegrid_data1.json │ │ │ │ ├── treegrid_data2.json │ │ │ │ └── treegrid_data3.json │ │ │ ├── validatebox │ │ │ │ ├── basic.html │ │ │ │ ├── customtooltip.html │ │ │ │ └── validateonblur.html │ │ │ └── window │ │ │ │ ├── basic.html │ │ │ │ ├── customtools.html │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── inlinewindow.html │ │ │ │ ├── modalwindow.html │ │ │ │ └── windowlayout.html │ │ ├── easyloader.js │ │ ├── jquery.easyui.min.js │ │ ├── jquery.min.js │ │ ├── licence_gpl.txt │ │ ├── locale │ │ │ ├── easyui-lang-af.js │ │ │ ├── easyui-lang-am.js │ │ │ ├── easyui-lang-ar.js │ │ │ ├── easyui-lang-bg.js │ │ │ ├── easyui-lang-ca.js │ │ │ ├── easyui-lang-cs.js │ │ │ ├── easyui-lang-cz.js │ │ │ ├── easyui-lang-da.js │ │ │ ├── easyui-lang-de.js │ │ │ ├── easyui-lang-el.js │ │ │ ├── easyui-lang-en.js │ │ │ ├── easyui-lang-es.js │ │ │ ├── easyui-lang-fr.js │ │ │ ├── easyui-lang-it.js │ │ │ ├── easyui-lang-jp.js │ │ │ ├── easyui-lang-nl.js │ │ │ ├── easyui-lang-pl.js │ │ │ ├── easyui-lang-pt_BR.js │ │ │ ├── easyui-lang-ru.js │ │ │ ├── easyui-lang-sv_SE.js │ │ │ ├── easyui-lang-tr.js │ │ │ ├── easyui-lang-zh_CN.js │ │ │ └── easyui-lang-zh_TW.js │ │ ├── plugins │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.combo.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.combogrid.js │ │ │ ├── jquery.combotree.js │ │ │ ├── jquery.datagrid.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.datetimebox.js │ │ │ ├── jquery.datetimespinner.js │ │ │ ├── jquery.dialog.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.filebox.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.layout.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.menubutton.js │ │ │ ├── jquery.messager.js │ │ │ ├── jquery.numberbox.js │ │ │ ├── jquery.numberspinner.js │ │ │ ├── jquery.pagination.js │ │ │ ├── jquery.panel.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.searchbox.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.spinner.js │ │ │ ├── jquery.splitbutton.js │ │ │ ├── jquery.tabs.js │ │ │ ├── jquery.textbox.js │ │ │ ├── jquery.timespinner.js │ │ │ ├── jquery.tooltip.js │ │ │ ├── jquery.tree.js │ │ │ ├── jquery.treegrid.js │ │ │ ├── jquery.validatebox.js │ │ │ └── jquery.window.js │ │ ├── readme.txt │ │ ├── src │ │ │ ├── easyloader.js │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.tabs.js │ │ │ └── jquery.window.js │ │ └── themes │ │ │ ├── black │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── bootstrap │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── color.css │ │ │ ├── default │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── gray │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── icon.css │ │ │ ├── icons │ │ │ ├── back.png │ │ │ ├── blank.gif │ │ │ ├── cancel.png │ │ │ ├── clear.png │ │ │ ├── cut.png │ │ │ ├── edit_add.png │ │ │ ├── edit_remove.png │ │ │ ├── filesave.png │ │ │ ├── filter.png │ │ │ ├── help.png │ │ │ ├── large_chart.png │ │ │ ├── large_clipart.png │ │ │ ├── large_picture.png │ │ │ ├── large_shapes.png │ │ │ ├── large_smartart.png │ │ │ ├── lock.png │ │ │ ├── man.png │ │ │ ├── mini_add.png │ │ │ ├── mini_edit.png │ │ │ ├── mini_refresh.png │ │ │ ├── no.png │ │ │ ├── ok.png │ │ │ ├── pencil.png │ │ │ ├── print.png │ │ │ ├── redo.png │ │ │ ├── reload.png │ │ │ ├── search.png │ │ │ ├── sum.png │ │ │ ├── tip.png │ │ │ └── undo.png │ │ │ └── metro │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ ├── accordion_arrows.png │ │ │ ├── blank.gif │ │ │ ├── calendar_arrows.png │ │ │ ├── combo_arrow.png │ │ │ ├── datagrid_icons.png │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── linkbutton_bg.png │ │ │ ├── loading.gif │ │ │ ├── menu_arrows.png │ │ │ ├── messager_icons.png │ │ │ ├── pagination_icons.png │ │ │ ├── panel_tools.png │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── spinner_arrows.png │ │ │ ├── tabs_icons.png │ │ │ ├── tree_icons.png │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ ├── jquery-ui-1.9.2.custom.min.js │ ├── jquery.alerts.js │ ├── jquery.cookie.js │ ├── jquery.dataTables.min.js │ ├── jquery.dcjqaccordion.2.7.js │ ├── jquery.form-validator.min.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.nicescroll.js │ ├── jquery.scrollTo.min.js │ ├── jquery.ui.touch-punch.min.js │ ├── kindeditor-4.1.10 │ │ ├── kindeditor-all-min.js │ │ ├── kindeditor-all.js │ │ ├── kindeditor-min.js │ │ ├── kindeditor.js │ │ ├── lang │ │ │ ├── ar.js │ │ │ ├── en.js │ │ │ ├── ko.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── anchor │ │ │ │ └── anchor.js │ │ │ ├── autoheight │ │ │ │ └── autoheight.js │ │ │ ├── baidumap │ │ │ │ ├── baidumap.js │ │ │ │ ├── index.html │ │ │ │ └── map.html │ │ │ ├── clearhtml │ │ │ │ └── clearhtml.js │ │ │ ├── code │ │ │ │ ├── code.js │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── emoticons │ │ │ │ ├── emoticons.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 100.gif │ │ │ │ │ ├── 101.gif │ │ │ │ │ ├── 102.gif │ │ │ │ │ ├── 103.gif │ │ │ │ │ ├── 104.gif │ │ │ │ │ ├── 105.gif │ │ │ │ │ ├── 106.gif │ │ │ │ │ ├── 107.gif │ │ │ │ │ ├── 108.gif │ │ │ │ │ ├── 109.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 110.gif │ │ │ │ │ ├── 111.gif │ │ │ │ │ ├── 112.gif │ │ │ │ │ ├── 113.gif │ │ │ │ │ ├── 114.gif │ │ │ │ │ ├── 115.gif │ │ │ │ │ ├── 116.gif │ │ │ │ │ ├── 117.gif │ │ │ │ │ ├── 118.gif │ │ │ │ │ ├── 119.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 120.gif │ │ │ │ │ ├── 121.gif │ │ │ │ │ ├── 122.gif │ │ │ │ │ ├── 123.gif │ │ │ │ │ ├── 124.gif │ │ │ │ │ ├── 125.gif │ │ │ │ │ ├── 126.gif │ │ │ │ │ ├── 127.gif │ │ │ │ │ ├── 128.gif │ │ │ │ │ ├── 129.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 130.gif │ │ │ │ │ ├── 131.gif │ │ │ │ │ ├── 132.gif │ │ │ │ │ ├── 133.gif │ │ │ │ │ ├── 134.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 72.gif │ │ │ │ │ ├── 73.gif │ │ │ │ │ ├── 74.gif │ │ │ │ │ ├── 75.gif │ │ │ │ │ ├── 76.gif │ │ │ │ │ ├── 77.gif │ │ │ │ │ ├── 78.gif │ │ │ │ │ ├── 79.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ ├── 80.gif │ │ │ │ │ ├── 81.gif │ │ │ │ │ ├── 82.gif │ │ │ │ │ ├── 83.gif │ │ │ │ │ ├── 84.gif │ │ │ │ │ ├── 85.gif │ │ │ │ │ ├── 86.gif │ │ │ │ │ ├── 87.gif │ │ │ │ │ ├── 88.gif │ │ │ │ │ ├── 89.gif │ │ │ │ │ ├── 9.gif │ │ │ │ │ ├── 90.gif │ │ │ │ │ ├── 91.gif │ │ │ │ │ ├── 92.gif │ │ │ │ │ ├── 93.gif │ │ │ │ │ ├── 94.gif │ │ │ │ │ ├── 95.gif │ │ │ │ │ ├── 96.gif │ │ │ │ │ ├── 97.gif │ │ │ │ │ ├── 98.gif │ │ │ │ │ ├── 99.gif │ │ │ │ │ └── static.gif │ │ │ ├── filemanager │ │ │ │ ├── filemanager.js │ │ │ │ └── images │ │ │ │ │ ├── file-16.gif │ │ │ │ │ ├── file-64.gif │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ └── go-up.gif │ │ │ ├── flash │ │ │ │ └── flash.js │ │ │ ├── image │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── align_left.gif │ │ │ │ │ ├── align_right.gif │ │ │ │ │ ├── align_top.gif │ │ │ │ │ └── refresh.png │ │ │ ├── insertfile │ │ │ │ └── insertfile.js │ │ │ ├── lineheight │ │ │ │ └── lineheight.js │ │ │ ├── link │ │ │ │ └── link.js │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── map.js │ │ │ ├── media │ │ │ │ └── media.js │ │ │ ├── multiimage │ │ │ │ ├── images │ │ │ │ │ ├── image.png │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ │ └── swfupload.swf │ │ │ │ └── multiimage.js │ │ │ ├── pagebreak │ │ │ │ └── pagebreak.js │ │ │ ├── plainpaste │ │ │ │ └── plainpaste.js │ │ │ ├── preview │ │ │ │ └── preview.js │ │ │ ├── quickformat │ │ │ │ └── quickformat.js │ │ │ ├── table │ │ │ │ └── table.js │ │ │ ├── template │ │ │ │ ├── html │ │ │ │ │ ├── 1.html │ │ │ │ │ ├── 2.html │ │ │ │ │ └── 3.html │ │ │ │ └── template.js │ │ │ └── wordpaste │ │ │ │ └── wordpaste.js │ │ └── themes │ │ │ ├── common │ │ │ ├── anchor.gif │ │ │ ├── blank.gif │ │ │ ├── flash.gif │ │ │ ├── loading.gif │ │ │ ├── media.gif │ │ │ └── rm.gif │ │ │ ├── default │ │ │ ├── background.png │ │ │ ├── default.css │ │ │ └── default.png │ │ │ ├── qq │ │ │ ├── editor.gif │ │ │ └── qq.css │ │ │ └── simple │ │ │ └── simple.css │ ├── metisMenu.min.js │ ├── moment │ │ ├── moment.min.js │ │ └── zh-cn.js │ ├── passport.common.js │ ├── png.js │ ├── reg.js │ ├── sb-admin-2.js │ ├── star-rating.js │ ├── star-rating.min.js │ └── tableExport.js └── lineicons │ ├── fonts │ ├── linecons.eot │ ├── linecons.svg │ ├── linecons.ttf │ └── linecons.woff │ ├── index.html │ ├── lte-ie7.js │ └── style.css ├── js ├── bootstrap-datetimepicker.js ├── bootstrap-datetimepicker.min.js ├── bootstrap-select.js ├── bootstrap-select.min.js ├── bootstrap.min.js ├── common.js ├── dataTables.bootstrap.min.js ├── jquery.dataTables.min.js ├── jquery.min.js ├── metisMenu.min.js ├── multiple-select.js └── sb-admin-2.js ├── spring-shiro.xml └── spring ├── applicationContext-dao.xml ├── applicationContext-service.xml ├── spring-shiro.xml └── springmvc.xml /.idea/artifacts/MovieManager_war.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | $PROJECT_DIR$/target 4 | 5 | 6 | MovieManager 7 | war 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | mysql 6 | true 7 | com.mysql.jdbc.Driver 8 | jdbc:mysql://localhost:3306 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/dictionaries/sss.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | shiro 5 | springmvc 6 | yyyy 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /.idea/sqldialects.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /out/artifacts/MovieManager_war_exploded/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Built-By: sss 3 | Created-By: IntelliJ IDEA 4 | Build-Jdk: 1.8 5 | 6 | -------------------------------------------------------------------------------- /src/main/java/com/javaedge/common/DateConverter.java: -------------------------------------------------------------------------------- 1 | package com.javaedge.common; 2 | 3 | import org.springframework.core.convert.converter.Converter; 4 | 5 | import java.text.ParseException; 6 | import java.text.SimpleDateFormat; 7 | import java.util.Date; 8 | 9 | /** 10 | * 日期转换器 11 | * 12 | * @author sss 13 | */ 14 | public class DateConverter implements Converter { 15 | @Override 16 | public Date convert(String source) { 17 | SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); 18 | dateFormat.setLenient(false); 19 | try { 20 | return dateFormat.parse(source); 21 | } catch (ParseException e) { 22 | e.printStackTrace(); 23 | } 24 | return null; 25 | } 26 | } -------------------------------------------------------------------------------- /src/main/java/com/javaedge/common/Page.java: -------------------------------------------------------------------------------- 1 | package com.javaedge.common; 2 | 3 | 4 | import java.util.List; 5 | 6 | public class Page { 7 | 8 | private int total; 9 | private int page; 10 | private int size; 11 | private List rows; 12 | public int getTotal() { 13 | return total; 14 | } 15 | public void setTotal(int total) { 16 | this.total = total; 17 | } 18 | public int getPage() { 19 | return page; 20 | } 21 | public void setPage(int page) { 22 | this.page = page; 23 | } 24 | public int getSize() { 25 | return size; 26 | } 27 | public void setSize(int size) { 28 | this.size = size; 29 | } 30 | public List getRows() { 31 | return rows; 32 | } 33 | public void setRows(List rows) { 34 | this.rows = rows; 35 | } 36 | } -------------------------------------------------------------------------------- /src/main/java/com/javaedge/mapper/RectabMapper.java: -------------------------------------------------------------------------------- 1 | package com.javaedge.mapper; 2 | 3 | import com.javaedge.po.Rectab; 4 | import com.javaedge.po.RectabExample; 5 | import java.util.List; 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | public interface RectabMapper { 9 | int countByExample(RectabExample example); 10 | 11 | int deleteByExample(RectabExample example); 12 | 13 | int insert(Rectab record); 14 | 15 | int insertSelective(Rectab record); 16 | 17 | List selectByExample(RectabExample example); 18 | 19 | int updateByExampleSelective(@Param("record") Rectab record, @Param("example") RectabExample example); 20 | 21 | int updateByExample(@Param("record") Rectab record, @Param("example") RectabExample example); 22 | } -------------------------------------------------------------------------------- /src/main/java/com/javaedge/po/Category.java: -------------------------------------------------------------------------------- 1 | package com.javaedge.po; 2 | 3 | public class Category { 4 | private Integer categoryid; 5 | 6 | private String category; 7 | 8 | public Integer getCategoryid() { 9 | return categoryid; 10 | } 11 | 12 | public void setCategoryid(Integer categoryid) { 13 | this.categoryid = categoryid; 14 | } 15 | 16 | public String getCategory() { 17 | return category; 18 | } 19 | 20 | public void setCategory(String category) { 21 | this.category = category == null ? null : category.trim(); 22 | } 23 | } -------------------------------------------------------------------------------- /src/main/java/com/javaedge/po/Moviecategory.java: -------------------------------------------------------------------------------- 1 | package com.javaedge.po; 2 | 3 | public class Moviecategory { 4 | private Integer movcatid; 5 | 6 | private Integer movieid; 7 | 8 | private Integer categoryid; 9 | 10 | public Integer getMovcatid() { 11 | return movcatid; 12 | } 13 | 14 | public void setMovcatid(Integer movcatid) { 15 | this.movcatid = movcatid; 16 | } 17 | 18 | public Integer getMovieid() { 19 | return movieid; 20 | } 21 | 22 | public void setMovieid(Integer movieid) { 23 | this.movieid = movieid; 24 | } 25 | 26 | public Integer getCategoryid() { 27 | return categoryid; 28 | } 29 | 30 | public void setCategoryid(Integer categoryid) { 31 | this.categoryid = categoryid; 32 | } 33 | } -------------------------------------------------------------------------------- /src/main/java/com/javaedge/po/Rectab.java: -------------------------------------------------------------------------------- 1 | package com.javaedge.po; 2 | 3 | public class Rectab { 4 | private Integer userid; 5 | 6 | private String movieids; 7 | 8 | public Integer getUserid() { 9 | return userid; 10 | } 11 | 12 | public void setUserid(Integer userid) { 13 | this.userid = userid; 14 | } 15 | 16 | public String getMovieids() { 17 | return movieids; 18 | } 19 | 20 | public void setMovieids(String movieids) { 21 | this.movieids = movieids == null ? null : movieids.trim(); 22 | } 23 | } -------------------------------------------------------------------------------- /src/main/java/com/javaedge/service/AdminService.java: -------------------------------------------------------------------------------- 1 | package com.javaedge.service; 2 | 3 | import com.javaedge.common.E3Result; 4 | import com.javaedge.common.Page; 5 | import com.javaedge.po.Admin; 6 | 7 | /** 8 | * Created by ZXL on 2018/3/2. 9 | */ 10 | public interface AdminService { 11 | E3Result adminLogin(String adminname, String adminpassword); 12 | // 管理员列表 13 | public Page findAdminList(Integer page, Integer rows, String username); 14 | // 删除用户 15 | public void deleteAdmin(Integer id); 16 | // 编辑管理员 17 | public Admin getAdminById(Integer id); 18 | // 更新管理员信息 19 | public void updateAdmin(Admin admin); 20 | // 添加管理员 21 | public void addAdmin(Admin admin); 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/javaedge/service/MovieService.java: -------------------------------------------------------------------------------- 1 | package com.javaedge.service; 2 | 3 | import com.javaedge.common.Page; 4 | import com.javaedge.po.Category; 5 | import com.javaedge.po.Movie; 6 | import com.javaedge.po.NewMovie; 7 | import com.javaedge.po.Query; 8 | 9 | import java.util.List; 10 | 11 | public interface MovieService { 12 | 13 | // 查询客户列表 14 | public Page findMovieList(Query query); 15 | 16 | public NewMovie getMovieById(Integer id); 17 | 18 | public void deleteMovie(Integer id); 19 | 20 | public List selectCategory(); 21 | 22 | public void updateMovie(Movie movie, String[] categoryIds); 23 | 24 | public void addMovie(Movie movie, String[] categoryIds); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/main/java/com/javaedge/service/UserService.java: -------------------------------------------------------------------------------- 1 | package com.javaedge.service; 2 | 3 | import com.javaedge.common.Page; 4 | import com.javaedge.po.User; 5 | 6 | /** 7 | * @author JavaEdge 8 | */ 9 | public interface UserService { 10 | 11 | /** 12 | * 查询用户列表 13 | * @param page 14 | * @param rows 15 | * @param username 16 | * @return 17 | */ 18 | Page findUserList(Integer page, Integer rows, String username); 19 | 20 | /** 21 | * 删除用户 22 | * @param id 23 | */ 24 | void deleteUser(Integer id); 25 | 26 | /** 27 | * 编辑用户 28 | * @param id 29 | * @return 30 | */ 31 | User getUserById(Integer id); 32 | 33 | /** 34 | * 更新用户信息 35 | * @param user 36 | */ 37 | void updateUser(User user); 38 | 39 | /** 40 | * 添加用户 41 | * @param user 42 | */ 43 | void addUser(User user); 44 | } 45 | -------------------------------------------------------------------------------- /src/main/resources/conf/client.conf: -------------------------------------------------------------------------------- 1 | //tracker_server=101.132.123.55:22122 -------------------------------------------------------------------------------- /src/main/resources/jdbc.properties: -------------------------------------------------------------------------------- 1 | jdbc.driver=com.mysql.jdbc.Driver 2 | jdbc.url=jdbc:mysql://localhost:3306/movie?characterEncoding=utf-8 3 | jdbc.username=root 4 | jdbc.password=root 5 | -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Global logging configuration 2 | log4j.rootLogger=INFO, stdout 3 | # Console output... 4 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 5 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 6 | log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n 7 | -------------------------------------------------------------------------------- /src/main/resources/mybatis/SqlMapConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/main/resources/resource.properties: -------------------------------------------------------------------------------- 1 | fromType.code=002 2 | #IMAGE_SERVER_URL=101.132.123.55:8888 -------------------------------------------------------------------------------- /src/main/webapp/assets/css/boot-crm.css: -------------------------------------------------------------------------------- 1 | .table th{ 2 | text-align: center; 3 | height:38px; 4 | } -------------------------------------------------------------------------------- /src/main/webapp/assets/css/bootstrap-table-reorder-rows.min.css: -------------------------------------------------------------------------------- 1 | .reorder_rows_onDragClass td{background-color:#eee;-webkit-box-shadow:11px 5px 12px 2px #333,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-webkit-box-shadow:6px 3px 5px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-moz-box-shadow:6px 4px 5px 1px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-box-shadow:6px 4px 5px 1px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset}.reorder_rows_onDragClass td:last-child{-webkit-box-shadow:8px 7px 12px 0 #333,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-webkit-box-shadow:1px 8px 6px -4px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-moz-box-shadow:0 9px 4px -4px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset,-1px 0 0 #ccc inset;-box-shadow:0 9px 4px -4px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset,-1px 0 0 #ccc inset} -------------------------------------------------------------------------------- /src/main/webapp/assets/css/jquery.alerts.css: -------------------------------------------------------------------------------- 1 | #popup_container { 2 | font-family: Arial, sans-serif; 3 | font-size: 12px; 4 | min-width: 300px; /* Dialog will be no smaller than this */ 5 | max-width: 600px; /* Dialog will wrap after this width */ 6 | background: #FFF; 7 | border:3px solid #E6E6E6; 8 | color: #000; 9 | -moz-border-radius: 5px; 10 | -webkit-border-radius: 5px; 11 | border-radius: 5px; 12 | } 13 | *html #popup_container{width:304px;} 14 | 15 | #popup_content { 16 | padding: 1em 1.75em; 17 | margin: 0em; 18 | } 19 | 20 | #popup_content.alert { 21 | } 22 | 23 | #popup_content.confirm { 24 | } 25 | 26 | #popup_content.prompt { 27 | } 28 | 29 | #popup_message { 30 | color: #6B6B6B; 31 | margin: 0; 32 | padding: 0; 33 | text-align:center 34 | } 35 | 36 | #popup_panel { 37 | text-align: center; 38 | margin: 1em 0em 0em 0em; 39 | } 40 | 41 | #popup_prompt { 42 | margin: .5em 0em; 43 | } 44 | 45 | -------------------------------------------------------------------------------- /src/main/webapp/assets/css/metisMenu.min.css: -------------------------------------------------------------------------------- 1 | /* 2 | * metismenu - v1.1.3 3 | * Easy menu jQuery plugin for Twitter Bootstrap 3 4 | * https://github.com/onokumus/metisMenu 5 | * 6 | * Made by Osman Nuri Okumus 7 | * Under MIT License 8 | */ 9 | 10 | .arrow{float:right;line-height:1.42857}.glyphicon.arrow:before{content:"\e079"}.active>a>.glyphicon.arrow:before{content:"\e114"}.fa.arrow:before{content:"\f104"}.active>a>.fa.arrow:before{content:"\f107"}.plus-times{float:right}.fa.plus-times:before{content:"\f067"}.active>a>.fa.plus-times{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.plus-minus{float:right}.fa.plus-minus:before{content:"\f067"}.active>a>.fa.plus-minus:before{content:"\f068"} -------------------------------------------------------------------------------- /src/main/webapp/assets/css/taotao.css: -------------------------------------------------------------------------------- 1 | ul{ 2 | list-style: none; 3 | } 4 | 5 | .hide{ 6 | display: none; 7 | } 8 | 9 | .itemParam ul{ 10 | padding-left: 0px; 11 | } 12 | .itemParam li{ 13 | line-height: 25px; 14 | } 15 | 16 | .itemForm .pics ul{ 17 | list-style: none; 18 | padding-left: 0px; 19 | } 20 | .itemForm .pics ul li{ 21 | float: left; 22 | padding-right: 5px; 23 | } 24 | .itemForm .group{ 25 | font-weight: bold; 26 | text-align: center; 27 | background-color: #EAEAEA; 28 | } 29 | .itemForm .param{ 30 | width: 80px; 31 | text-align: right; 32 | } -------------------------------------------------------------------------------- /src/main/webapp/assets/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/assets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/assets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/assets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/assets/img/blog-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/blog-bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/checkbox-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/checkbox-gray.png -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-01.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-02.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-03.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-04.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-05.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-06.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-07.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-08.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-09.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-10.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/friends/fr-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/friends/fr-11.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/instagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/instagram.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/login-bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/loginimg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/loginimg/1.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/loginimg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/loginimg/2.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/loginimg/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/loginimg/3.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/lorde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/lorde.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/mask.png -------------------------------------------------------------------------------- /src/main/webapp/assets/img/ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/ny.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/portfolio/port01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/portfolio/port01.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/portfolio/port02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/portfolio/port02.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/portfolio/port03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/portfolio/port03.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/portfolio/port04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/portfolio/port04.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/portfolio/port05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/portfolio/port05.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/portfolio/port06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/portfolio/port06.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/product.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/product.png -------------------------------------------------------------------------------- /src/main/webapp/assets/img/profile-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/profile-01.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/profile-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/profile-02.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/radio-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/radio-gray.png -------------------------------------------------------------------------------- /src/main/webapp/assets/img/ui-danro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/ui-danro.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/ui-divya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/ui-divya.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/ui-sam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/ui-sam.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/ui-sherman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/ui-sherman.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/ui-zac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/ui-zac.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/weather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/weather.jpg -------------------------------------------------------------------------------- /src/main/webapp/assets/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/img/zoom.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/bootstrap-table-zh-CN.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * bootstrap-table - v1.11.0 - 2016-07-02 3 | * https://github.com/wenzhixin/bootstrap-table 4 | * Copyright (c) 2016 zhixin wen 5 | * Licensed MIT License 6 | */ 7 | !function(a){"use strict";a.fn.bootstrapTable.locales["zh-CN"]={formatLoadingMessage:function(){return"正在努力地加载数据中,请稍候……"},formatRecordsPerPage:function(a){return"每页显示 "+a+" 条记录"},formatShowingRows:function(a,b,c){return"显示第 "+a+" 到第 "+b+" 条记录,总共 "+c+" 条记录"},formatSearch:function(){return"搜索"},formatNoMatches:function(){return"没有找到匹配的记录"},formatPaginationSwitch:function(){return"隐藏/显示分页"},formatRefresh:function(){return"刷新"},formatToggle:function(){return"切换"},formatColumns:function(){return"列"},formatExport:function(){return"导出数据"},formatClearFilters:function(){return"清空过滤"}},a.extend(a.fn.bootstrapTable.defaults,a.fn.bootstrapTable.locales["zh-CN"])}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/assets/js/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/gritter/images/gritter-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/gritter/images/gritter-long.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/gritter/images/gritter.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easy-pie-chart/jquery.easy-pie-chart.css: -------------------------------------------------------------------------------- 1 | .easyPieChart { 2 | position: relative; 3 | text-align: center; 4 | } 5 | 6 | .easyPieChart canvas { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | } 11 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/accordion/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/calendar/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Calendar - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic Calendar

14 |

Click to select date.

15 |
16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/combobox/combobox_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"Java", 4 | "desc":"Write once, run anywhere" 5 | },{ 6 | "id":2, 7 | "text":"C#", 8 | "desc":"One of the programming languages designed for the Common Language Infrastructure" 9 | },{ 10 | "id":3, 11 | "text":"Ruby", 12 | "selected":true, 13 | "desc":"A dynamic, reflective, general-purpose object-oriented programming language" 14 | },{ 15 | "id":4, 16 | "text":"Perl", 17 | "desc":"A high-level, general-purpose, interpreted, dynamic programming language" 18 | },{ 19 | "id":5, 20 | "text":"Basic", 21 | "desc":"A family of general-purpose, high-level programming languages" 22 | }] -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/combotree/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic ComboTree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic ComboTree

14 |

Click the right arrow button to show the tree panel.

15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/combotree/initvalue.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Initialize Value for ComboTree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Initialize Value for ComboTree

14 |

Initialize Value when ComboTree is created.

15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/combotree/tree_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"My Documents", 4 | "children":[{ 5 | "id":11, 6 | "text":"Photos", 7 | "state":"closed", 8 | "children":[{ 9 | "id":111, 10 | "text":"Friend" 11 | },{ 12 | "id":112, 13 | "text":"Wife" 14 | },{ 15 | "id":113, 16 | "text":"Company" 17 | }] 18 | },{ 19 | "id":12, 20 | "text":"Program Files", 21 | "children":[{ 22 | "id":121, 23 | "text":"Intel" 24 | },{ 25 | "id":122, 26 | "text":"Java", 27 | "attributes":{ 28 | "p1":"Custom Attribute1", 29 | "p2":"Custom Attribute2" 30 | } 31 | },{ 32 | "id":123, 33 | "text":"Microsoft Office" 34 | },{ 35 | "id":124, 36 | "text":"Games", 37 | "checked":true 38 | }] 39 | },{ 40 | "id":13, 41 | "text":"index.html" 42 | },{ 43 | "id":14, 44 | "text":"about.html" 45 | },{ 46 | "id":15, 47 | "text":"welcome.html" 48 | }] 49 | }] 50 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/datagrid/products.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"productid":"FI-SW-01","productname":"Koi"}, 3 | {"productid":"K9-DL-01","productname":"Dalmation"}, 4 | {"productid":"RP-SN-01","productname":"Rattlesnake"}, 5 | {"productid":"RP-LI-02","productname":"Iguana"}, 6 | {"productid":"FL-DSH-01","productname":"Manx"}, 7 | {"productid":"FL-DLH-02","productname":"Persian"}, 8 | {"productid":"AV-CB-01","productname":"Amazon Parrot"} 9 | ] 10 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/datebox/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic DateBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic DateBox

14 |

Click the calendar image on the right side.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/datebox/fluid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fluid DateBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Fluid DateBox

14 |

This example shows how to set the width of DateBox to a percentage of its parent container.

15 |
16 |

width: 50%

17 | 18 |

width: 30%

19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/datetimebox/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic DateTimeBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic DateTimeBox

14 |

Click the calendar image on the right side.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/datetimebox/fluid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fluid DateTimeBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Fluid DateTimeBox

14 |

This example shows how to set the width of DateTimeBox to a percentage of its parent container.

15 |
16 |

width: 50%

17 | 18 |

width: 30%

19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/datetimebox/initvalue.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Initialize Value for DateTime - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Initialize Value for DateTime

14 |

The value is initialized when DateTimeBox has been created.

15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/datetimespinner/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic DateTimeSpinner - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic DateTimeSpinner

14 |

Click spin button to adjust date and time.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/demo.css: -------------------------------------------------------------------------------- 1 | *{ 2 | font-size:12px; 3 | } 4 | body { 5 | font-family:verdana,helvetica,arial,sans-serif; 6 | padding:20px; 7 | font-size:12px; 8 | margin:0; 9 | } 10 | h2 { 11 | font-size:18px; 12 | font-weight:bold; 13 | margin:0; 14 | margin-bottom:15px; 15 | } 16 | .demo-info{ 17 | padding:0 0 12px 0; 18 | } 19 | .demo-tip{ 20 | display:none; 21 | } 22 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/filebox/fluid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fluid FileBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Fluid FileBox

14 |

This example shows how to set the width of FileBox to a percentage of its parent container.

15 |
16 |

width: 50%

17 | 18 |

width: 30%

19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/form/form_data1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"easyui", 3 | "email":"easyui@gmail.com", 4 | "subject":"Subject Title", 5 | "message":"Message Content", 6 | "language":"de" 7 | } -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/layout/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

jQuery EasyUI framework help you build your web page easily.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/layout/propertygrid_data1.json: -------------------------------------------------------------------------------- 1 | {"total":7,"rows":[ 2 | {"name":"Name","value":"Bill Smith","group":"ID Settings","editor":"text"}, 3 | {"name":"Address","value":"","group":"ID Settings","editor":"text"}, 4 | {"name":"Age","value":"40","group":"ID Settings","editor":"numberbox"}, 5 | {"name":"Birthday","value":"01/02/2012","group":"ID Settings","editor":"datebox"}, 6 | {"name":"SSN","value":"123-456-7890","group":"ID Settings","editor":"text"}, 7 | {"name":"Email","value":"bill@gmail.com","group":"Marketing Settings","editor":{ 8 | "type":"validatebox", 9 | "options":{ 10 | "validType":"email" 11 | } 12 | }}, 13 | {"name":"FrequentBuyer","value":"false","group":"Marketing Settings","editor":{ 14 | "type":"checkbox", 15 | "options":{ 16 | "on":true, 17 | "off":false 18 | } 19 | }} 20 | ]} -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/layout/tree_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"My Documents", 4 | "children":[{ 5 | "id":11, 6 | "text":"Photos", 7 | "state":"closed", 8 | "children":[{ 9 | "id":111, 10 | "text":"Friend" 11 | },{ 12 | "id":112, 13 | "text":"Wife" 14 | },{ 15 | "id":113, 16 | "text":"Company" 17 | }] 18 | },{ 19 | "id":12, 20 | "text":"Program Files", 21 | "children":[{ 22 | "id":121, 23 | "text":"Intel" 24 | },{ 25 | "id":122, 26 | "text":"Java", 27 | "attributes":{ 28 | "p1":"Custom Attribute1", 29 | "p2":"Custom Attribute2" 30 | } 31 | },{ 32 | "id":123, 33 | "text":"Microsoft Office" 34 | },{ 35 | "id":124, 36 | "text":"Games", 37 | "checked":true 38 | }] 39 | },{ 40 | "id":13, 41 | "text":"index.html" 42 | },{ 43 | "id":14, 44 | "text":"about.html" 45 | },{ 46 | "id":15, 47 | "text":"welcome.html" 48 | }] 49 | }] 50 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/numberspinner/increment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Increment Number - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Increment Number

14 |

The sample shows how to set the increment step.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/numberspinner/range.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Number Range - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Number Range

14 |

The value is constrained to a range between 10 and 100.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/pagination/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Pagination - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic Pagination

14 |

The user can change page number and page size on page bar.

15 |
16 |
17 |
18 |
19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/panel/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/panel/fluid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fluid Panel - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Fluid Panel

14 |

This example shows how to set the width of Panel to a percentage of its parent container.

15 |
16 |
17 |
18 |

The panel has a width of 100%.

19 |

20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/propertygrid/propertygrid_data1.json: -------------------------------------------------------------------------------- 1 | {"total":7,"rows":[ 2 | {"name":"Name","value":"Bill Smith","group":"ID Settings","editor":"text"}, 3 | {"name":"Address","value":"","group":"ID Settings","editor":"text"}, 4 | {"name":"Age","value":"40","group":"ID Settings","editor":"numberbox"}, 5 | {"name":"Birthday","value":"01/02/2012","group":"ID Settings","editor":"datebox"}, 6 | {"name":"SSN","value":"123-456-7890","group":"ID Settings","editor":"text"}, 7 | {"name":"Email","value":"bill@gmail.com","group":"Marketing Settings","editor":{ 8 | "type":"validatebox", 9 | "options":{ 10 | "validType":"email" 11 | } 12 | }}, 13 | {"name":"FrequentBuyer","value":"false","group":"Marketing Settings","editor":{ 14 | "type":"checkbox", 15 | "options":{ 16 | "on":true, 17 | "off":false 18 | } 19 | }} 20 | ]} -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/slider/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Slider - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic Slider

14 |

Drag the slider to change value.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/slider/rule.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Slider Rule - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Slider Rule

14 |

This sample shows how to define slider rule.

15 |
16 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/images/modem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/images/modem.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/images/pda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/images/pda.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/images/scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/images/scanner.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/images/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/images/tablet.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tabs/tree_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"My Documents", 4 | "children":[{ 5 | "id":11, 6 | "text":"Photos", 7 | "state":"closed", 8 | "children":[{ 9 | "id":111, 10 | "text":"Friend" 11 | },{ 12 | "id":112, 13 | "text":"Wife" 14 | },{ 15 | "id":113, 16 | "text":"Company" 17 | }] 18 | },{ 19 | "id":12, 20 | "text":"Program Files", 21 | "children":[{ 22 | "id":121, 23 | "text":"Intel" 24 | },{ 25 | "id":122, 26 | "text":"Java", 27 | "attributes":{ 28 | "p1":"Custom Attribute1", 29 | "p2":"Custom Attribute2" 30 | } 31 | },{ 32 | "id":123, 33 | "text":"Microsoft Office" 34 | },{ 35 | "id":124, 36 | "text":"Games", 37 | "checked":true 38 | }] 39 | },{ 40 | "id":13, 41 | "text":"index.html" 42 | },{ 43 | "id":14, 44 | "text":"about.html" 45 | },{ 46 | "id":15, 47 | "text":"welcome.html" 48 | }] 49 | }] 50 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/textbox/multiline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Multiline TextBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Multiline TextBox

14 |

This example shows how to define a textbox for the user to enter multi-line text input.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/timespinner/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic TimeSpinner - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic TimeSpinner

14 |

Click spin button to adjust time.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/timespinner/fluid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fluid TimeSpinner - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Fluid TimeSpinner

14 |

This example shows how to set the width of TimeSpinner to a percentage of its parent container.

15 |
16 |

width: 50%

17 | 18 |

width: 30%

19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/timespinner/range.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Time Range - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Time Range

14 |

The time value is constrained in specified range.

15 |
16 | From 08:30 to 18:00 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tooltip/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tooltip/_dialog.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Dialog Content 6 | 7 | 8 |
9 |
10 |
User Name:
11 | 12 |
13 |
14 |
Password:
15 | 16 |
17 |
18 | Login 19 | Cancel 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tooltip/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Tooltip - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic Tooltip

14 |

Hover the links to display tooltip message.

15 |
16 |

The tooltip can use each elements title attribute. 17 | Hover me to display tooltip. 18 |

19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tree/animation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Animation Tree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Animation Tree

14 |

Apply 'animate' property to true to enable animation effect.

15 |
16 |
17 |
    18 |
    19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tree/dnd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Drag Drop Tree Nodes - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

    Drag Drop Tree Nodes

    14 |

    Press mouse down and drag a node to another position.

    15 |
    16 |
    17 |
      18 |
      19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tree/icons.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tree Node Icons - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

      Tree Node Icons

      14 |

      This sample illustrates how to add icons to tree node.

      15 |
      16 |
      17 |
        18 |
        19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tree/lines.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tree Lines - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

        Tree Lines

        14 |

        This sample shows how to show tree lines.

        15 |
        16 |
        17 |
          18 |
          19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/tree/tree_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"My Documents", 4 | "children":[{ 5 | "id":11, 6 | "text":"Photos", 7 | "state":"closed", 8 | "children":[{ 9 | "id":111, 10 | "text":"Friend" 11 | },{ 12 | "id":112, 13 | "text":"Wife" 14 | },{ 15 | "id":113, 16 | "text":"Company" 17 | }] 18 | },{ 19 | "id":12, 20 | "text":"Program Files", 21 | "children":[{ 22 | "id":121, 23 | "text":"Intel" 24 | },{ 25 | "id":122, 26 | "text":"Java", 27 | "attributes":{ 28 | "p1":"Custom Attribute1", 29 | "p2":"Custom Attribute2" 30 | } 31 | },{ 32 | "id":123, 33 | "text":"Microsoft Office" 34 | },{ 35 | "id":124, 36 | "text":"Games", 37 | "checked":true 38 | }] 39 | },{ 40 | "id":13, 41 | "text":"index.html" 42 | },{ 43 | "id":14, 44 | "text":"about.html" 45 | },{ 46 | "id":15, 47 | "text":"welcome.html" 48 | }] 49 | }] 50 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/demo/treegrid/treegrid_data2.json: -------------------------------------------------------------------------------- 1 | {"total":7,"rows":[ 2 | {"id":1,"name":"All Tasks","begin":"3/4/2010","end":"3/20/2010","progress":60,"iconCls":"icon-ok"}, 3 | {"id":2,"name":"Designing","begin":"3/4/2010","end":"3/10/2010","progress":100,"_parentId":1,"state":"closed"}, 4 | {"id":21,"name":"Database","persons":2,"begin":"3/4/2010","end":"3/6/2010","progress":100,"_parentId":2}, 5 | {"id":22,"name":"UML","persons":1,"begin":"3/7/2010","end":"3/8/2010","progress":100,"_parentId":2}, 6 | {"id":23,"name":"Export Document","persons":1,"begin":"3/9/2010","end":"3/10/2010","progress":100,"_parentId":2}, 7 | {"id":3,"name":"Coding","persons":2,"begin":"3/11/2010","end":"3/18/2010","progress":80}, 8 | {"id":4,"name":"Testing","persons":1,"begin":"3/19/2010","end":"3/20/2010","progress":20} 9 | ],"footer":[ 10 | {"name":"Total Persons:","persons":7,"iconCls":"icon-sum"} 11 | ]} 12 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/readme.txt: -------------------------------------------------------------------------------- 1 | Current Version: 1.4.1 2 | ====================== 3 | This software is allowed to use under GPL or you need to buy commercial license for better support or other purpose. 4 | Please contact us at info@jeasyui.com 5 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #777; 19 | color: #fff; 20 | } 21 | .combobox-item-selected { 22 | background-color: #0052A3; 23 | color: #fff; 24 | } 25 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #555; 33 | } 34 | .datebox-button a { 35 | color: #fff; 36 | } 37 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #444; 11 | border-right: 1px solid #777; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #555; 24 | border-width: 1px; 25 | border-style: solid; 26 | } 27 | .dialog-toolbar { 28 | border-color: #000 #000 #222 #000; 29 | } 30 | .dialog-button { 31 | border-color: #222 #000 #000 #000; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/blank.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/numberbox.css: -------------------------------------------------------------------------------- 1 | .numberbox { 2 | border: 1px solid #000; 3 | margin: 0; 4 | padding: 0 2px; 5 | vertical-align: middle; 6 | } 7 | .textbox { 8 | padding: 0; 9 | } 10 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 5px 0 0 5px; 19 | -webkit-border-radius: 5px 0 0 5px; 20 | border-radius: 5px 0 0 5px; 21 | } 22 | .progressbar { 23 | border-color: #000; 24 | } 25 | .progressbar-text { 26 | color: #fff; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #0052A3; 31 | color: #fff; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #222; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #3d3d3d; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #222; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #3d3d3d; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #cccccc; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/black/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #e6e6e6; 19 | color: #00438a; 20 | } 21 | .combobox-item-selected { 22 | background-color: #0081c2; 23 | color: #fff; 24 | } 25 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #F5F5F5; 33 | } 34 | .datebox-button a { 35 | color: #444; 36 | } 37 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ccc; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #F5F5F5; 24 | border-width: 1px; 25 | border-style: solid; 26 | } 27 | .dialog-toolbar { 28 | border-color: #D4D4D4 #D4D4D4 #e6e6e6 #D4D4D4; 29 | } 30 | .dialog-button { 31 | border-color: #e6e6e6 #D4D4D4 #D4D4D4 #D4D4D4; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/blank.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/numberbox.css: -------------------------------------------------------------------------------- 1 | .numberbox { 2 | border: 1px solid #D4D4D4; 3 | margin: 0; 4 | padding: 0 2px; 5 | vertical-align: middle; 6 | } 7 | .textbox { 8 | padding: 0; 9 | } 10 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 5px 0 0 5px; 19 | -webkit-border-radius: 5px 0 0 5px; 20 | border-radius: 5px 0 0 5px; 21 | } 22 | .progressbar { 23 | border-color: #D4D4D4; 24 | } 25 | .progressbar-text { 26 | color: #333; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #0081c2; 31 | color: #fff; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #e6e6e6; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #F2F2F2; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #e6e6e6; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #F2F2F2; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #bbb; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/bootstrap/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #eaf2ff; 19 | color: #000000; 20 | } 21 | .combobox-item-selected { 22 | background-color: #ffe48d; 23 | color: #000000; 24 | } 25 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #F4F4F4; 33 | } 34 | .datebox-button a { 35 | color: #444; 36 | } 37 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ccc; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #F4F4F4; 24 | border-width: 1px; 25 | border-style: solid; 26 | } 27 | .dialog-toolbar { 28 | border-color: #95B8E7 #95B8E7 #dddddd #95B8E7; 29 | } 30 | .dialog-button { 31 | border-color: #dddddd #95B8E7 #95B8E7 #95B8E7; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/blank.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/numberbox.css: -------------------------------------------------------------------------------- 1 | .numberbox { 2 | border: 1px solid #95B8E7; 3 | margin: 0; 4 | padding: 0 2px; 5 | vertical-align: middle; 6 | } 7 | .textbox { 8 | padding: 0; 9 | } 10 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 5px 0 0 5px; 19 | -webkit-border-radius: 5px 0 0 5px; 20 | border-radius: 5px 0 0 5px; 21 | } 22 | .progressbar { 23 | border-color: #95B8E7; 24 | } 25 | .progressbar-text { 26 | color: #000000; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #ffe48d; 31 | color: #000000; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #dddddd; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #E0ECFF; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #dddddd; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #E0ECFF; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #aac5e7; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/default/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #e2e2e2; 19 | color: #000000; 20 | } 21 | .combobox-item-selected { 22 | background-color: #0092DC; 23 | color: #fff; 24 | } 25 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #fafafa; 33 | } 34 | .datebox-button a { 35 | color: #444; 36 | } 37 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ccc; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #fafafa; 24 | border-width: 1px; 25 | border-style: solid; 26 | } 27 | .dialog-toolbar { 28 | border-color: #D3D3D3 #D3D3D3 #ddd #D3D3D3; 29 | } 30 | .dialog-button { 31 | border-color: #ddd #D3D3D3 #D3D3D3 #D3D3D3; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/blank.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/numberbox.css: -------------------------------------------------------------------------------- 1 | .numberbox { 2 | border: 1px solid #D3D3D3; 3 | margin: 0; 4 | padding: 0 2px; 5 | vertical-align: middle; 6 | } 7 | .textbox { 8 | padding: 0; 9 | } 10 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 5px 0 0 5px; 19 | -webkit-border-radius: 5px 0 0 5px; 20 | border-radius: 5px 0 0 5px; 21 | } 22 | .progressbar { 23 | border-color: #D3D3D3; 24 | } 25 | .progressbar-text { 26 | color: #000000; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #0092DC; 31 | color: #fff; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #ddd; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #f3f3f3; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #ddd; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #f3f3f3; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #bfbfbf; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/gray/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/back.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/blank.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/cancel.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/clear.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/cut.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/edit_add.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/edit_remove.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/filesave.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/filter.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/help.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_chart.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_clipart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_clipart.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_picture.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_shapes.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_smartart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/large_smartart.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/lock.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/man.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/mini_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/mini_add.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/mini_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/mini_edit.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/mini_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/mini_refresh.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/no.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/ok.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/pencil.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/print.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/redo.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/reload.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/search.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/sum.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/tip.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/icons/undo.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #E6E6E6; 19 | color: #444; 20 | } 21 | .combobox-item-selected { 22 | background-color: #CCE6FF; 23 | color: #000; 24 | } 25 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #fff; 33 | } 34 | .datebox-button a { 35 | color: #777; 36 | } 37 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ddd; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #fff; 24 | border-width: 1px; 25 | border-style: solid; 26 | } 27 | .dialog-toolbar { 28 | border-color: #ddd #ddd #ddd #ddd; 29 | } 30 | .dialog-button { 31 | border-color: #ddd #ddd #ddd #ddd; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/filebox.css: -------------------------------------------------------------------------------- 1 | .filebox .textbox-value { 2 | vertical-align: top; 3 | position: absolute; 4 | top: 0; 5 | left: -5000px; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/blank.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/numberbox.css: -------------------------------------------------------------------------------- 1 | .numberbox { 2 | border: 1px solid #ddd; 3 | margin: 0; 4 | padding: 0 2px; 5 | vertical-align: middle; 6 | } 7 | .textbox { 8 | padding: 0; 9 | } 10 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 0px 0px 0px 0px; 5 | -webkit-border-radius: 0px 0px 0px 0px; 6 | border-radius: 0px 0px 0px 0px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 0px 0 0 0px; 19 | -webkit-border-radius: 0px 0 0 0px; 20 | border-radius: 0px 0 0 0px; 21 | } 22 | .progressbar { 23 | border-color: #ddd; 24 | } 25 | .progressbar-text { 26 | color: #444; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #CCE6FF; 31 | color: #000; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #ddd; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #ffffff; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #ddd; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #ffffff; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn:hover .m-btn-line, 2 | .s-btn-active .m-btn-line, 3 | .s-btn-plain-active .m-btn-line { 4 | display: inline-block; 5 | } 6 | .l-btn:hover .s-btn-downarrow, 7 | .s-btn-active .s-btn-downarrow, 8 | .s-btn-plain-active .s-btn-downarrow { 9 | border-style: solid; 10 | border-color: #b3b3b3; 11 | border-width: 0 0 0 1px; 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/jquery-easyui-1.4.1/themes/metro/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | border-color: #ffa8a8; 3 | background-color: #fff3f3; 4 | color: #000; 5 | } 6 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/multiimage/images/select-files-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/multiimage/images/select-files-zh_CN.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

          8 | 在此处输入标题 9 |

          10 |

          11 | 在此处输入内容 12 |

          13 | 14 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/template/html/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

          8 | 标题 9 |

          10 | 11 | 12 | 13 | 16 | 19 | 20 | 21 | 24 | 27 | 28 | 29 | 32 | 35 | 36 | 37 |
          14 |

          标题1

          15 |
          17 |

          标题1

          18 |
          22 | 内容1 23 | 25 | 内容2 26 |
          30 | 内容3 31 | 33 | 内容4 34 |
          38 |

          39 | 表格说明 40 |

          41 | 42 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

          8 | 在此处输入内容 9 |

          10 |
            11 |
          1. 12 | 描述1 13 |
          2. 14 |
          3. 15 | 描述2 16 |
          4. 17 |
          5. 18 | 描述3 19 |
          6. 20 |
          21 |

          22 | 在此处输入内容 23 |

          24 |
            25 |
          • 26 | 描述1 27 |
          • 28 |
          • 29 | 描述2 30 |
          • 31 |
          • 32 | 描述3 33 |
          • 34 |
          35 | 36 | -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/anchor.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/blank.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/flash.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/media.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/themes/common/rm.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/themes/default/background.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/themes/default/default.png -------------------------------------------------------------------------------- /src/main/webapp/assets/js/kindeditor-4.1.10/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/js/kindeditor-4.1.10/themes/qq/editor.gif -------------------------------------------------------------------------------- /src/main/webapp/assets/lineicons/fonts/linecons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/lineicons/fonts/linecons.eot -------------------------------------------------------------------------------- /src/main/webapp/assets/lineicons/fonts/linecons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/lineicons/fonts/linecons.ttf -------------------------------------------------------------------------------- /src/main/webapp/assets/lineicons/fonts/linecons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Edge/MovieRecommandation-MovieManager/07d59236e820d7e0200745726d2d28648ae5c970/src/main/webapp/assets/lineicons/fonts/linecons.woff --------------------------------------------------------------------------------