├── .gitattributes ├── LICENSE ├── README.md ├── img ├── alarm.png ├── cluster.png ├── index_manage.png ├── query.png ├── rest.png └── stat1.png ├── pom.xml ├── script └── create_quart_table.sql └── src └── main ├── filters ├── development.properties ├── preProduct.properties ├── product.properties └── test.properties ├── java └── com │ └── ucar │ └── eser │ ├── admin │ ├── controller │ │ ├── alarm │ │ │ └── AlarmRuleManagerController.java │ │ ├── clustermanager │ │ │ └── ClusterInfoController.java │ │ ├── datasource │ │ │ └── DataSourceController.java │ │ ├── index │ │ │ ├── IndexController.java │ │ │ └── LoginController.java │ │ ├── sechedule │ │ │ ├── QuartzManageController.java │ │ │ ├── alarm │ │ │ │ ├── AbstractAlarm.java │ │ │ │ ├── ClusterNodeAlarm.java │ │ │ │ └── HealthAlarm.java │ │ │ ├── collecthandler │ │ │ │ ├── CollectionCommonStatHandler.java │ │ │ │ ├── CollectionFsStatHandler.java │ │ │ │ ├── CollectionHttpStatHandler.java │ │ │ │ ├── CollectionIndicesStatHandler.java │ │ │ │ ├── CollectionJVMStatHandler.java │ │ │ │ ├── CollectionOsStatHandler.java │ │ │ │ ├── CollectionThreadPoolStatHandler.java │ │ │ │ └── CollectionTransportStatHandler.java │ │ │ └── job │ │ │ │ ├── ClusterStatJob.java │ │ │ │ └── JobKey.java │ │ ├── token │ │ │ └── CustomTokenController.java │ │ └── usermanager │ │ │ └── UserManagerController.java │ ├── dao │ │ ├── alarm │ │ │ ├── AlarmRuleDao.java │ │ │ └── impl │ │ │ │ └── AlarmRuleDaoImpl.java │ │ ├── clusterManager │ │ │ ├── ClusterInfoDao.java │ │ │ └── impl │ │ │ │ └── ClusterInfoDaoImpl.java │ │ ├── datasource │ │ │ ├── DataSourceDao.java │ │ │ └── impl │ │ │ │ └── DataSourceDaoImpl.java │ │ ├── influxdbandmysql │ │ │ ├── CommonDao.java │ │ │ ├── FsStatDao.java │ │ │ ├── HttpStatDao.java │ │ │ ├── IndiceDao.java │ │ │ ├── JvmDao.java │ │ │ ├── OsStatDao.java │ │ │ ├── ThreadPoolDao.java │ │ │ ├── TransportStatDao.java │ │ │ └── impl │ │ │ │ ├── CommonDaoImpl.java │ │ │ │ ├── FsStatDaoImpl.java │ │ │ │ ├── HttpStatDaoImpl.java │ │ │ │ ├── IndiceDaoImpl.java │ │ │ │ ├── JvmDaoImpl.java │ │ │ │ ├── OsStatDaoImpl.java │ │ │ │ ├── ThreadPoolDaoImpl.java │ │ │ │ └── TransportStatDaoImpl.java │ │ ├── schedule │ │ │ ├── QuartzDao.java │ │ │ └── impl │ │ │ │ └── QuartzDaoImpl.java │ │ ├── token │ │ │ ├── TokenInfoDao.java │ │ │ └── impl │ │ │ │ └── TokenInfoDaoImpl.java │ │ └── user │ │ │ ├── UserInfoDao.java │ │ │ └── impl │ │ │ └── UserInfoDaoImpl.java │ └── service │ │ ├── alarm │ │ ├── AlarmRuleService.java │ │ └── impl │ │ │ └── AlarmRuleServiceImpl.java │ │ ├── clusterManager │ │ ├── ClusterInfoService.java │ │ └── impl │ │ │ └── ClusterInfoServiceImpl.java │ │ ├── datasource │ │ ├── DataSourceService.java │ │ └── impl │ │ │ └── DataSourceServiceImpl.java │ │ ├── influxdbandmysql │ │ ├── CommonService.java │ │ ├── FsStatService.java │ │ ├── HttpStatService.java │ │ ├── IndiceService.java │ │ ├── JvmService.java │ │ ├── OsStatService.java │ │ ├── ThreadPoolService.java │ │ ├── TransportStatService.java │ │ └── impl │ │ │ ├── CommonServiceImpl.java │ │ │ ├── FsStatServiceImpl.java │ │ │ ├── HttpStatServiceImpl.java │ │ │ ├── IndiceServiceImpl.java │ │ │ ├── JvmServiceImpl.java │ │ │ ├── OsStatServiceImpl.java │ │ │ ├── ThreadPoolServiceImpl.java │ │ │ └── TransportStatServiceImpl.java │ │ ├── schedule │ │ ├── EsBaseCenterJob.java │ │ ├── SchedulerCenter.java │ │ ├── TriggerCenter.java │ │ └── impl │ │ │ ├── SchedulerCenterImpl.java │ │ │ └── TriggerCenterImpl.java │ │ ├── token │ │ ├── TokenInfoService.java │ │ └── impl │ │ │ └── TokenInfoServiceImpl.java │ │ └── user │ │ ├── UserInfoService.java │ │ └── impl │ │ └── UserInfoServiceImpl.java │ ├── core │ ├── bean │ │ ├── MachineProtocol.java │ │ ├── User.java │ │ ├── po │ │ │ ├── ClusterInfo.java │ │ │ ├── CustomUser.java │ │ │ ├── DataSourceInfo.java │ │ │ ├── DataSourceMapping.java │ │ │ ├── Pager.java │ │ │ ├── QueryClientCollection.java │ │ │ ├── QueryCollectionInfo.java │ │ │ ├── QueryCollectionSubInfo.java │ │ │ ├── SlowLogInfo.java │ │ │ ├── SlowLogStat.java │ │ │ ├── TriggerInfo.java │ │ │ ├── UserInfo.java │ │ │ └── UserLog.java │ │ └── vo │ │ │ ├── alarm │ │ │ ├── AlarmInfo.java │ │ │ ├── AlarmParameterVo.java │ │ │ ├── AlarmResult.java │ │ │ └── AlarmRule.java │ │ │ ├── datasource │ │ │ └── TableColAndTyInfo.java │ │ │ ├── formbean │ │ │ └── SlowLogFormBean.java │ │ │ ├── query │ │ │ ├── ClientLog.java │ │ │ ├── CondsVo.java │ │ │ └── QueryVo.java │ │ │ ├── stat │ │ │ ├── ClusterHealthVo.java │ │ │ ├── CommandStatInfo.java │ │ │ ├── DeleteStatDataVo.java │ │ │ ├── EsClientLogInfo.java │ │ │ ├── NodeCommandStatInfo.java │ │ │ ├── NodeCommonStatInfo.java │ │ │ ├── NodeFsStatInfo.java │ │ │ ├── NodeHttpStatInfo.java │ │ │ ├── NodeIndiceStatInfo.java │ │ │ ├── NodeJVMStatInfo.java │ │ │ ├── NodeOSStatInfo.java │ │ │ ├── NodeSlowLogStatInfo.java │ │ │ ├── NodeThreadPoolStatInfo.java │ │ │ └── NodeTransportStatInfo.java │ │ │ └── token │ │ │ └── TokenInfo.java │ ├── filter │ │ ├── GetHttpServletRequestWrapper.java │ │ └── LocalFilter.java │ ├── ibatis │ │ ├── EserIbatisDaoImpl.java │ │ ├── IbatisDao.java │ │ └── IbatisDaoImpl.java │ ├── init │ │ └── SpringInit.java │ ├── interceptor │ │ └── UserInterceptor.java │ ├── jest │ │ ├── JestManager.java │ │ ├── common │ │ │ ├── AbstractLocalHttpAction.java │ │ │ ├── EsCloudVoEnum.java │ │ │ ├── EsVoEnum.java │ │ │ ├── JestLocalHttpClient.java │ │ │ ├── LocalResultAbstractAction.java │ │ │ └── Match.java │ │ ├── result │ │ │ ├── ParseHandler.java │ │ │ └── impl │ │ │ │ ├── BulkParseHandler.java │ │ │ │ ├── CreateAndAllUpdateParseHandler.java │ │ │ │ ├── DefaultParseHandler.java │ │ │ │ ├── DeleteParseHandler.java │ │ │ │ ├── PartUpdateParseHandler.java │ │ │ │ ├── RetainDetailParseHandler.java │ │ │ │ ├── SearchAliasParseHandler.java │ │ │ │ └── SingleSearchParseHandler.java │ │ ├── service │ │ │ ├── JestService.java │ │ │ └── impl │ │ │ │ └── JestServiceImpl.java │ │ └── vo │ │ │ ├── AliasInfo.java │ │ │ ├── BatchContentVo.java │ │ │ ├── BatchDocVo.java │ │ │ ├── BulkResultItem.java │ │ │ ├── BulkResultVo.java │ │ │ ├── Cluster.java │ │ │ ├── ClusterVo.java │ │ │ ├── CrdResultDetailVo.java │ │ │ ├── EsClusterDetail.java │ │ │ ├── EsConfigDetailVo.java │ │ │ ├── EsSynDetailVo.java │ │ │ ├── RequestVO.java │ │ │ ├── SearchAliasReslut.java │ │ │ ├── SearchResultDetailVO.java │ │ │ ├── SearchResultVo.java │ │ │ ├── VoItf.java │ │ │ └── dsl │ │ │ ├── FieldNode.java │ │ │ ├── KeyNode.java │ │ │ ├── Node.java │ │ │ ├── QueryContext.java │ │ │ ├── RangeNode.java │ │ │ └── SearchContext.java │ └── util │ │ ├── BalanceUtil.java │ │ ├── CallTimesLimitor.java │ │ ├── ClusterUtil.java │ │ ├── ConfigUtil.java │ │ ├── DateUtil.java │ │ ├── DateUtils.java │ │ ├── EncryptUtil.java │ │ ├── InflusDbUtil.java │ │ ├── IntegerUtil.java │ │ ├── JsonUtil.java │ │ ├── LocalUtil.java │ │ ├── ReflectUtil.java │ │ ├── RequestContext.java │ │ ├── RequestContextUtil.java │ │ ├── SSHUtil.java │ │ ├── ScheduleUtil.java │ │ ├── SqlParseUtil.java │ │ ├── StringUtils.java │ │ ├── async │ │ ├── AsyncService.java │ │ ├── AsyncServiceImpl.java │ │ ├── KeyCallable.java │ │ └── NamedThreadFactory.java │ │ ├── common │ │ ├── AlarmConstant.java │ │ ├── AuthorityManager.java │ │ ├── Constant.java │ │ └── RequestMap.java │ │ ├── exception │ │ ├── BusinessRuntimeException.java │ │ ├── ElasticAuthException.java │ │ ├── ElasticSearchException.java │ │ ├── FrameworkRuntimeException.java │ │ ├── IllegalParamException.java │ │ └── SSHException.java │ │ ├── http │ │ ├── DefaultHttpClient.java │ │ ├── HttpClientUtils.java │ │ └── SimpleHttpClient.java │ │ └── message │ │ ├── MailAuthenticator.java │ │ ├── MailClient.java │ │ ├── MailInfo.java │ │ └── MailSender.java │ └── front │ ├── controller │ ├── alias │ │ └── AliasManagerController.java │ ├── bigdesk │ │ └── BigDeskController.java │ ├── bookmarks │ │ ├── QueryClientCollectionController.java │ │ └── QueryCollectionController.java │ ├── index │ │ └── EsProxyServerController.java │ ├── indexmsg │ │ ├── DatabaseUtil.java │ │ └── IndexMsgController.java │ ├── monitor │ │ └── MonitorController.java │ ├── query │ │ └── QueryDocController.java │ ├── restclient │ │ └── RestClientController.java │ └── stats │ │ └── StatsController.java │ ├── dao │ ├── bookmarks │ │ ├── QuerCollectDao.java │ │ ├── QueryClientCollectionDao.java │ │ └── impl │ │ │ ├── QuerCollectDaoImpl.java │ │ │ └── QueryClientCollectionDaoImpl.java │ └── monitor │ │ ├── MonitorDao.java │ │ └── impl │ │ └── MonitorDaoImpl.java │ └── service │ ├── bookmarks │ ├── QuerCollectionService.java │ ├── QueryClientCollectionService.java │ └── impl │ │ ├── QuerCollectionServiceImpl.java │ │ └── QueryClientCollectionImpl.java │ ├── export │ ├── ExportOrDeleteDocService.java │ └── impl │ │ └── ExportOrDeleteDocServiceImpl.java │ ├── monitor │ ├── MonitorService.java │ └── impl │ │ └── MonitorServiceImpl.java │ └── query │ ├── QueryPageService.java │ └── impl │ └── QueryPageServiceImpl.java ├── resources ├── com │ └── ucar │ │ └── eser │ │ ├── spring │ │ ├── applicationContext.xml │ │ ├── dataAccessContext-ibatis-IS.xml │ │ ├── ibatis_common.xml │ │ ├── spring-quartz.xml │ │ └── sqlMapConfig.xml │ │ └── sql │ │ ├── alarm │ │ └── t_alarm_rule_sql.xml │ │ ├── bookmarks │ │ ├── t_query_client_coll_sql.xml │ │ └── t_query_coll_sql.xml │ │ ├── clusterManager │ │ └── t_cluster_info_sql.xml │ │ ├── datasource │ │ └── t_data_source_info_sql.xml │ │ ├── influxdbandmysql │ │ ├── t_es_common_log_sql.xml │ │ ├── t_es_fs_log_sql.xml │ │ ├── t_es_http_log_sql.xml │ │ ├── t_es_indices_log_sql.xml │ │ ├── t_es_jvm_log_sql.xml │ │ ├── t_es_os_log_sql.xml │ │ ├── t_es_thread_pool_log_sql.xml │ │ └── t_es_transport_log_sql.xml │ │ ├── monitor │ │ └── t_es_monitor_sql.xml │ │ ├── sechedule │ │ └── t_quartz_sql.xml │ │ ├── stat │ │ ├── t_delete_stat_sql.xml │ │ ├── t_node_command_stat_sql.xml │ │ ├── t_node_jvm_stat_sql.xml │ │ ├── t_node_os_stat_sql.xml │ │ └── t_node_thread_pool_stat_sql.xml │ │ ├── token │ │ └── token_sql.xml │ │ └── user │ │ └── t_user_info_sql.xml ├── config.properties ├── influxdb.properties ├── log4j.properties └── mail.properties └── webapp ├── WEB-INF ├── car-servlet.xml ├── web.xml ├── wro.properties └── wro.xml ├── build ├── css │ ├── kopf.css │ └── thirdparty.css └── js │ ├── kopf.js │ └── thirdparty.js ├── favicon.ico ├── favicon.png ├── healthCheck.jsp ├── index.jsp ├── js ├── alarm │ └── alarmRuleList.js ├── clusterInfo │ └── clusterInfoList.js ├── datasourceInfo │ └── dataSourceInfoList.js ├── token │ └── tokenInfo.js └── user │ └── userInfoList.js ├── jsp ├── alarm │ ├── alarmRule.jsp │ └── alarmRuleList.jsp ├── clusterInfo │ ├── clusterInfo.jsp │ ├── clusterInfoList.jsp │ └── clusters4front.jsp ├── common │ └── taglibs.jsp ├── customtoken │ └── token.jsp ├── datasourceInfo │ ├── dataSourceInfo.jsp │ └── dataSourceInfoList.jsp ├── index │ ├── bigdesk.jsp │ ├── blank.jsp │ ├── datatable.jsp │ ├── foot.jsp │ ├── frontIndex.jsp │ ├── gallery.jsp │ ├── header.jsp │ ├── include.jsp │ ├── index.jsp │ ├── jqGrid.jsp │ ├── main.jsp │ └── sidebar.jsp ├── quartz │ └── quartzList.jsp ├── setting │ └── setList.jsp ├── token │ ├── tokenInfo.jsp │ └── tokenInfoList.jsp ├── user │ ├── userInfo.jsp │ └── userInfoList.jsp └── userlog │ └── userLogList.jsp ├── login.jsp ├── noAuthority.jsp ├── noRegister.jsp ├── pageFrame ├── css │ ├── ace-ie.min.css │ ├── ace-part2.min.css │ ├── ace-rtl.min.css │ ├── ace-skins.min.css │ ├── ace.min.css │ ├── bootstrap-colorpicker.min.css │ ├── bootstrap-datepicker3.min.css │ ├── bootstrap-datetimepicker.min.css │ ├── bootstrap-duallistbox.min.css │ ├── bootstrap-editable.min.css │ ├── bootstrap-multiselect.min.css │ ├── bootstrap-timepicker.min.css │ ├── bootstrap.min.css │ ├── chosen-sprite.png │ ├── chosen.min.css │ ├── colorbox.min.css │ ├── daterangepicker.min.css │ ├── dropzone.min.css │ ├── font-awesome.min.css │ ├── fonts.googleapis.com.css │ ├── fullcalendar.min.css │ ├── jquery-ui.custom.min.css │ ├── jquery-ui.min.css │ ├── jquery.gritter.min.css │ ├── prettify.min.css │ ├── select2.min.css │ └── ui.jqgrid.min.css ├── font-awesome │ └── 4.5.0 │ │ ├── css │ │ └── font-awesome.min.css │ │ └── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── avatars │ │ ├── avatar.png │ │ ├── avatar1.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar4.png │ │ ├── avatar5.png │ │ ├── profile-pic.jpg │ │ └── user.jpg │ ├── email │ │ ├── email1.png │ │ ├── email2.png │ │ ├── email3.png │ │ └── email4.png │ ├── gallery │ │ ├── thumb-1.jpg │ │ ├── thumb-2.jpg │ │ ├── thumb-3.jpg │ │ ├── thumb-4.jpg │ │ ├── thumb-5.jpg │ │ └── thumb-6.jpg │ ├── login │ │ └── login1.jpg │ └── placeholder │ │ ├── 165x90.png │ │ ├── 255x150.png │ │ ├── 530x270.png │ │ └── 550x280.png ├── js │ ├── ace-editable.js │ ├── ace-editable.min.js │ ├── ace-elements.js │ ├── ace-elements.min.js │ ├── ace-extra.js │ ├── ace-extra.min.js │ ├── ace.js │ ├── ace.min.js │ ├── autosize.js │ ├── autosize.min.js │ ├── bootbox.js │ ├── bootstrap-colorpicker.min.js │ ├── bootstrap-datepicker.min.js │ ├── bootstrap-datetimepicker.min.js │ ├── bootstrap-editable.min.js │ ├── bootstrap-markdown.min.js │ ├── bootstrap-multiselect.min.js │ ├── bootstrap-tag.min.js │ ├── bootstrap-timepicker.min.js │ ├── bootstrap-wysiwyg.min.js │ ├── bootstrap.min.js │ ├── buttons.colVis.min.js │ ├── buttons.flash.min.js │ ├── buttons.html5.min.js │ ├── buttons.print.min.js │ ├── chosen.jquery.min.js │ ├── dataTables.buttons.min.js │ ├── dataTables.select.js │ ├── dataTables.select.min.js │ ├── daterangepicker.min.js │ ├── dropzone.min.js │ ├── excanvas.min.js │ ├── fullcalendar.min.js │ ├── grid.locale-en.js │ ├── holder.min.js │ ├── html5shiv.min.js │ ├── index-front.js │ ├── jquery-1.11.3.min.js │ ├── jquery-2.1.4.js │ ├── jquery-2.1.4.min.js │ ├── jquery-additional-methods.min.js │ ├── jquery-typeahead.js │ ├── jquery-ui.custom.min.js │ ├── jquery-ui.min.js │ ├── jquery.bootstrap-duallistbox.min.js │ ├── jquery.colorbox.min.js │ ├── jquery.dataTables.bootstrap.min.js │ ├── jquery.dataTables.js │ ├── jquery.dataTables.min.js │ ├── jquery.easypiechart.min.js │ ├── jquery.flot.min.js │ ├── jquery.flot.pie.min.js │ ├── jquery.flot.resize.min.js │ ├── jquery.gritter.min.js │ ├── jquery.hotkeys.index.min.js │ ├── jquery.inputlimiter.min.js │ ├── jquery.jqGrid.min.js │ ├── jquery.knob.min.js │ ├── jquery.maskedinput.min.js │ ├── jquery.mobile.custom.min.js │ ├── jquery.nestable.min.js │ ├── jquery.raty.min.js │ ├── jquery.sparkline.index.min.js │ ├── jquery.ui.touch-punch.min.js │ ├── jquery.validate.min.js │ ├── markdown.min.js │ ├── moment.min.js │ ├── mustache.js │ ├── prettify.min.js │ ├── respond.min.js │ ├── select2.min.js │ ├── spin.js │ ├── spinbox.min.js │ ├── tree.min.js │ └── wizard.min.js └── swf │ └── flashExport.swf ├── resources ├── bigdesk │ ├── css │ │ ├── CssGrid_2 │ │ │ ├── 1140.css │ │ │ ├── License.txt │ │ │ ├── ie.css │ │ │ └── styles.css │ │ ├── bigdesk.css │ │ ├── normalize.css │ │ └── reset.css │ ├── images │ │ ├── 1license.txt │ │ ├── award_star_gold.png │ │ ├── es-logo.png │ │ └── favicon.png │ └── js │ │ ├── bigdeskApp.js │ │ ├── charts │ │ ├── bigdesk_charts.js │ │ ├── common.css │ │ ├── not-available │ │ │ ├── not-available-chart.css │ │ │ ├── not-available-chart.js │ │ │ └── test-not-available-chart.html │ │ ├── pack │ │ │ └── pack.css │ │ ├── time-area │ │ │ ├── test-time-area-chart.html │ │ │ ├── time-area-chart.css │ │ │ └── time-area-chart.js │ │ └── time-series │ │ │ ├── test-time-series-chart.html │ │ │ ├── time-series-chart.css │ │ │ └── time-series-chart.js │ │ ├── lib │ │ ├── D3-v2.8.1 │ │ │ ├── LICENSE │ │ │ └── d3.v2.min.js │ │ ├── backbone │ │ │ ├── LICENSE │ │ │ └── backbone-min.js │ │ ├── css3-mediaqueries │ │ │ ├── License.txt │ │ │ └── css3-mediaqueries.js │ │ ├── jquery │ │ │ └── jquery-1.7.1.min.js │ │ ├── mustache │ │ │ ├── LICENSE │ │ │ └── mustache.js │ │ ├── tinysort │ │ │ ├── License.txt │ │ │ └── jquery.tinysort.min.js │ │ └── underscore │ │ │ ├── LICENSE │ │ │ └── underscore-min.js │ │ ├── models │ │ ├── Hello.js │ │ └── cluster │ │ │ ├── ClusterHealth.js │ │ │ ├── ClusterState.js │ │ │ ├── IndicesStatus.js │ │ │ ├── NodeInfo.js │ │ │ ├── NodesState.js │ │ │ └── NodesStats.js │ │ ├── store │ │ └── BigdeskStore.js │ │ ├── util │ │ └── bigdesk_extension.js │ │ └── views │ │ ├── ClusterHealthView.js │ │ ├── ClusterNodesListView.js │ │ ├── ClusterStateView.js │ │ ├── SelectedClusterNodeView.js │ │ └── templates.js ├── kopf │ ├── css │ │ ├── dark_style.css │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── kopf.css │ │ ├── lib.css │ │ ├── light_style.css │ │ └── stat.css │ ├── html │ │ ├── modals │ │ │ ├── confirm_dialog.html │ │ │ ├── confirm_dialog2.html │ │ │ ├── modal_info.html │ │ │ └── modal_info2.html │ │ └── partials │ │ │ ├── alias_manager.html │ │ │ ├── analysis.html │ │ │ ├── analysis │ │ │ └── analysis_token.html │ │ │ ├── clientlogquery.html │ │ │ ├── cluster_health.html │ │ │ ├── cluster_overview.html │ │ │ ├── cluster_overview │ │ │ ├── filters.html │ │ │ ├── index_body.html │ │ │ ├── index_header.html │ │ │ ├── index_unassigned.html │ │ │ └── node_cell.html │ │ │ ├── cluster_settings.html │ │ │ ├── cluster_settings │ │ │ ├── cluster.html │ │ │ ├── recovery.html │ │ │ └── routing.html │ │ │ ├── cluster_stats.html │ │ │ ├── create_type.html │ │ │ ├── debug.html │ │ │ ├── directives │ │ │ └── pagination.html │ │ │ ├── index_export.html │ │ │ ├── index_import.html │ │ │ ├── index_manager.html │ │ │ ├── index_manager_new.html │ │ │ ├── index_setting.html │ │ │ ├── index_settings │ │ │ ├── blocks.html │ │ │ ├── cache.html │ │ │ ├── index.html │ │ │ ├── routing.html │ │ │ ├── slowlog.html │ │ │ └── translog.html │ │ │ ├── index_templates.html │ │ │ ├── main_alerts.html │ │ │ ├── nav_bar.html │ │ │ ├── new_stat.html │ │ │ ├── nodes │ │ │ └── nodes.html │ │ │ ├── query.html │ │ │ ├── reindex.html │ │ │ ├── rest_client.html │ │ │ ├── slowlog.html │ │ │ ├── slowlogquery.html │ │ │ ├── stats.html │ │ │ └── update_index_mapping.html │ ├── imgs │ │ ├── favicon.png │ │ └── more.png │ └── js │ │ ├── controllers │ │ ├── alerts.js │ │ ├── alias_manager.js │ │ ├── analysis.js │ │ ├── clientlogquery.js │ │ ├── cluster_overview.js │ │ ├── confirm_dialog.js │ │ ├── create_index_new.js │ │ ├── create_index_new2.js │ │ ├── create_type.js │ │ ├── global.js │ │ ├── index_export.js │ │ ├── index_import.js │ │ ├── index_manager.js │ │ ├── index_setting.js │ │ ├── index_templates.js │ │ ├── navbar.js │ │ ├── new_stats.js │ │ ├── nodes.js │ │ ├── query.js │ │ ├── reindex.js │ │ ├── rest_client.js │ │ ├── slowlog.js │ │ ├── slowlogquery.js │ │ ├── stats.js │ │ └── update_index_mapping.js │ │ ├── directives │ │ ├── directives.js │ │ ├── jsontree.js │ │ ├── pagination.js │ │ ├── sortby.js │ │ └── static_include.js │ │ ├── elastic │ │ ├── editable_index_settings.js │ │ └── elastic.js │ │ ├── filters │ │ └── filter.js │ │ ├── frontIndex.js │ │ ├── kopf.js │ │ ├── services │ │ ├── app_state.js │ │ ├── elastic_service.js │ │ ├── external_settings.js │ │ └── services.js │ │ └── util.js └── thirdparty │ ├── angular-tree-dnd │ ├── ng-tree-dnd.css │ └── ng-tree-dnd.js │ ├── angularjs │ ├── angular-animate.min.js │ ├── angular-route.min.js │ └── angular.min.js │ ├── bootstrap │ ├── css │ │ └── bootstrap.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ └── bootstrap.js │ ├── csv │ ├── csv.js │ └── jquery.csv.js │ ├── datatimepicker │ ├── bootstrap-datetimepicker.css │ └── bootstrap-datetimepicker.js │ ├── echart │ ├── echarts.js │ └── theme │ │ └── dark.js │ ├── jquery.datatable │ ├── css │ │ ├── jquery.dataTables.css │ │ └── jquery.dataTables_themeroller.css │ └── js │ │ ├── jquery.dataTables.js │ │ └── jquery.dataTables.min.js │ ├── jquery │ ├── jquery-1.10.2.min.js │ ├── jquery-1.11.1.min.js │ ├── jquery-1.11.1.min.map │ └── jquery-1.7.2.min.js │ ├── jqwidgets │ ├── globalization │ │ ├── ReadMe.txt │ │ ├── globalization.js │ │ ├── globalize.culture.cs-CZ.js │ │ ├── globalize.culture.de-DE.js │ │ ├── globalize.culture.en-CA.js │ │ ├── globalize.culture.en-US.js │ │ ├── globalize.culture.fr-FR.js │ │ ├── globalize.culture.he-IL.js │ │ ├── globalize.culture.hr-HR.js │ │ ├── globalize.culture.hu-HU.js │ │ ├── globalize.culture.it-IT.js │ │ ├── globalize.culture.ja-JP.js │ │ ├── globalize.culture.lt.js │ │ ├── globalize.culture.ru-RU.js │ │ ├── globalize.culture.sa-IN.js │ │ ├── globalize.culture.zh-CN.js │ │ └── globalize.js │ ├── jqx-all.js │ ├── jqxangular.js │ ├── jqxbargauge.js │ ├── jqxbulletchart.js │ ├── jqxbuttongroup.js │ ├── jqxbuttons.js │ ├── jqxcalendar.js │ ├── jqxchart.annotations.js │ ├── jqxchart.api.js │ ├── jqxchart.core.js │ ├── jqxchart.js │ ├── jqxchart.rangeselector.js │ ├── jqxchart.waterfall.js │ ├── jqxcheckbox.js │ ├── jqxcolorpicker.js │ ├── jqxcombobox.js │ ├── jqxcomplexinput.js │ ├── jqxcore.js │ ├── jqxdata.export.js │ ├── jqxdata.js │ ├── jqxdatatable.js │ ├── jqxdate.js │ ├── jqxdatetimeinput.js │ ├── jqxdocking.js │ ├── jqxdockinglayout.js │ ├── jqxdockpanel.js │ ├── jqxdragdrop.js │ ├── jqxdraw.js │ ├── jqxdropdownbutton.js │ ├── jqxdropdownlist.js │ ├── jqxeditor.js │ ├── jqxexpander.js │ ├── jqxfileupload.js │ ├── jqxformattedinput.js │ ├── jqxgauge.js │ ├── jqxgrid.aggregates.js │ ├── jqxgrid.columnsreorder.js │ ├── jqxgrid.columnsresize.js │ ├── jqxgrid.edit.js │ ├── jqxgrid.export.js │ ├── jqxgrid.filter.js │ ├── jqxgrid.grouping.js │ ├── jqxgrid.js │ ├── jqxgrid.pager.js │ ├── jqxgrid.selection.js │ ├── jqxgrid.sort.js │ ├── jqxgrid.storage.js │ ├── jqxinput.js │ ├── jqxkanban.js │ ├── jqxknob.js │ ├── jqxknockout.js │ ├── jqxlayout.js │ ├── jqxlistbox.js │ ├── jqxlistmenu.js │ ├── jqxloader.js │ ├── jqxmaskedinput.js │ ├── jqxmenu.js │ ├── jqxnavbar.js │ ├── jqxnavigationbar.js │ ├── jqxnotification.js │ ├── jqxnumberinput.js │ ├── jqxpanel.js │ ├── jqxpasswordinput.js │ ├── jqxpopover.js │ ├── jqxprogressbar.js │ ├── jqxradiobutton.js │ ├── jqxrangeselector.js │ ├── jqxrating.js │ ├── jqxresponse.js │ ├── jqxresponsivepanel.js │ ├── jqxribbon.js │ ├── jqxscheduler.api.js │ ├── jqxscheduler.js │ ├── jqxscrollbar.js │ ├── jqxscrollview.js │ ├── jqxslider.js │ ├── jqxsortable.js │ ├── jqxsplitter.js │ ├── jqxswitchbutton.js │ ├── jqxtabs.js │ ├── jqxtagcloud.js │ ├── jqxtextarea.js │ ├── jqxtoolbar.js │ ├── jqxtooltip.js │ ├── jqxtouch.js │ ├── jqxtree.js │ ├── jqxtreegrid.js │ ├── jqxtreemap.js │ ├── jqxvalidator.js │ ├── jqxwindow.js │ └── styles │ │ ├── images │ │ ├── backImage.png │ │ ├── backgroundTop.png │ │ ├── bg_black.png │ │ ├── bg_black_horizontal.png │ │ ├── bg_blackhover.png │ │ ├── bg_blackhover_horizontal.png │ │ ├── bg_blackpressed.png │ │ ├── bg_blackpressed_horizontal.png │ │ ├── bg_blueenergy.png │ │ ├── bg_darkblue.png │ │ ├── bg_darkbluehover.png │ │ ├── bg_darkbluepressed.png │ │ ├── black_gradient.png │ │ ├── blackbackground.png │ │ ├── check_black.png │ │ ├── check_blue.png │ │ ├── check_blue_indeterminate.png │ │ ├── check_disabled.png │ │ ├── check_indeterminate_black.png │ │ ├── check_indeterminate_disabled.png │ │ ├── check_indeterminate_white.png │ │ ├── check_lightblue.png │ │ ├── check_lightblue_indeterminate.png │ │ ├── check_white.png │ │ ├── close.png │ │ ├── close_black.png │ │ ├── close_blue.png │ │ ├── close_white.png │ │ ├── colorpicker │ │ │ ├── ReadMe.txt │ │ │ ├── bar-hue.png │ │ │ ├── bar-saturation.png │ │ │ ├── map-hue.png │ │ │ ├── map-saturation-overlay.png │ │ │ └── map-saturation.png │ │ ├── common.png │ │ ├── crosshair-white.png │ │ ├── crosshair.png │ │ ├── darkness │ │ │ ├── ReadMe.txt │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── darkred_gradient.png │ │ ├── drag.png │ │ ├── dragcancel.png │ │ ├── error.png │ │ ├── filter.png │ │ ├── html_editor.png │ │ ├── html_editor_white.png │ │ ├── icon-calendar-white.png │ │ ├── icon-calendar.png │ │ ├── icon-cancel-white.png │ │ ├── icon-cancel.png │ │ ├── icon-delete-white.png │ │ ├── icon-delete.png │ │ ├── icon-down-blue.png │ │ ├── icon-down-transparent.png │ │ ├── icon-down-white.png │ │ ├── icon-down.png │ │ ├── icon-edit-white.png │ │ ├── icon-edit.png │ │ ├── icon-first-blue.png │ │ ├── icon-first-transparent.png │ │ ├── icon-first-white.png │ │ ├── icon-first.png │ │ ├── icon-last-blue.png │ │ ├── icon-last-transparent.png │ │ ├── icon-last-white.png │ │ ├── icon-last.png │ │ ├── icon-left-blue.png │ │ ├── icon-left-transparent.png │ │ ├── icon-left-white.png │ │ ├── icon-left.png │ │ ├── icon-menu-minimized-white.png │ │ ├── icon-menu-minimized.png │ │ ├── icon-plus-white.png │ │ ├── icon-plus.png │ │ ├── icon-recurrence-exception-white.png │ │ ├── icon-recurrence-exception.png │ │ ├── icon-recurrence-white.png │ │ ├── icon-recurrence.png │ │ ├── icon-right-blue.png │ │ ├── icon-right-transparent.png │ │ ├── icon-right-white.png │ │ ├── icon-right.png │ │ ├── icon-save-white.png │ │ ├── icon-save.png │ │ ├── icon-showpassword-white.png │ │ ├── icon-showpassword.png │ │ ├── icon-time-white.png │ │ ├── icon-time.png │ │ ├── icon-up-blue.png │ │ ├── icon-up-transparent.png │ │ ├── icon-up-white.png │ │ ├── icon-up.png │ │ ├── info.png │ │ ├── le-frog │ │ │ ├── ReadMe.txt │ │ │ ├── ui-bg_diagonals-small_0_aaaaaa_40x40.png │ │ │ ├── ui-bg_diagonals-thick_15_444444_40x40.png │ │ │ ├── ui-bg_diagonals-thick_95_ffdc2e_40x40.png │ │ │ ├── ui-bg_glass_55_fbf5d0_1x400.png │ │ │ ├── ui-bg_highlight-hard_30_285c00_1x100.png │ │ │ ├── ui-bg_highlight-soft_33_3a8104_1x100.png │ │ │ ├── ui-bg_highlight-soft_50_4eb305_1x100.png │ │ │ ├── ui-bg_highlight-soft_60_4ca20b_1x100.png │ │ │ ├── ui-bg_inset-soft_10_285c00_1x100.png │ │ │ ├── ui-icons_4eb305_256x240.png │ │ │ ├── ui-icons_72b42d_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── lightness │ │ │ ├── ReadMe.txt │ │ │ ├── icon-first.png │ │ │ ├── icon-last.png │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── loader-small.gif │ │ ├── loader.gif │ │ ├── mail.png │ │ ├── menubutton.png │ │ ├── metro-icon-down-white.png │ │ ├── metro-icon-down.png │ │ ├── metro-icon-first-white.png │ │ ├── metro-icon-first.png │ │ ├── metro-icon-last-white.png │ │ ├── metro-icon-last.png │ │ ├── metro-icon-left-white.png │ │ ├── metro-icon-left.png │ │ ├── metro-icon-right - Copy.png │ │ ├── metro-icon-right-white.png │ │ ├── metro-icon-right.png │ │ ├── metro-icon-up-white.png │ │ ├── metro-icon-up.png │ │ ├── multi-arrow.gif │ │ ├── office-icon-down.png │ │ ├── office-icon-first.png │ │ ├── office-icon-last.png │ │ ├── office-icon-left.png │ │ ├── office-icon-right.png │ │ ├── office-icon-up.png │ │ ├── overcast │ │ │ ├── ReadMe.txt │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ │ ├── ui-icons_3383bb_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_70b2e1_256x240.png │ │ │ ├── ui-icons_999999_256x240.png │ │ │ └── ui-icons_fbc856_256x240.png │ │ ├── pin-black.png │ │ ├── pin-blue.png │ │ ├── pin-lightblue.png │ │ ├── pin-white.png │ │ ├── pin-yellow.png │ │ ├── pin.png │ │ ├── pinned-black.png │ │ ├── pinned-blue.png │ │ ├── pinned-lightblue.png │ │ ├── pinned-white.png │ │ ├── pinned-yellow.png │ │ ├── pinned.png │ │ ├── plus.png │ │ ├── plus_white.png │ │ ├── pointer.png │ │ ├── rangebar_classic.png │ │ ├── rangebar_darkblue.png │ │ ├── rangebar_shinyblack.png │ │ ├── rangebar_summer.png │ │ ├── red_arrow_down.png │ │ ├── red_arrow_up.png │ │ ├── red_gradient.png │ │ ├── redmond │ │ │ ├── ReadMe.txt │ │ │ ├── icon-first.png │ │ │ ├── icon-last.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ ├── roundbg_check_black.png │ │ ├── roundbg_check_disabled.png │ │ ├── roundbg_check_indeterminate.png │ │ ├── roundbg_check_white.png │ │ ├── roundbg_classic_hover.png │ │ ├── roundbg_classic_normal.png │ │ ├── roundbg_disabled.png │ │ ├── search.png │ │ ├── search_white.png │ │ ├── smoothness │ │ │ ├── ReadMe.txt │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── sortasc.png │ │ ├── sortascbutton.png │ │ ├── sortdesc.png │ │ ├── sortdescbutton.png │ │ ├── sortremove.png │ │ ├── star.png │ │ ├── star_disabled.png │ │ ├── star_hover.png │ │ ├── start │ │ │ ├── ReadMe.txt │ │ │ ├── ui-bg_flat_55_999999_40x100.png │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ ├── ui-bg_glass_45_0078ae_1x400.png │ │ │ ├── ui-bg_glass_55_f8da4e_1x400.png │ │ │ ├── ui-bg_glass_75_79c9ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ │ ├── ui-bg_gloss-wave_50_6eac2c_500x100.png │ │ │ ├── ui-bg_gloss-wave_75_2191c0_500x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_0078ae_256x240.png │ │ │ ├── ui-icons_056b93_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ ├── ui-icons_e0fdff_256x240.png │ │ │ ├── ui-icons_f5e175_256x240.png │ │ │ ├── ui-icons_f7a50d_256x240.png │ │ │ └── ui-icons_fcd113_256x240.png │ │ ├── stripes.png │ │ ├── success.png │ │ ├── sunny │ │ │ ├── ReadMe.txt │ │ │ ├── ui-bg_diagonals-medium_20_d34d17_40x40.png │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_gloss-wave_45_817865_500x100.png │ │ │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png │ │ │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png │ │ │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_feeebd_1x100.png │ │ │ ├── ui-bg_inset-soft_30_ffffff_1x100.png │ │ │ ├── ui-icons_3d3d3d_256x240.png │ │ │ ├── ui-icons_bd7b00_256x240.png │ │ │ ├── ui-icons_d19405_256x240.png │ │ │ ├── ui-icons_eb990f_256x240.png │ │ │ ├── ui-icons_ed9f26_256x240.png │ │ │ ├── ui-icons_fadc7a_256x240.png │ │ │ └── ui-icons_ffe180_256x240.png │ │ ├── tick.png │ │ ├── time.png │ │ ├── track_classic.png │ │ ├── track_darkblue.png │ │ ├── track_shinyblack.png │ │ ├── track_summer.png │ │ ├── warning.png │ │ ├── wp_check_indeterminate_white.png │ │ └── wp_check_white.png │ │ ├── jqx.android.css │ │ ├── jqx.arctic.css │ │ ├── jqx.base.css │ │ ├── jqx.black.css │ │ ├── jqx.blackberry.css │ │ ├── jqx.bootstrap.css │ │ ├── jqx.classic.css │ │ ├── jqx.dark.css │ │ ├── jqx.darkblue.css │ │ ├── jqx.energyblue.css │ │ ├── jqx.fresh.css │ │ ├── jqx.glacier.css │ │ ├── jqx.highcontrast.css │ │ ├── jqx.light.css │ │ ├── jqx.metro.css │ │ ├── jqx.metrodark.css │ │ ├── jqx.mobile.css │ │ ├── jqx.office.css │ │ ├── jqx.orange.css │ │ ├── jqx.shinyblack.css │ │ ├── jqx.summer.css │ │ ├── jqx.ui-darkness.css │ │ ├── jqx.ui-le-frog.css │ │ ├── jqx.ui-lightness.css │ │ ├── jqx.ui-overcast.css │ │ ├── jqx.ui-redmond.css │ │ ├── jqx.ui-smoothness.css │ │ ├── jqx.ui-start.css │ │ ├── jqx.ui-sunny.css │ │ ├── jqx.web.css │ │ └── jqx.windowsphone.css │ ├── jsontree │ └── jsontree.min.js │ ├── mustache │ └── mustache.js │ ├── sense │ ├── .babelrc │ ├── es_5_0.js │ └── sense.js │ └── typeahead │ └── typeahead.js └── sayHello.jsp /.gitattributes: -------------------------------------------------------------------------------- 1 | *.css linguist-language=java 2 | *.js linguist-language=java 3 | *.html linguist-language=java 4 | -------------------------------------------------------------------------------- /img/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/img/alarm.png -------------------------------------------------------------------------------- /img/cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/img/cluster.png -------------------------------------------------------------------------------- /img/index_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/img/index_manage.png -------------------------------------------------------------------------------- /img/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/img/query.png -------------------------------------------------------------------------------- /img/rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/img/rest.png -------------------------------------------------------------------------------- /img/stat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/img/stat1.png -------------------------------------------------------------------------------- /src/main/filters/development.properties: -------------------------------------------------------------------------------- 1 | log4j.logLevel=ERROR,CONSOLE 2 | log4j.file.path=E://logs/eser 3 | 4 | influxdb.flag=false 5 | influxdb.hostport= 6 | influxdb.username= 7 | influxdb.pwd= 8 | influxdb.database= 9 | 10 | env_type=1 11 | isClustered = true 12 | 13 | mysql.url= 14 | mysql.username= 15 | mysql.pass= 16 | mysql.driver= -------------------------------------------------------------------------------- /src/main/filters/preProduct.properties: -------------------------------------------------------------------------------- 1 | log4j.logLevel=ERROR,CONSOLE 2 | log4j.file.path=/usr/local/tomcat/logs/eser 3 | 4 | 5 | influxdb.flag=false 6 | influxdb.hostport= 7 | influxdb.username= 8 | influxdb.pwd= 9 | influxdb.database= 10 | 11 | env_type=2 12 | isClustered = true 13 | 14 | mysql.url= 15 | mysql.username= 16 | mysql.pass= 17 | mysql.driver= -------------------------------------------------------------------------------- /src/main/filters/product.properties: -------------------------------------------------------------------------------- 1 | log4j.logLevel=ERROR,CONSOLE 2 | log4j.file.path=/usr/local/tomcat/logs/eser 3 | 4 | influxdb.flag=false 5 | influxdb.hostport= 6 | influxdb.username= 7 | influxdb.pwd= 8 | influxdb.database= 9 | 10 | env_type=3 11 | isClustered = true 12 | 13 | mysql.url= 14 | mysql.username= 15 | mysql.pass= 16 | mysql.driver= -------------------------------------------------------------------------------- /src/main/filters/test.properties: -------------------------------------------------------------------------------- 1 | log4j.logLevel=ERROR,CONSOLE 2 | log4j.file.path=/usr/local/tomcat/logs/eser 3 | 4 | 5 | influxdb.flag=false 6 | influxdb.hostport= 7 | influxdb.username= 8 | influxdb.pwd= 9 | influxdb.database= 10 | 11 | env_type=1 12 | isClustered = true 13 | 14 | mysql.url= 15 | mysql.username= 16 | mysql.pass= 17 | mysql.driver= 18 | 19 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/controller/sechedule/job/JobKey.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.controller.sechedule.job; 2 | 3 | import java.util.Date; 4 | 5 | /** 6 | * 7 | * Created by wangjiulin on 2017/12/20. 8 | */ 9 | public class JobKey { 10 | 11 | public static String buildFutureKey(String clusterName, String type, Date collectTime) { 12 | return "cluster-" + clusterName + 13 | "-" + 14 | type + 15 | "-" + 16 | collectTime.getTime(); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/alarm/AlarmRuleDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.alarm; 2 | 3 | 4 | import com.ucar.eser.core.bean.vo.alarm.AlarmResult; 5 | import com.ucar.eser.core.bean.vo.alarm.AlarmRule; 6 | 7 | import java.util.List; 8 | import java.util.Map; 9 | 10 | public interface AlarmRuleDao { 11 | 12 | List getList(); 13 | 14 | AlarmRule getAlarmRuleById(Long id); 15 | 16 | void addAlarmRule(AlarmRule AlarmRule); 17 | 18 | void updateAlarmRule(AlarmRule AlarmRule); 19 | 20 | void deleteAlarmRuleById(Long id); 21 | 22 | int checkExist(AlarmRule AlarmRule); 23 | 24 | List getResult(Map paramMap); 25 | 26 | AlarmRule getAlarmRuleByClusterName(String clusterName); 27 | 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/clusterManager/ClusterInfoDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.clusterManager; 2 | 3 | 4 | import com.ucar.eser.core.bean.po.ClusterInfo; 5 | 6 | import java.util.List; 7 | 8 | public interface ClusterInfoDao { 9 | 10 | List getList(String productLine); 11 | 12 | ClusterInfo getClusterInfoById(Long id); 13 | 14 | void addClusterInfo(ClusterInfo clusterInfo); 15 | 16 | void updateClusterInfo(ClusterInfo clusterInfo); 17 | 18 | void deleteClusterInfoById(Long id); 19 | 20 | int checkExist(ClusterInfo clusterInfo); 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/datasource/DataSourceDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.datasource; 2 | 3 | import com.ucar.eser.core.bean.po.DataSourceInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2018/3/7. 9 | */ 10 | public interface DataSourceDao { 11 | 12 | List getList(); 13 | 14 | DataSourceInfo getDataSourceInfo(Long id); 15 | 16 | Integer checkExists(DataSourceInfo dataSourceInfo); 17 | 18 | void insertInfo(DataSourceInfo dataSourceInfo); 19 | 20 | void updateInfo(DataSourceInfo dataSourceInfo); 21 | 22 | void deleteInfo(Long id); 23 | } 24 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/CommonDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeCommonStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2017/12/13. 9 | */ 10 | public interface CommonDao { 11 | void batchInsert(List nodeCommonStatInfos); 12 | 13 | NodeCommonStatInfo getLastByParams(NodeCommonStatInfo nodeCommonStatInfo); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/FsStatDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeFsStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2018/3/27. 9 | */ 10 | public interface FsStatDao { 11 | void batchInsert(List fsStatInfos); 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/HttpStatDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeHttpStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2017/11/6. 9 | */ 10 | public interface HttpStatDao { 11 | 12 | void batchInsert(List nodeHttpStatInfos); 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/IndiceDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeIndiceStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2017/12/13. 9 | */ 10 | public interface IndiceDao { 11 | 12 | void batchInsert(List statInfos); 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/JvmDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeJVMStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2017/11/6. 9 | */ 10 | public interface JvmDao { 11 | 12 | void batchInsert(List statInfos); 13 | 14 | NodeJVMStatInfo getLastByParams(NodeJVMStatInfo nodeJVMStatInfo); 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/OsStatDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeOSStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2017/11/8. 9 | */ 10 | public interface OsStatDao { 11 | 12 | void batchInsert(List statInfos); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/ThreadPoolDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeThreadPoolStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2017/11/6. 9 | */ 10 | public interface ThreadPoolDao { 11 | 12 | void batchInsert(List nodeThreadPoolStatInfos); 13 | 14 | List getNodeThreadPoolStatInfos(NodeThreadPoolStatInfo nodeThreadPoolStatInfo); 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/TransportStatDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeTransportStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2017/11/6. 9 | */ 10 | public interface TransportStatDao { 11 | 12 | void batchInsert(List transportStatInfos); 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/impl/FsStatDaoImpl.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql.impl; 2 | 3 | import com.ucar.eser.admin.dao.influxdbandmysql.FsStatDao; 4 | import com.ucar.eser.core.bean.vo.stat.NodeFsStatInfo; 5 | import com.ucar.eser.core.ibatis.EserIbatisDaoImpl; 6 | import org.springframework.stereotype.Repository; 7 | 8 | import java.util.List; 9 | 10 | /** 11 | * Created by wangjiulin on 2018/3/27. 12 | */ 13 | @Repository 14 | public class FsStatDaoImpl extends EserIbatisDaoImpl implements FsStatDao { 15 | @Override 16 | public void batchInsert(List fsStatInfos) { 17 | this.batchInsert("es.fs.log.batchInsert",fsStatInfos); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/impl/HttpStatDaoImpl.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql.impl; 2 | 3 | import com.ucar.eser.admin.dao.influxdbandmysql.HttpStatDao; 4 | import com.ucar.eser.core.bean.vo.stat.NodeHttpStatInfo; 5 | import com.ucar.eser.core.ibatis.EserIbatisDaoImpl; 6 | import org.springframework.stereotype.Repository; 7 | 8 | import java.util.List; 9 | 10 | /** 11 | * Created by wangjiulin on 2017/11/6. 12 | */ 13 | @Repository 14 | public class HttpStatDaoImpl extends EserIbatisDaoImpl implements HttpStatDao { 15 | @Override 16 | public void batchInsert(List nodeHttpStatInfos) { 17 | super.batchInsert("es.http.log.batchInsert",nodeHttpStatInfos); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/impl/IndiceDaoImpl.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql.impl; 2 | 3 | import com.ucar.eser.admin.dao.influxdbandmysql.IndiceDao; 4 | import com.ucar.eser.core.bean.vo.stat.NodeIndiceStatInfo; 5 | import com.ucar.eser.core.ibatis.EserIbatisDaoImpl; 6 | import org.springframework.stereotype.Repository; 7 | 8 | import java.util.List; 9 | 10 | /** 11 | * Created by wangjiulin on 2017/12/13. 12 | */ 13 | @Repository 14 | public class IndiceDaoImpl extends EserIbatisDaoImpl implements IndiceDao { 15 | 16 | @Override 17 | public void batchInsert(List statInfos) { 18 | super.batchInsert("es.indices.log.batchInsert",statInfos); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/impl/JvmDaoImpl.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql.impl; 2 | 3 | import com.ucar.eser.admin.dao.influxdbandmysql.JvmDao; 4 | import com.ucar.eser.core.bean.vo.stat.NodeJVMStatInfo; 5 | import com.ucar.eser.core.ibatis.EserIbatisDaoImpl; 6 | import org.springframework.stereotype.Repository; 7 | 8 | import java.util.List; 9 | 10 | /** 11 | * Created by wangjiulin on 2017/11/6. 12 | */ 13 | @Repository 14 | public class JvmDaoImpl extends EserIbatisDaoImpl implements JvmDao { 15 | @Override 16 | public void batchInsert(List statInfos) { 17 | this.batchInsert("es.jvm.log.batchInsert",statInfos); 18 | } 19 | 20 | @Override 21 | public NodeJVMStatInfo getLastByParams(NodeJVMStatInfo nodeJVMStatInfo) { 22 | return (NodeJVMStatInfo) this.queryForObject("es.jvm.log.getLastByParams",nodeJVMStatInfo); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/impl/OsStatDaoImpl.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql.impl; 2 | 3 | import com.ucar.eser.admin.dao.influxdbandmysql.OsStatDao; 4 | import com.ucar.eser.core.bean.vo.stat.NodeOSStatInfo; 5 | import com.ucar.eser.core.ibatis.EserIbatisDaoImpl; 6 | import org.springframework.stereotype.Repository; 7 | 8 | import java.util.List; 9 | 10 | /** 11 | * Created by wangjiulin on 2017/11/8. 12 | */ 13 | @Repository 14 | public class OsStatDaoImpl extends EserIbatisDaoImpl implements OsStatDao { 15 | 16 | @Override 17 | public void batchInsert(List statInfos) { 18 | this.batchInsert("es.os.log.batchInsert",statInfos); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/influxdbandmysql/impl/TransportStatDaoImpl.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.influxdbandmysql.impl; 2 | 3 | import com.ucar.eser.admin.dao.influxdbandmysql.TransportStatDao; 4 | import com.ucar.eser.core.bean.vo.stat.NodeTransportStatInfo; 5 | import com.ucar.eser.core.ibatis.EserIbatisDaoImpl; 6 | import org.springframework.stereotype.Repository; 7 | 8 | import java.util.List; 9 | 10 | /** 11 | * Created by wangjiulin on 2017/11/6. 12 | */ 13 | @Repository 14 | public class TransportStatDaoImpl extends EserIbatisDaoImpl implements TransportStatDao { 15 | @Override 16 | public void batchInsert(List transportStatInfos) { 17 | this.batchInsert("es.transport.log.batchInsert",transportStatInfos); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/schedule/QuartzDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.schedule; 2 | 3 | 4 | 5 | import com.ucar.eser.core.bean.po.TriggerInfo; 6 | 7 | import java.util.List; 8 | 9 | /** 10 | * Created by wangzhen on 2015/10/21 11 | */ 12 | public interface QuartzDao { 13 | 14 | List getTriggersByJobGroup(String jobGroup); 15 | 16 | List getAllTriggers(); 17 | 18 | List searchTriggerByNameOrGroup(String queryString); 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/token/TokenInfoDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.token; 2 | 3 | 4 | import com.ucar.eser.core.bean.vo.token.TokenInfo; 5 | 6 | import java.util.List; 7 | 8 | public interface TokenInfoDao { 9 | 10 | List getList(); 11 | 12 | TokenInfo getTokenInfoById(Long id); 13 | 14 | void addTokenInfo(TokenInfo tokenInfo); 15 | 16 | TokenInfo getTokenInfoByName(String name); 17 | 18 | void updateTokenInfo(TokenInfo tokenInfo); 19 | 20 | void deleteTokenInfoById(Long id); 21 | 22 | int checkExist(TokenInfo tokenInfo); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/dao/user/UserInfoDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.dao.user; 2 | 3 | 4 | import com.ucar.eser.core.bean.po.UserInfo; 5 | 6 | import java.util.List; 7 | 8 | public interface UserInfoDao { 9 | 10 | List getList(); 11 | 12 | UserInfo getUserInfoById(Long id); 13 | 14 | UserInfo getUserInfoByUserName(String userName); 15 | 16 | void addUserInfo(UserInfo userInfo); 17 | 18 | void updateUserInfo(UserInfo userInfo); 19 | 20 | void deleteUserInfoById(Long id); 21 | 22 | int checkExist(UserInfo userInfo); 23 | 24 | List getListByIds(List ids); 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/alarm/AlarmRuleService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.alarm; 2 | 3 | 4 | import com.ucar.eser.core.bean.vo.alarm.AlarmResult; 5 | import com.ucar.eser.core.bean.vo.alarm.AlarmRule; 6 | 7 | import java.util.List; 8 | import java.util.Map; 9 | 10 | public interface AlarmRuleService { 11 | 12 | List getList(); 13 | 14 | AlarmRule getAlarmRuleById(Long id); 15 | 16 | void addAlarmRule(AlarmRule AlarmRule); 17 | 18 | void updateAlarmRule(AlarmRule AlarmRule); 19 | 20 | void deleteAlarmRuleById(Long id); 21 | 22 | boolean checkExist(AlarmRule AlarmRule); 23 | 24 | List getResult(Map paramMap); 25 | 26 | String getAddr(String userNameId); 27 | 28 | AlarmRule getAlarmRuleByClusterName(String clusterName); 29 | } 30 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/clusterManager/ClusterInfoService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.clusterManager; 2 | 3 | 4 | import com.ucar.eser.core.bean.po.ClusterInfo; 5 | 6 | import java.util.List; 7 | 8 | public interface ClusterInfoService { 9 | 10 | List getList(String productLine); 11 | 12 | ClusterInfo getClusterInfoById(Long id); 13 | 14 | void addClusterInfo(ClusterInfo clusterInfo); 15 | 16 | void updateClusterInfo(ClusterInfo clusterInfo); 17 | 18 | void deleteClusterInfoById(Long id); 19 | 20 | boolean checkExist(ClusterInfo clusterInfo); 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/datasource/DataSourceService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.datasource; 2 | 3 | import com.ucar.eser.core.bean.po.DataSourceInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by wangjiulin on 2018/3/7. 9 | */ 10 | public interface DataSourceService { 11 | 12 | List getList(); 13 | 14 | DataSourceInfo getDataSourceInfo(Long id); 15 | 16 | Boolean checkExists(DataSourceInfo dataSourceInfo); 17 | 18 | void insertInfo(DataSourceInfo dataSourceInfo); 19 | 20 | void updateInfo(DataSourceInfo dataSourceInfo); 21 | 22 | void deleteInfo(Long id); 23 | } 24 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/influxdbandmysql/CommonService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeCommonStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * 9 | * Created by wangjiulin on 2017/12/13. 10 | */ 11 | public interface CommonService { 12 | void batchInsert(List nodeCommonStatInfos); 13 | 14 | NodeCommonStatInfo getLastByParams(NodeCommonStatInfo nodeCommonStatInfo); 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/influxdbandmysql/FsStatService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeFsStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * 9 | * Created by wangjiulin on 2018/3/27. 10 | */ 11 | public interface FsStatService { 12 | 13 | void batchInsert(List fsStatInfos); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/influxdbandmysql/HttpStatService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeHttpStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * 9 | * Created by wangjiulin on 2017/11/6. 10 | */ 11 | public interface HttpStatService { 12 | 13 | void batchInsert(List nodeHttpStatInfos); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/influxdbandmysql/IndiceService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeIndiceStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * 9 | * Created by wangjiulin on 2017/12/13. 10 | */ 11 | public interface IndiceService { 12 | 13 | void batchInsert(List statInfos); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/influxdbandmysql/JvmService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeJVMStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * 9 | * Created by wangjiulin on 2017/11/6. 10 | */ 11 | public interface JvmService { 12 | 13 | void batchInsert(List statInfos); 14 | 15 | NodeJVMStatInfo getLastByParams(NodeJVMStatInfo nodeJVMStatInfo); 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/influxdbandmysql/OsStatService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeOSStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * 9 | * Created by wangjiulin on 2017/11/8. 10 | */ 11 | public interface OsStatService { 12 | 13 | void batchInsert(List statInfos); 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/influxdbandmysql/ThreadPoolService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeThreadPoolStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * 9 | * Created by wangjiulin on 2017/11/6. 10 | */ 11 | public interface ThreadPoolService { 12 | 13 | void batchInsert(List nodeThreadPoolStatInfos); 14 | 15 | List getNodeThreadPoolStatInfos(NodeThreadPoolStatInfo nodeThreadPoolStatInfo); 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/influxdbandmysql/TransportStatService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.influxdbandmysql; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.NodeTransportStatInfo; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * 9 | * Created by wangjiulin on 2017/11/6. 10 | */ 11 | public interface TransportStatService { 12 | 13 | void batchInsert(List transportStatInfos); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/influxdbandmysql/impl/FsStatServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.influxdbandmysql.impl; 2 | 3 | import com.ucar.eser.admin.dao.influxdbandmysql.FsStatDao; 4 | import com.ucar.eser.admin.service.influxdbandmysql.FsStatService; 5 | import com.ucar.eser.core.bean.vo.stat.NodeFsStatInfo; 6 | import org.springframework.beans.factory.annotation.Autowired; 7 | import org.springframework.stereotype.Service; 8 | 9 | import java.util.List; 10 | 11 | /** 12 | * 13 | * Created by wangjiulin on 2018/3/27. 14 | */ 15 | @Service 16 | public class FsStatServiceImpl implements FsStatService { 17 | 18 | @Autowired 19 | private FsStatDao fsStatDao; 20 | 21 | @Override 22 | public void batchInsert(List fsStatInfos) { 23 | fsStatDao.batchInsert(fsStatInfos); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/token/TokenInfoService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.token; 2 | 3 | 4 | import com.ucar.eser.core.bean.vo.token.TokenInfo; 5 | 6 | import java.util.List; 7 | 8 | public interface TokenInfoService { 9 | 10 | List getList(); 11 | 12 | TokenInfo getTokenInfoById(Long id); 13 | 14 | TokenInfo getTokenInfoByName(String name); 15 | 16 | void addTokenInfo(TokenInfo TokenInfo); 17 | 18 | void updateTokenInfo(TokenInfo TokenInfo); 19 | 20 | void deleteTokenInfoById(Long id); 21 | 22 | boolean checkExist(TokenInfo TokenInfo); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/admin/service/user/UserInfoService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.admin.service.user; 2 | 3 | 4 | import com.ucar.eser.core.bean.po.UserInfo; 5 | 6 | import java.util.List; 7 | 8 | public interface UserInfoService { 9 | 10 | List getList(); 11 | 12 | UserInfo getUserInfoById(Long id); 13 | 14 | UserInfo getUserInfoByUserName(String userName); 15 | 16 | void addUserInfo(UserInfo userInfo); 17 | 18 | void updateUserInfo(UserInfo userInfo); 19 | 20 | void deleteUserInfoById(Long id); 21 | 22 | boolean checkExist(UserInfo userInfo); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/bean/MachineProtocol.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.bean; 2 | 3 | /** 4 | * 机器相关的一些常量 5 | *

6 | * Created by wangzhen on 15-10-22. 7 | */ 8 | public interface MachineProtocol { 9 | /** 10 | * 机器统一的用户名、密码 11 | */ 12 | public static final String USERNAME = "es"; 13 | public static final String PASSWORD = "es"; 14 | 15 | 16 | /** 17 | * ssh默认端口 18 | */ 19 | public static final int SSH_PORT = 22; 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/bean/vo/alarm/AlarmInfo.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.bean.vo.alarm; 2 | 3 | import java.io.Serializable; 4 | import java.util.Date; 5 | 6 | /** 7 | * 8 | * Description: 报警信息vo 9 | * All Rights Reserved. 10 | * Created on 2016-12-7 下午3:41:56 11 | */ 12 | public class AlarmInfo implements Serializable{ 13 | 14 | private static final long serialVersionUID = -6089475876291402158L; 15 | 16 | /** 17 | * 对象创建时间 18 | */ 19 | private Date createTime = new Date(); 20 | 21 | public Date getCreateTime() { 22 | return createTime; 23 | } 24 | 25 | public void setCreateTime(Date createTime) { 26 | this.createTime = createTime; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/bean/vo/alarm/AlarmResult.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.bean.vo.alarm; 2 | 3 | import java.io.Serializable; 4 | 5 | /** 6 | * 7 | * Created by wangjiulin on 2018/2/1. 8 | */ 9 | public class AlarmResult implements Serializable { 10 | 11 | private static final long serialVersionUID = 3602599473787601610L; 12 | 13 | private Double result; 14 | 15 | public Double getResult() { 16 | return result; 17 | } 18 | 19 | public void setResult(Double result) { 20 | this.result = result; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/bean/vo/datasource/TableColAndTyInfo.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.bean.vo.datasource; 2 | 3 | /** 4 | * 5 | * Created by wangjiulin on 2018/3/8. 6 | */ 7 | public class TableColAndTyInfo { 8 | 9 | private String columnName; 10 | 11 | private String columnType; 12 | 13 | public String getColumnName() { 14 | return columnName; 15 | } 16 | 17 | public void setColumnName(String columnName) { 18 | this.columnName = columnName; 19 | } 20 | 21 | public String getColumnType() { 22 | return columnType; 23 | } 24 | 25 | public void setColumnType(String columnType) { 26 | this.columnType = columnType; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/bean/vo/stat/NodeCommandStatInfo.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.bean.vo.stat; 2 | 3 | 4 | import java.io.Serializable; 5 | 6 | 7 | /** 8 | * 9 | * Description: 节点纬度命令统计信息 10 | * All Rights Reserved. 11 | * Created on 2016-10-25 下午2:59:15 12 | */ 13 | public class NodeCommandStatInfo extends CommandStatInfo implements Serializable { 14 | 15 | /** 16 | * 17 | */ 18 | private static final long serialVersionUID = -245333980769435122L; 19 | 20 | /** 21 | * 所属结点ip 22 | */ 23 | private String nodeHost; 24 | 25 | public String getNodeHost() { 26 | return nodeHost; 27 | } 28 | 29 | public void setNodeHost(String nodeHost) { 30 | this.nodeHost = nodeHost; 31 | } 32 | 33 | 34 | 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/ibatis/EserIbatisDaoImpl.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.ibatis; 2 | 3 | import com.ibatis.sqlmap.client.SqlMapClient; 4 | 5 | import javax.annotation.Resource; 6 | import javax.sql.DataSource; 7 | 8 | /** 9 | * 10 | * Created by wangjiulin on 2017/10/23. 11 | */ 12 | public class EserIbatisDaoImpl extends IbatisDaoImpl { 13 | 14 | public EserIbatisDaoImpl() { 15 | super(false); 16 | } 17 | 18 | @Resource(name = "dataSourceCarMysql") 19 | public void dataSourceCarMysql(DataSource dataSource) { 20 | this.setDataSource(dataSource); 21 | } 22 | 23 | @Resource(name = "sqlMapClientCarMysql") 24 | public void setSqlMapClientCarMysql(SqlMapClient sqlMapClient) { 25 | this.setSqlMapClient(sqlMapClient); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/jest/common/EsCloudVoEnum.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.jest.common; 2 | 3 | 4 | 5 | public class EsCloudVoEnum { 6 | /** 7 | * 8 | * Description: 角色枚举 9 | * All Rights Reserved. 10 | * Created on 2016-9-18 上午11:25:46 11 | */ 12 | public static enum RoleEnum { 13 | MONITOR, 14 | ADMIN, 15 | GUEST, 16 | } 17 | 18 | /** 19 | * 20 | * Description: 产品线枚举 21 | * All Rights Reserved. 22 | * Created on 2016-9-19 上午11:52:56 23 | */ 24 | public static enum ProductLineEnum { 25 | LOG("log"); 26 | 27 | private String name; 28 | 29 | ProductLineEnum(String name) { 30 | this.name = name; 31 | } 32 | 33 | public String getName() { 34 | return name; 35 | } 36 | 37 | public void setName(String name) { 38 | this.name = name; 39 | } 40 | 41 | } 42 | 43 | } 44 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/jest/common/LocalResultAbstractAction.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.jest.common; 2 | 3 | import com.google.gson.Gson; 4 | import io.searchbox.client.JestResult; 5 | 6 | /** 7 | * 8 | * Created by wangjiulin on 2017/10/31. 9 | */ 10 | public abstract class LocalResultAbstractAction extends AbstractLocalHttpAction { 11 | 12 | public LocalResultAbstractAction(Builder builder) { 13 | super(builder); 14 | } 15 | 16 | public JestResult createNewElasticSearchResult(String responseBody, int statusCode, String reasonPhrase, Gson gson) { 17 | return this.createNewElasticSearchResult(new JestResult(gson), responseBody, statusCode, reasonPhrase, gson); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/jest/common/Match.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.jest.common; 2 | 3 | import java.util.regex.Matcher; 4 | import java.util.regex.Pattern; 5 | 6 | /** 7 | * 8 | * Created by wangjiulin on 2017/10/30. 9 | */ 10 | public class Match { 11 | 12 | public static String nodeStatsMatch(String str){ 13 | Pattern p = Pattern.compile("[/][_]nodes[/]([\\w\\W]*)[/]stats[?]human"); 14 | Matcher m = p.matcher(str); 15 | while (m.find()) { 16 | return m.group(1); 17 | } 18 | return null; 19 | } 20 | 21 | public static String clusterMatch(String str){ 22 | Pattern p = Pattern.compile("[/][_]cluster[/]state[/]metadata[/]([\\w\\W]*)[?]human"); 23 | Matcher m = p.matcher(str); 24 | while (m.find()) { 25 | return m.group(1); 26 | } 27 | return null; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/jest/vo/ClusterVo.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.jest.vo; 2 | 3 | import java.io.Serializable; 4 | 5 | /** 6 | * cluster 集群vo 7 | *
Created on 2016-6-25 下午5:42:10 8 | * @since 4.1 9 | */ 10 | public class ClusterVo extends VoItf implements Serializable { 11 | 12 | private String messageType ; 13 | 14 | public ClusterVo() {} 15 | 16 | public ClusterVo(String clusterName) { 17 | super.clusterName = clusterName; 18 | } 19 | 20 | public String getMessageType() { 21 | return messageType; 22 | } 23 | 24 | public void setMessageType(String messageType) { 25 | this.messageType = messageType; 26 | } 27 | 28 | @Override 29 | public String getUrl() { 30 | 31 | return "http://"+host + "/" + messageType; 32 | } 33 | 34 | 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/jest/vo/RequestVO.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.jest.vo; 2 | 3 | public class RequestVO extends VoItf{ 4 | private String path; 5 | 6 | public RequestVO(String path) { 7 | this.path = path; 8 | } 9 | 10 | @Override 11 | public String getUrl() { 12 | return "http://" + host+path; 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/jest/vo/dsl/FieldNode.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.jest.vo.dsl; 2 | 3 | import com.ucar.eser.core.jest.common.EsVoEnum; 4 | 5 | /** 6 | * 7 | * Description:创建域结点 8 | * All Rights Reserved. 9 | * Created on 2016-6-29 下午12:11:04 10 | */ 11 | public class FieldNode extends Node { 12 | 13 | /** 14 | * 15 | */ 16 | private static final long serialVersionUID = 3634169758351555211L; 17 | 18 | public FieldNode() {} 19 | 20 | public FieldNode (String fieldName) { 21 | super.setNodeName(fieldName); 22 | } 23 | 24 | public FieldNode addField(EsVoEnum.DSLFieldKeyEnum fieldKeyEnum, Object value) { 25 | this.put(fieldKeyEnum.getName(), value); 26 | return this; 27 | } 28 | 29 | public FieldNode addField(String fieldKey, Object value) { 30 | this.put(fieldKey, value); 31 | return this; 32 | } 33 | 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/BalanceUtil.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util; 2 | 3 | 4 | import com.ucar.eser.core.jest.vo.EsClusterDetail; 5 | 6 | import java.util.List; 7 | import java.util.Random; 8 | 9 | public class BalanceUtil { 10 | /** 11 | * 使用“随机”的负载算法,生成URL 12 | * @return 13 | */ 14 | public static String getRandomHost(EsClusterDetail mc){ 15 | 16 | List list = mc.getUrls(); 17 | if(list.size() > 0){ 18 | Random random = new Random(); 19 | int size = random.nextInt(list.size()); 20 | return list.get(size); 21 | } 22 | 23 | return null ; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/JsonUtil.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util; 2 | 3 | import com.alibaba.fastjson.JSONObject; 4 | 5 | public class JsonUtil { 6 | 7 | public static Object getValueByPath(JSONObject obj, String path) { 8 | 9 | String[] keys = path.split("/"); 10 | Object tem = obj; 11 | 12 | for(String key : keys) { 13 | 14 | if(tem instanceof JSONObject) { 15 | tem = ((JSONObject)tem).get(key); 16 | }else{ 17 | return null; 18 | } 19 | 20 | } 21 | 22 | return tem; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/async/AsyncService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util.async; 2 | 3 | import java.util.concurrent.Callable; 4 | import java.util.concurrent.ConcurrentMap; 5 | import java.util.concurrent.Future; 6 | 7 | /** 8 | * 异步服务类 9 | * Created by wangzhen on 15-10-22. 10 | */ 11 | public interface AsyncService { 12 | 13 | /** 14 | * 提交任务 15 | * 16 | * @param callable callable 17 | * @return 返回是否提交成功 18 | */ 19 | boolean submitFuture(KeyCallable callable); 20 | 21 | /** 22 | * @return futureMap 23 | */ 24 | ConcurrentMap> getFutureMap(); 25 | 26 | /** 27 | * 提交任务 28 | * 29 | * @param callable callable 30 | * @return 返回是否提交成功 31 | */ 32 | Future submitFuture(Callable callable); 33 | 34 | } 35 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/common/RequestMap.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util.common; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | public class RequestMap { 7 | 8 | private static Map map; 9 | static{ 10 | map = new HashMap(); 11 | map.put("/escloud/indexmsg/addNewType", "添加类型"); 12 | map.put("/escloud/indexmsg/addNewCols", "添加字段"); 13 | map.put("/escloud/indexmsg/settingIndex", "修改设置"); 14 | map.put("/escloud/query/proxy", "查询"); 15 | map.put("/escloud/indexmsg/addNewIndex", "创建索引"); 16 | map.put("/escloud/indexmsg/getIndexList", "拉取集群索引"); 17 | map.put("/escloud/rest/proxy", "客户端工具"); 18 | map.put("/escloud/indexmsg/delIndex", "删除索引"); 19 | map.put("/escloud/indexmsg/importIndex", "导入至本地集群"); 20 | } 21 | 22 | public static Map getMap(){ 23 | return map; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/exception/BusinessRuntimeException.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util.exception; 2 | 3 | public class BusinessRuntimeException extends RuntimeException { 4 | private static final long serialVersionUID = -7464087034363911027L; 5 | 6 | public BusinessRuntimeException() { 7 | } 8 | 9 | public BusinessRuntimeException(String message) { 10 | super(message); 11 | } 12 | 13 | public BusinessRuntimeException(String message, Throwable cause) { 14 | super(message, cause); 15 | } 16 | 17 | public BusinessRuntimeException(Throwable cause) { 18 | super(cause); 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/exception/ElasticAuthException.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util.exception; 2 | 3 | public class ElasticAuthException extends RuntimeException { 4 | 5 | 6 | private static final long serialVersionUID = -5781507163935151142L; 7 | 8 | public ElasticAuthException(String message){ 9 | super(message); 10 | } 11 | 12 | public ElasticAuthException(String message, Throwable e){ 13 | super(message,e); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/exception/ElasticSearchException.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util.exception; 2 | 3 | public class ElasticSearchException extends RuntimeException { 4 | 5 | private static final long serialVersionUID = 5912482647742431672L; 6 | 7 | public ElasticSearchException(String message){ 8 | super(message); 9 | } 10 | 11 | public ElasticSearchException(String message, Throwable e){ 12 | super(message,e); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/exception/FrameworkRuntimeException.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util.exception; 2 | 3 | /** 4 | * Description: 5 | * All Rights Reserved. 6 | */ 7 | public class FrameworkRuntimeException extends RuntimeException { 8 | 9 | /** 10 | * 11 | */ 12 | private static final long serialVersionUID = -1087812001354327291L; 13 | 14 | public FrameworkRuntimeException(){ 15 | super(); 16 | } 17 | 18 | public FrameworkRuntimeException(String message){ 19 | super(message); 20 | } 21 | 22 | public FrameworkRuntimeException(String message, Throwable cause) { 23 | super(message, cause); 24 | } 25 | 26 | public FrameworkRuntimeException(Throwable cause) { 27 | super(cause); 28 | } 29 | 30 | } -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/exception/IllegalParamException.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util.exception; 2 | 3 | public class IllegalParamException extends Exception { 4 | private static final long serialVersionUID = -5365630128856068164L; 5 | 6 | public IllegalParamException() { 7 | } 8 | 9 | public IllegalParamException(String message) { 10 | super(message); 11 | } 12 | 13 | public IllegalParamException(String message, Throwable cause) { 14 | super(message, cause); 15 | } 16 | 17 | public IllegalParamException(Throwable cause) { 18 | super(cause); 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/exception/SSHException.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util.exception; 2 | 3 | public class SSHException extends Exception { 4 | private static final long serialVersionUID = -5365630128856068164L; 5 | 6 | public SSHException() { 7 | } 8 | 9 | public SSHException(String message) { 10 | super(message); 11 | } 12 | 13 | public SSHException(String message, Throwable cause) { 14 | super(message, cause); 15 | } 16 | 17 | public SSHException(Throwable cause) { 18 | super(cause); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/core/util/message/MailAuthenticator.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.core.util.message; 2 | 3 | 4 | import javax.mail.Authenticator; 5 | import javax.mail.PasswordAuthentication; 6 | 7 | /** 8 | * 9 | * Created by wangjiulin on 2017/11/9. 10 | */ 11 | public class MailAuthenticator extends Authenticator { 12 | /** 用户账号 */ 13 | private String userName; 14 | /** 用户口令 */ 15 | private String password; 16 | 17 | public MailAuthenticator(String userName, String password) { 18 | this.userName = userName; 19 | this.password = password; 20 | } 21 | 22 | protected PasswordAuthentication getPasswordAuthentication() { 23 | return new PasswordAuthentication(userName, password); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/front/dao/monitor/MonitorDao.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.front.dao.monitor; 2 | 3 | import com.ucar.eser.core.bean.vo.stat.*; 4 | 5 | import java.util.List; 6 | import java.util.Map; 7 | 8 | /** 9 | * Created by wangjiulin on 2018/1/23. 10 | */ 11 | public interface MonitorDao { 12 | 13 | List getOsMonitorInfo(Map paramMap); 14 | 15 | List getJvmMonitorInfo(Map paramMap); 16 | 17 | List getGcMointorInfo(Map paramMap); 18 | 19 | List getIndicesMonitorInfo(Map paramMap); 20 | 21 | List getThreadPoolMonitorInfo(Map paramMap); 22 | 23 | List getTransportMonitorInfo(Map paramMap); 24 | 25 | List getHttpMonitorInfo(Map paramMap); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/front/service/export/ExportOrDeleteDocService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.front.service.export; 2 | 3 | import javax.servlet.http.HttpServletRequest; 4 | 5 | /** 6 | * @author forest 7 | * @create 2017-05-26 13:50 8 | */ 9 | public interface ExportOrDeleteDocService { 10 | 11 | public void queryAndDelete(String clusterName, String indexName, Integer maxNum, 12 | String conds,HttpServletRequest request) throws Exception; 13 | 14 | public String getAllScrollInfo(); 15 | 16 | public boolean terminate(String taskId); 17 | 18 | public void refreshTaskList(); 19 | } -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/front/service/monitor/MonitorService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.front.service.monitor; 2 | 3 | import java.util.Map; 4 | 5 | /** 6 | * Created by wangjiulin on 2018/1/23. 7 | */ 8 | public interface MonitorService { 9 | 10 | Map getMointorInfos(String clusterName, String dataType, String host, String startTime, String endTime, Integer timeInterval); 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/ucar/eser/front/service/query/QueryPageService.java: -------------------------------------------------------------------------------- 1 | package com.ucar.eser.front.service.query; 2 | 3 | import java.util.Map; 4 | 5 | 6 | /** 7 | * 8 | * Description: 9 | * All Rights Reserved. 10 | * Created on 2016-10-21 下午2:19:30 11 | */ 12 | public interface QueryPageService { 13 | 14 | Map query(String clusterName, String indexName, Integer maxNum, String conds) throws Exception; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/main/resources/com/ucar/eser/spring/sqlMapConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/main/resources/com/ucar/eser/sql/influxdbandmysql/t_es_fs_log_sql.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | insert into es_fs_log ( 10 | cluster_id 11 | ,create_time 12 | ,host 13 | ,total_in_bytes 14 | ,free_in_bytes 15 | ,available_in_bytes 16 | ) VALUES ( 17 | #clusterId# 18 | ,#createTime# 19 | ,#host# 20 | ,#totalInBytes# 21 | ,#freeInBytes# 22 | ,#availableInBytes# 23 | ) 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/main/resources/com/ucar/eser/sql/influxdbandmysql/t_es_http_log_sql.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | insert into es_http_log ( 12 | cluster_id 13 | ,create_time 14 | ,current_open 15 | ,host 16 | ,total_opened 17 | ) VALUES ( 18 | #clusterId# 19 | ,#createTime# 20 | ,#current_open# 21 | ,#host# 22 | ,#total_opened# 23 | ) 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/main/resources/com/ucar/eser/sql/stat/t_delete_stat_sql.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | delete from $tableName$ where 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/config.properties: -------------------------------------------------------------------------------- 1 | envType= ${env_type} -------------------------------------------------------------------------------- /src/main/resources/influxdb.properties: -------------------------------------------------------------------------------- 1 | FLAG = ${influxdb.flag} 2 | HOST_PORT = ${influxdb.hostport} 3 | USER_NAME = ${influxdb.username} 4 | PWD = ${influxdb.pwd} 5 | DATABASE=${influxdb.database} -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=${log4j.logLevel},debug,stdout,E 2 | 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.Target=System.out 5 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 6 | log4j.appender.stdout.layout.ConversionPattern=[%-5p] %d{yyyy-MM-dd HH:mm:ss,SSS} method:%l%n%m%n 7 | 8 | log4j.appender.E=org.apache.log4j.DailyRollingFileAppender 9 | log4j.appender.E.File=${log4j.file.path} 10 | log4j.appender.E.DatePattern='_'yyyy-MM-dd'.log' 11 | log4j.appender.E.Append=true 12 | log4j.appender.E.Threshold=ERROR 13 | log4j.appender.E.layout=org.apache.log4j.PatternLayout 14 | log4j.appender.E.layout.ConversionPattern=%-d{yyyy-MM-dd HH:mm:ss} [ %t:%r ] - [ %p ] %m%n 15 | log4j.appender.E.file.layout=org.apache.log4j.PatternLayout 16 | log4j.appender.E.file.layout.ConversionPattern=[%-5p] %d{yyyy-MM-dd HH:mm:ss,SSS} method:%l%n%m%n 17 | -------------------------------------------------------------------------------- /src/main/resources/mail.properties: -------------------------------------------------------------------------------- 1 | mail.smtp.host= 2 | mail.smtp.port= 3 | mail.smtp.auth=true 4 | mail.transport.protocol=smtp 5 | mail.user= 6 | mail.password= 7 | mail.nick= -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/wro.properties: -------------------------------------------------------------------------------- 1 | debug=true 2 | disableCache=true 3 | ignoreMissingResources=false 4 | ignoreFailingProcessor=true 5 | jmxEnabled=true 6 | preProcessors= 7 | #指定css、js压缩使用的处理器,详细https://code.google.com/p/wro4j/wiki/AvailableProcessors 8 | #postProcessors=yuiCssMin,googleClosureSimple -------------------------------------------------------------------------------- /src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/favicon.png -------------------------------------------------------------------------------- /src/main/webapp/healthCheck.jsp: -------------------------------------------------------------------------------- 1 | node health check success! 2 | -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html; charset=UTF-8" language="java" errorPage="" %> 2 | 3 | 4 | 5 | 欢迎进入 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/webapp/jsp/common/taglibs.jsp: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | -------------------------------------------------------------------------------- /src/main/webapp/jsp/customtoken/token.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html; charset=UTF-8" language="java" pageEncoding="UTF-8"%> 2 | ${tokens} -------------------------------------------------------------------------------- /src/main/webapp/jsp/index/foot.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html; charset=UTF-8" language="java" pageEncoding="UTF-8"%> 2 |

13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/webapp/noAuthority.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language ="java" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" session="false" %> 2 | 3 | 4 | 您没有权限访问该页面 5 | 6 | 7 | 8 | 9 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 |
抱歉,非法操作……
21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/css/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/css/chosen-sprite.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/css/fonts.googleapis.com.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Open Sans'; 3 | font-style: normal; 4 | font-weight: 300; 5 | src: local('Open Sans Light'), local('OpenSans-Light'), url(http://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff) format('woff'); 6 | } 7 | @font-face { 8 | font-family: 'Open Sans'; 9 | font-style: normal; 10 | font-weight: 400; 11 | src: local('Open Sans'), local('OpenSans'), url(http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format('woff'); 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/css/prettify.min.css: -------------------------------------------------------------------------------- 1 | .com{color:#93a1a1}.lit{color:#195f91}.clo,.opn,.pun{color:#93a1a1}.fun{color:#dc322f}.atv,.str{color:#D14}.kwd,.prettyprint .tag{color:#1e347b}.atn,.dec,.typ,.var{color:teal}.pln{color:#48484c}.prettyprint{padding:8px;background-color:#f7f7f9;border:1px solid #e1e1e8}.prettyprint.linenums{-webkit-box-shadow:inset 40px 0 0 #fbfbfc,inset 41px 0 0 #ececf0;box-shadow:inset 40px 0 0 #fbfbfc,inset 41px 0 0 #ececf0}ol.linenums{margin:0 0 0 33px}ol.linenums li{padding-left:12px;color:#bebec5;line-height:20px;text-shadow:0 1px 0 #fff} -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/font-awesome/4.5.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/font-awesome/4.5.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/font-awesome/4.5.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/font-awesome/4.5.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/font-awesome/4.5.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/font-awesome/4.5.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/font-awesome/4.5.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/font-awesome/4.5.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/avatars/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/avatars/avatar.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/avatars/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/avatars/avatar1.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/avatars/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/avatars/avatar2.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/avatars/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/avatars/avatar3.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/avatars/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/avatars/avatar4.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/avatars/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/avatars/avatar5.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/avatars/profile-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/avatars/profile-pic.jpg -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/avatars/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/avatars/user.jpg -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/email/email1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/email/email1.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/email/email2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/email/email2.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/email/email3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/email/email3.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/email/email4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/email/email4.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/gallery/thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/gallery/thumb-1.jpg -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/gallery/thumb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/gallery/thumb-2.jpg -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/gallery/thumb-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/gallery/thumb-3.jpg -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/gallery/thumb-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/gallery/thumb-4.jpg -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/gallery/thumb-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/gallery/thumb-5.jpg -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/gallery/thumb-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/gallery/thumb-6.jpg -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/login/login1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/login/login1.jpg -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/placeholder/165x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/placeholder/165x90.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/placeholder/255x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/placeholder/255x150.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/placeholder/530x270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/placeholder/530x270.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/images/placeholder/550x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/images/placeholder/550x280.png -------------------------------------------------------------------------------- /src/main/webapp/pageFrame/swf/flashExport.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/pageFrame/swf/flashExport.swf -------------------------------------------------------------------------------- /src/main/webapp/resources/bigdesk/css/CssGrid_2/License.txt: -------------------------------------------------------------------------------- 1 | http://cssgrid.net/ 2 | 3 | License: 4 | http://creativecommons.org/licenses/by/3.0/au/ -------------------------------------------------------------------------------- /src/main/webapp/resources/bigdesk/css/CssGrid_2/ie.css: -------------------------------------------------------------------------------- 1 | .onecol { 2 | width: 4.7%; 3 | } 4 | 5 | .twocol { 6 | width: 13.2%; 7 | } 8 | 9 | .threecol { 10 | width: 22.05%; 11 | } 12 | 13 | .fourcol { 14 | width: 30.6%; 15 | } 16 | 17 | .fivecol { 18 | width: 39%; 19 | } 20 | 21 | .sixcol { 22 | width: 48%; 23 | } 24 | 25 | .sevencol { 26 | width: 56.75%; 27 | } 28 | 29 | .eightcol { 30 | width: 61.6%; 31 | } 32 | 33 | .ninecol { 34 | width: 74.05%; 35 | } 36 | 37 | .tencol { 38 | width: 82%; 39 | } 40 | 41 | .elevencol { 42 | width: 91.35%; 43 | } -------------------------------------------------------------------------------- /src/main/webapp/resources/bigdesk/images/award_star_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/bigdesk/images/award_star_gold.png -------------------------------------------------------------------------------- /src/main/webapp/resources/bigdesk/images/es-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/bigdesk/images/es-logo.png -------------------------------------------------------------------------------- /src/main/webapp/resources/bigdesk/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/bigdesk/images/favicon.png -------------------------------------------------------------------------------- /src/main/webapp/resources/bigdesk/js/charts/not-available/not-available-chart.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2011-2012 Lukas Vlcek 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | .na_chart_box { 18 | fill: #ddd; 19 | /*stroke: #aaa;*/ 20 | stroke: none; 21 | } 22 | 23 | .na_chart_text { 24 | fill: #888; 25 | } 26 | -------------------------------------------------------------------------------- /src/main/webapp/resources/bigdesk/js/lib/css3-mediaqueries/License.txt: -------------------------------------------------------------------------------- 1 | http://code.google.com/p/css3-mediaqueries-js/ 2 | 3 | css3-mediaqueries.js by Wouter van der Graaf is a JavaScript library to make IE 5+, 4 | Firefox 1+ and Safari 2 transparently parse, test and apply CSS3 Media Queries. 5 | Firefox 3.5+, Opera 7+, Safari 3+ and Chrome already offer native support. 6 | 7 | License: MIT License 8 | http://www.opensource.org/licenses/mit-license.php -------------------------------------------------------------------------------- /src/main/webapp/resources/bigdesk/js/lib/tinysort/License.txt: -------------------------------------------------------------------------------- 1 | http://tinysort.sjeiti.com/ 2 | 3 | License: 4 | http://code.google.com/p/tinysort/ 5 | MIT -------------------------------------------------------------------------------- /src/main/webapp/resources/bigdesk/js/models/Hello.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2011-2014 Lukas Vlcek 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | // the only REST API that gives ES node version 18 | 19 | var Hello = Backbone.Model.extend({ 20 | url: function() { return '/'; } 21 | }); 22 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/css/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/css/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/css/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/css/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/css/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | transform: translate(0, 0); // ensures no half-pixel rendering in firefox 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | transform: translate(0, 0); // ensures no half-pixel rendering in firefox 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/html/modals/confirm_dialog2.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/html/modals/modal_info.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/html/modals/modal_info2.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/html/partials/analysis/analysis_token.html: -------------------------------------------------------------------------------- 1 |
2 | {{token.token}} 3 |
4 |
5 | pos: {{token.position}} start: {{token.start_offset}} end: {{token.end_offset}} 6 |
-------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/html/partials/cluster_overview/index_unassigned.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | {{shard.shard}} 4 | 5 |
-------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/html/partials/debug.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 6 | {{visible ? 'hide' : 'show'}} log 7 | 8 |
9 | {{msg}} 10 |
11 |
-------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/html/partials/directives/pagination.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | {{page.first | number:0}}-{{page.last | number:0}} of {{page.total | number:0}} {{label || ''}} 16 | 17 |
-------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/html/partials/main_alerts.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 |   7 | 8 | {{a.message}} 9 | 10 | {{a.message}} 11 |
12 |
{{a.getResponse()}}
13 |
14 |
15 |
-------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/html/partials/stats.html: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 | 13 |
14 |
15 | 16 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/imgs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/imgs/favicon.png -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/imgs/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/kopf/imgs/more.png -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/js/controllers/alerts.js: -------------------------------------------------------------------------------- 1 | kopf.controller('AlertsController', ['$scope', 'AlertService', 2 | function($scope, AlertService) { 3 | 4 | $scope.alerts = []; 5 | 6 | $scope.$watch( 7 | function() { 8 | return AlertService.alerts; 9 | }, 10 | function(newValue, oldValue) { 11 | $scope.alerts = AlertService.alerts; 12 | } 13 | ); 14 | 15 | $scope.remove = function(id) { 16 | AlertService.remove(id); 17 | }; 18 | 19 | } 20 | 21 | ]); 22 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/js/controllers/confirm_dialog.js: -------------------------------------------------------------------------------- 1 | kopf.controller('ConfirmDialogController', ['$scope', 'ConfirmDialogService', 2 | function ($scope, ConfirmDialogService) { 3 | 4 | $scope.dialog_service = ConfirmDialogService; 5 | 6 | $scope.close = function () { 7 | $scope.dialog_service.close(); 8 | }; 9 | 10 | $scope.confirm = function () { 11 | $scope.dialog_service.confirm(); 12 | }; 13 | 14 | } 15 | ]); 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/js/directives/directives.js: -------------------------------------------------------------------------------- 1 | kopf.directive('hello', function ($timeout) { 2 | //return { 3 | // restrict: 'A', 4 | // link: function ($scope,$element,$attrs) { 5 | // //alert("wo"); 6 | // debugger; 7 | // console.log($element); 8 | // //if ($scope.$last === true) { 9 | // // $timeout(function () { 10 | // // $scope.$emit('ngRepeatFinished'); 11 | // // }); 12 | // //} 13 | // //console.log("555===>>>"+document.getElementById("picturePlacenode1")); 14 | // 15 | // }, 16 | // template:'

wo

' 17 | //} 18 | return function(scope,element,attrs) { 19 | if (scope.$last === true) { 20 | $timeout(function () { 21 | scope.$emit('ngRepeatFinished'); 22 | }); 23 | }; 24 | }; 25 | }); 26 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/js/directives/static_include.js: -------------------------------------------------------------------------------- 1 | kopf.directive('ngStaticInclude', function () { 2 | return { 3 | templateUrl: function (elem, attr) { 4 | return './resources/kopf/html/partials/' + attr.file + '.html'; 5 | } 6 | }; 7 | }); 8 | 9 | -------------------------------------------------------------------------------- /src/main/webapp/resources/kopf/js/services/app_state.js: -------------------------------------------------------------------------------- 1 | kopf.factory('AppState', function () { 2 | 3 | this.properties = {}; 4 | this.setProperty = function (controller, property,val){ 5 | this.getProperty(controller, property,val); 6 | this.properties[controller][property] = val; 7 | }; 8 | this.getProperty = function (controller, property, defaultValue) { 9 | if (this.properties[controller] === undefined) { 10 | this.properties[controller] = {}; 11 | } 12 | if (this.properties[controller][property] === undefined) { 13 | this.properties[controller][property] = defaultValue; 14 | } 15 | return this.properties[controller][property]; 16 | }; 17 | 18 | return this; 19 | 20 | }); 21 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/globalization/ReadMe.txt: -------------------------------------------------------------------------------- 1 | Download more cultures from: http://jqwidgets.com/builds/cultures.zip 2 | License: https://github.com/jquery/globalize/blob/master/LICENSE 3 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/globalization/globalize.culture.en-US.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Globalize Culture en-US 3 | * 4 | * http://github.com/jquery/globalize 5 | * 6 | * Copyright Software Freedom Conservancy, Inc. 7 | * Dual licensed under the MIT or GPL Version 2 licenses. 8 | * http://jquery.org/license 9 | * 10 | * This file was generated by the Globalize Culture Generator 11 | * Translation: bugs found in this file need to be fixed in the generator 12 | */ 13 | 14 | (function( window, undefined ) { 15 | 16 | var Globalize; 17 | 18 | if ( typeof require !== "undefined" && 19 | typeof exports !== "undefined" && 20 | typeof module !== "undefined" ) { 21 | // Assume CommonJS 22 | Globalize = require( "globalize" ); 23 | } else { 24 | // Global variable 25 | Globalize = window.Globalize; 26 | } 27 | 28 | Globalize.addCultureInfo( "en-US", "default", { 29 | name: "en-US", 30 | englishName: "English (United States)" 31 | }); 32 | 33 | }( this )); 34 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/backImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/backImage.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/backgroundTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/backgroundTop.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_black.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_black_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_black_horizontal.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blackhover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blackhover.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blackhover_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blackhover_horizontal.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blackpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blackpressed.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blackpressed_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blackpressed_horizontal.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blueenergy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_blueenergy.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_darkblue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_darkbluehover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_darkbluehover.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_darkbluepressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/bg_darkbluepressed.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/black_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/black_gradient.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/blackbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/blackbackground.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_black.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_blue_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_blue_indeterminate.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_disabled.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_indeterminate_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_indeterminate_black.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_indeterminate_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_indeterminate_disabled.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_indeterminate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_indeterminate_white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_lightblue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_lightblue_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_lightblue_indeterminate.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/check_white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/close.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/close_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/close_black.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/close_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/close_blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/close_white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The images in this folder are referenced by the jqx.base.css and are used by the jqxColorPicker widget. 2 | 3 | The images are downloaded from http://johndyer.name and are MIT Licensed. 4 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/bar-hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/bar-hue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/bar-saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/bar-saturation.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/map-hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/map-hue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/map-saturation-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/map-saturation-overlay.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/map-saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/colorpicker/map-saturation.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/common.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/crosshair-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/crosshair-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/crosshair.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The images in this folder are referenced by the following themes: jqx.ui-lightness.css, jqx.ui-darkness.css, jqx.ui-le-frog.css, jqx.ui-overcast.css, jqx-ui-redmond.css, jqx-ui-smoothness.css, jqx-ui-start.css and jqx-ui-sunny.css. 2 | 3 | The images are downloaded from http://jqueryui.com and are MIT Licensed. 4 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkness/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkred_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/darkred_gradient.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/drag.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/dragcancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/dragcancel.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/error.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/filter.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/html_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/html_editor.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/html_editor_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/html_editor_white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-calendar-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-calendar-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-calendar.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-cancel-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-cancel-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-cancel.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-delete-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-delete-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-delete.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-down-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-down-blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-down-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-down-transparent.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-down-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-down-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-down.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-edit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-edit-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-edit.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-first-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-first-blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-first-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-first-transparent.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-first-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-first-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-first.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-last-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-last-blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-last-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-last-transparent.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-last-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-last-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-last.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-left-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-left-blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-left-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-left-transparent.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-left-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-left-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-left.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-menu-minimized-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-menu-minimized-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-menu-minimized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-menu-minimized.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-plus-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-plus.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-recurrence-exception-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-recurrence-exception-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-recurrence-exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-recurrence-exception.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-recurrence-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-recurrence-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-recurrence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-recurrence.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-right-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-right-blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-right-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-right-transparent.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-right-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-right-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-right.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-save-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-save-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-save.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-showpassword-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-showpassword-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-showpassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-showpassword.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-time-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-time-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-time.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-up-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-up-blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-up-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-up-transparent.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-up-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-up-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/icon-up.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/info.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The images in this folder are referenced by the following themes: jqx.ui-lightness.css, jqx.ui-darkness.css, jqx.ui-le-frog.css, jqx.ui-overcast.css, jqx-ui-redmond.css, jqx-ui-smoothness.css, jqx-ui-start.css and jqx-ui-sunny.css. 2 | 3 | The images are downloaded from http://jqueryui.com and are MIT Licensed. 4 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_diagonals-small_0_aaaaaa_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_diagonals-small_0_aaaaaa_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_diagonals-thick_15_444444_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_diagonals-thick_15_444444_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_diagonals-thick_95_ffdc2e_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_diagonals-thick_95_ffdc2e_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_glass_55_fbf5d0_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_glass_55_fbf5d0_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_highlight-hard_30_285c00_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_highlight-hard_30_285c00_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_highlight-soft_33_3a8104_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_highlight-soft_33_3a8104_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_highlight-soft_50_4eb305_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_highlight-soft_50_4eb305_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_highlight-soft_60_4ca20b_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_highlight-soft_60_4ca20b_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_inset-soft_10_285c00_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-bg_inset-soft_10_285c00_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-icons_4eb305_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-icons_4eb305_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-icons_72b42d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-icons_72b42d_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/le-frog/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The images in this folder are referenced by the following themes: jqx.ui-lightness.css, jqx.ui-darkness.css, jqx.ui-le-frog.css, jqx.ui-overcast.css, jqx-ui-redmond.css, jqx-ui-smoothness.css, jqx-ui-start.css and jqx-ui-sunny.css. 2 | 3 | The images are downloaded from http://jqueryui.com and are MIT Licensed. 4 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/icon-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/icon-first.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/icon-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/icon-last.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/lightness/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/loader-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/loader-small.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/loader.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/mail.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/menubutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/menubutton.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-down-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-down-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-down.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-first-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-first-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-first.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-last-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-last-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-last.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-left-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-left-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-left.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-right - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-right - Copy.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-right-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-right-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-right.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-up-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-up-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/metro-icon-up.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/multi-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/multi-arrow.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-down.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-first.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-last.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-left.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-right.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/office-icon-up.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The images in this folder are referenced by the following themes: jqx.ui-lightness.css, jqx.ui-darkness.css, jqx.ui-le-frog.css, jqx.ui-overcast.css, jqx-ui-redmond.css, jqx-ui-smoothness.css, jqx-ui-start.css and jqx-ui-sunny.css. 2 | 3 | The images are downloaded from http://jqueryui.com and are MIT Licensed. 4 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_flat_55_c0402a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_flat_55_c0402a_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_flat_55_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_flat_55_eeeeee_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_glass_100_f8f8f8_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_glass_100_f8f8f8_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_glass_35_dddddd_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_glass_35_dddddd_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_glass_60_eeeeee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_glass_60_eeeeee_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_inset-hard_75_999999_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_inset-hard_75_999999_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_inset-soft_50_c9c9c9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-bg_inset-soft_50_c9c9c9_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_3383bb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_3383bb_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_70b2e1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_70b2e1_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_999999_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_999999_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_fbc856_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/overcast/ui-icons_fbc856_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-black.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-lightblue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin-yellow.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pin.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-black.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-blue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-lightblue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned-yellow.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pinned.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/plus.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/plus_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/plus_white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/pointer.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/rangebar_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/rangebar_classic.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/rangebar_darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/rangebar_darkblue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/rangebar_shinyblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/rangebar_shinyblack.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/rangebar_summer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/rangebar_summer.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/red_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/red_arrow_down.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/red_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/red_arrow_up.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/red_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/red_gradient.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The images in this folder are referenced by the following themes: jqx.ui-lightness.css, jqx.ui-darkness.css, jqx.ui-le-frog.css, jqx.ui-overcast.css, jqx-ui-redmond.css, jqx-ui-smoothness.css, jqx-ui-start.css and jqx-ui-sunny.css. 2 | 3 | The images are downloaded from http://jqueryui.com and are MIT Licensed. 4 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/icon-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/icon-first.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/icon-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/icon-last.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/redmond/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_check_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_check_black.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_check_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_check_disabled.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_check_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_check_indeterminate.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_check_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_check_white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_classic_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_classic_hover.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_classic_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_classic_normal.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/roundbg_disabled.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/search.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/search_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/search_white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The images in this folder are referenced by the following themes: jqx.ui-lightness.css, jqx.ui-darkness.css, jqx.ui-le-frog.css, jqx.ui-overcast.css, jqx-ui-redmond.css, jqx-ui-smoothness.css, jqx-ui-start.css and jqx-ui-sunny.css. 2 | 3 | The images are downloaded from http://jqueryui.com and are MIT Licensed. 4 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/smoothness/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortasc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortasc.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortascbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortascbutton.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortdesc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortdesc.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortdescbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortdescbutton.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortremove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sortremove.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/star.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/star_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/star_disabled.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/star_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/star_hover.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The images in this folder are referenced by the following themes: jqx.ui-lightness.css, jqx.ui-darkness.css, jqx.ui-le-frog.css, jqx.ui-overcast.css, jqx-ui-redmond.css, jqx-ui-smoothness.css, jqx-ui-start.css and jqx-ui-sunny.css. 2 | 3 | The images are downloaded from http://jqueryui.com and are MIT Licensed. 4 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_flat_55_999999_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_flat_55_999999_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_flat_75_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_flat_75_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_glass_45_0078ae_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_glass_45_0078ae_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_glass_55_f8da4e_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_glass_55_f8da4e_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_glass_75_79c9ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_glass_75_79c9ec_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_gloss-wave_45_e14f1c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_gloss-wave_45_e14f1c_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_gloss-wave_50_6eac2c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_gloss-wave_50_6eac2c_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_gloss-wave_75_2191c0_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_gloss-wave_75_2191c0_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_0078ae_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_0078ae_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_056b93_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_056b93_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_e0fdff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_e0fdff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_f5e175_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_f5e175_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_f7a50d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_f7a50d_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_fcd113_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/start/ui-icons_fcd113_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/stripes.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/success.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The images in this folder are referenced by the following themes: jqx.ui-lightness.css, jqx.ui-darkness.css, jqx.ui-le-frog.css, jqx.ui-overcast.css, jqx-ui-redmond.css, jqx-ui-smoothness.css, jqx-ui-start.css and jqx-ui-sunny.css. 2 | 3 | The images are downloaded from http://jqueryui.com and are MIT Licensed. 4 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_diagonals-medium_20_d34d17_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_diagonals-medium_20_d34d17_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_gloss-wave_45_817865_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_gloss-wave_45_817865_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_gloss-wave_60_fece2f_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_gloss-wave_60_fece2f_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_gloss-wave_70_ffdd57_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_gloss-wave_70_ffdd57_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_gloss-wave_90_fff9e5_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_gloss-wave_90_fff9e5_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_highlight-soft_100_feeebd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_highlight-soft_100_feeebd_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_inset-soft_30_ffffff_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-bg_inset-soft_30_ffffff_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_3d3d3d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_3d3d3d_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_bd7b00_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_bd7b00_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_d19405_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_d19405_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_eb990f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_eb990f_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_ed9f26_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_ed9f26_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_fadc7a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_fadc7a_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_ffe180_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/sunny/ui-icons_ffe180_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/tick.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/time.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/track_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/track_classic.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/track_darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/track_darkblue.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/track_shinyblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/track_shinyblack.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/track_summer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/track_summer.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/warning.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/wp_check_indeterminate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/wp_check_indeterminate_white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/jqwidgets/styles/images/wp_check_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucarGroup/EserKnife/2935f8ddd38526a513f8a38e0defd44c16b9cfbb/src/main/webapp/resources/thirdparty/jqwidgets/styles/images/wp_check_white.png -------------------------------------------------------------------------------- /src/main/webapp/resources/thirdparty/sense/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "stage-2", 5 | "react" 6 | ], 7 | "plugins": [ 8 | "transform-runtime", 9 | "transform-decorators-legacy" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /src/main/webapp/sayHello.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html; charset=UTF-8" language="java" errorPage="" %> 2 | 3 | 4 | 欢迎进入 5 | 6 | 7 | 信息:${msg} 8 | 9 | 10 | 11 | --------------------------------------------------------------------------------