text
stringlengths
24
1.04M
metadata
stringlengths
233
497
### File: spring-boot-jpa/src/main/resources/static/plugin/themes/default/validatebox.css .validatebox-invalid { border-color: #ffa8a8; background-color: #fff3f3; color: #000; }
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-jpa/src/main/resources/static/plugin/themes/default/validatebox.css", "license": "apache-2.0", "s...
### File: spring-boot-jpa/src/main/resources/static/plugin/themes/default/window.css .window { overflow: hidden; padding: 5px; border-width: 1px; border-style: solid; } .window .window-header { background: transparent; padding: 0px 0px 6px 0px; } .window .window-body { border-width: 1px; border-style: s...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-jpa/src/main/resources/static/plugin/themes/default/window.css", "license": "apache-2.0", "size":...
### File: spring-boot-jpa/src/main/resources/static/plugin/themes/icon.css .icon-blank{ background:url('icons/blank.gif') no-repeat center center; } .icon-add{ background:url('icons/edit_add.png') no-repeat center center; } .icon-edit{ background:url('icons/pencil.png') no-repeat center center; } .icon-clear{ backg...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-jpa/src/main/resources/static/plugin/themes/icon.css", "license": "apache-2.0", "size": 3063}
### File: spring-boot-jpa/src/main/webapp/index.jsp <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Index</title> <link rel="stylesheet" type="text/css" href="/plugin/themes/default/easyui.css"> <link rel="stylesheet"...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java Server Pages", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-jpa/src/main/webapp/index.jsp", "license": "apache-2.0", "size": 3697}
### File: spring-boot-mybatis/src/main/java/com/lance/mybatis/SimpleApplication.java package com.lance.mybatis; import java.util.Arrays; import java.util.HashMap; import java.util.Map; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.sp...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-mybatis/src/main/java/com/lance/mybatis/SimpleApplication.java", "license": "apache-2.0", "size"...
### File: spring-boot-mybatis/src/main/java/com/lance/mybatis/domain/UserInfo.java package com.lance.mybatis.domain; import java.io.Serializable; import java.util.Date; import com.alibaba.fastjson.annotation.JSONField; public class UserInfo implements Serializable { private static final long serialVersionUID = 6519...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-mybatis/src/main/java/com/lance/mybatis/domain/UserInfo.java", "license": "apache-2.0", "size": ...
### File: spring-boot-mybatis/src/main/java/com/lance/mybatis/mapper/UserMapper.java package com.lance.mybatis.mapper; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import com.lance.mybatis.domain.UserInfo; @Mapper public interface UserMapper { /...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-mybatis/src/main/java/com/lance/mybatis/mapper/UserMapper.java", "license": "apache-2.0", "size"...
### File: spring-boot-mybatis/src/main/java/com/lance/mybatis/service/UserService.java package com.lance.mybatis.service; import java.util.List; import com.lance.mybatis.domain.UserInfo; public interface UserService { /** * findAll * @return */ List<UserInfo> findAll(); UserInfo findOne(int id); }
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-mybatis/src/main/java/com/lance/mybatis/service/UserService.java", "license": "apache-2.0", "siz...
### File: spring-boot-mybatis/src/main/java/com/lance/mybatis/service/UserServiceImpl.java package com.lance.mybatis.service; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.lance.mybatis.domain.UserInfo; import com.lance...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-mybatis/src/main/java/com/lance/mybatis/service/UserServiceImpl.java", "license": "apache-2.0", ...
### File: spring-boot-mybatis/src/main/java/com/lance/mybatis/web/IndexController.java package com.lance.mybatis.web; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework....
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-mybatis/src/main/java/com/lance/mybatis/web/IndexController.java", "license": "apache-2.0", "siz...
### File: spring-boot-mybatis/src/main/webapp/index.jsp <html> <body> <h2>Hello World!</h2> </body> </html>
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java Server Pages", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-mybatis/src/main/webapp/index.jsp", "license": "apache-2.0", "size": 52}
### File: spring-boot-quartz/src/main/java/com/lance/quartz/SimpleApplication.java package com.lance.quartz; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class SimpleApplication { public static void main(String[...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/SimpleApplication.java", "license": "apache-2.0", "size": ...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/common/config/QuartzConfig.java package com.lance.quartz.common.config; import java.io.IOException; import java.util.Properties; import org.quartz.Scheduler; import org.quartz.SchedulerException; import org.quartz.SchedulerFactory; import org.quartz.impl.Std...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/common/config/QuartzConfig.java", "license": "apache-2.0",...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/common/exception/ServiceException.java package com.lance.quartz.common.exception; /** * 自定义针对service异常 * @author lance * 2015年5月27日 下午5:09:01 */ public class ServiceException extends RuntimeException { private static final long serialVersionUID = 8624944...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/common/exception/ServiceException.java", "license": "apach...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/common/job/Minute2Job.java package com.lance.quartz.common.job; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.quartz.Job; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; public ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/common/job/Minute2Job.java", "license": "apache-2.0", "siz...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/common/job/Minute3Job.java package com.lance.quartz.common.job; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.quartz.Job; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; public ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/common/job/Minute3Job.java", "license": "apache-2.0", "siz...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/common/job/MinuteJob.java package com.lance.quartz.common.job; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.quartz.Job; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; /** * 该...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/common/job/MinuteJob.java", "license": "apache-2.0", "size...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/common/json/ResponseBodyInfo.java package com.lance.quartz.common.json; public class ResponseBodyInfo<T> { // 错误代码 private int errorCode; // 错误提示 private String errorText; // 返回对象 private T data; protected ResponseBodyInfo() { } protected Response...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/common/json/ResponseBodyInfo.java", "license": "apache-2.0...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/common/json/ResultInfo.java package com.lance.quartz.common.json; import com.alibaba.fastjson.JSON; public class ResultInfo { /** * 执行成功 * @return * @author lance * 2015年12月30日 下午11:40:15 */ public synchronized static String success() { r...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/common/json/ResultInfo.java", "license": "apache-2.0", "si...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/domain/TaskInfo.java package com.lance.quartz.domain; import java.io.Serializable; /** * 管理定时任务 * @author Administrator */ public class TaskInfo implements Serializable{ private static final long serialVersionUID = -8054692082716173379L; private int id ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/domain/TaskInfo.java", "license": "apache-2.0", "size": 14...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/service/TaskServiceImpl.java package com.lance.quartz.service; import java.util.ArrayList; import java.util.Date; import java.util.HashSet; import java.util.List; import org.apache.commons.lang3.time.DateFormatUtils; import org.apache.logging.log4j.LogManage...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/service/TaskServiceImpl.java", "license": "apache-2.0", "s...
### File: spring-boot-quartz/src/main/java/com/lance/quartz/web/TaskManageController.java package com.lance.quartz.web; import java.util.HashMap; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.spr...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/java/com/lance/quartz/web/TaskManageController.java", "license": "apache-2.0", "...
### File: spring-boot-quartz/src/main/resources/static/js/task-info.js var TaskInfo = { grid: '#taskinfo-grid', form: '#taskinfoForm', init: function(){ //初始化Grid列表数据 this.initGrid(); }, //添加模块 addTaskInfo: function(){ var d = this.createTaskInfoDialog(); d.dialog({title: "Add Job"}).dialog('open'); ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/js/task-info.js", "license": "apache-2.0", "size": 5222}
### File: spring-boot-quartz/src/main/resources/static/plugin/commons.js var Ext = function() { return { /** date-box 格式化日期 */ formatDate : function(date) { return date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate(); }, formatDateTime : function(date) { return date.getFullYear()...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/commons.js", "license": "apache-2.0", "size": 8410...
### File: spring-boot-quartz/src/main/resources/static/plugin/locale/easyui-lang-zh_CN.js if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = '第'; $.fn.pagination.defaults.afterPageText = '共{pages}页'; $.fn.pagination.defaults.displayMsg = '显示{from}到{to},共{total}记录'; } if ($.fn.datagrid){ $.fn.datagrid.d...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/locale/easyui-lang-zh_CN.js", "license": "apache-2...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.accordion.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.accordion.js", "license": "apache-2...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.calendar.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: in...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.calendar.js", "license": "apache-2....
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combo.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info@...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combo.js", "license": "apache-2.0",...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combobox.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: in...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combobox.js", "license": "apache-2....
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combogrid.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combogrid.js", "license": "apache-2...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combotree.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combotree.js", "license": "apache-2...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combotreegrid.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact u...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.combotreegrid.js", "license": "apac...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datagrid.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: in...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datagrid.js", "license": "apache-2....
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datalist.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: in...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datalist.js", "license": "apache-2....
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datebox.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: inf...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datebox.js", "license": "apache-2.0...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datetimebox.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us:...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datetimebox.js", "license": "apache...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datetimespinner.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.datetimespinner.js", "license": "ap...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.dialog.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.dialog.js", "license": "apache-2.0"...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.draggable.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.draggable.js", "license": "apache-2...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.droppable.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.droppable.js", "license": "apache-2...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.filebox.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: inf...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.filebox.js", "license": "apache-2.0...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.form.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info@j...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.form.js", "license": "apache-2.0", ...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.layout.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.layout.js", "license": "apache-2.0"...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.linkbutton.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.linkbutton.js", "license": "apache-...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.menu.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info@j...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.menu.js", "license": "apache-2.0", ...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.menubutton.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.menubutton.js", "license": "apache-...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.messager.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: in...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.messager.js", "license": "apache-2....
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.mobile.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.mobile.js", "license": "apache-2.0"...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.numberbox.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.numberbox.js", "license": "apache-2...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.numberspinner.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact u...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.numberspinner.js", "license": "apac...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.pagination.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.pagination.js", "license": "apache-...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.panel.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info@...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.panel.js", "license": "apache-2.0",...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.parser.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.parser.js", "license": "apache-2.0"...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.passwordbox.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us:...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.passwordbox.js", "license": "apache...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.progressbar.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us:...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.progressbar.js", "license": "apache...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.propertygrid.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.propertygrid.js", "license": "apach...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.resizable.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.resizable.js", "license": "apache-2...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.searchbox.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: i...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.searchbox.js", "license": "apache-2...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.slider.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.slider.js", "license": "apache-2.0"...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.spinner.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: inf...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.spinner.js", "license": "apache-2.0...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.splitbutton.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us:...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.splitbutton.js", "license": "apache...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.switchbutton.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.switchbutton.js", "license": "apach...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.tabs.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info@j...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.tabs.js", "license": "apache-2.0", ...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.textbox.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: inf...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.textbox.js", "license": "apache-2.0...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.timespinner.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us:...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.timespinner.js", "license": "apache...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.tooltip.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: inf...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.tooltip.js", "license": "apache-2.0...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.tree.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info@j...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.tree.js", "license": "apache-2.0", ...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.treegrid.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: in...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.treegrid.js", "license": "apache-2....
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.validatebox.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us:...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.validatebox.js", "license": "apache...
### File: spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.window.js /** * jQuery EasyUI 1.5 * * Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved. * * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/plugins/jquery.window.js", "license": "apache-2.0"...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/color.css .c1,.c1:hover,.c1>.panel-header{ color: #fff; border-color: #3c8b3c; background: #4cae4c; background: -webkit-linear-gradient(top,#4cae4c 0,#449d44 100%); background: -moz-linear-gradient(top,#4cae4c 0,#449d44 100%); background: -o-lin...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/color.css", "license": "apache-2.0", "size": 6135}
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/accordion.css .accordion { overflow: hidden; border-width: 1px; border-style: solid; } .accordion .accordion-header { border-width: 0 0 1px; cursor: pointer; } .accordion .accordion-body { border-width: 0 0 1px; } .accordion-nobord...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/accordion.css", "license": "apache-2.0", "...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/calendar.css .calendar { border-width: 1px; border-style: solid; padding: 1px; overflow: hidden; } .calendar table { table-layout: fixed; border-collapse: separate; font-size: 12px; width: 100%; height: 100%; } .calendar tabl...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/calendar.css", "license": "apache-2.0", "s...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/combo.css .combo-arrow { width: 18px; height: 20px; overflow: hidden; display: inline-block; vertical-align: top; cursor: pointer; opacity: 0.6; filter: alpha(opacity=60); } .combo-arrow-hover { opacity: 1.0; filter: alpha(...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/combo.css", "license": "apache-2.0", "size...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/combobox.css .combobox-item, .combobox-group, .combobox-stick { font-size: 12px; padding: 3px; } .combobox-item-disabled { opacity: 0.5; filter: alpha(opacity=50); } .combobox-gitem { padding-left: 10px; } .combobox-group, .combobox-...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/combobox.css", "license": "apache-2.0", "s...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/datagrid.css .datagrid .panel-body { overflow: hidden; position: relative; } .datagrid-view { position: relative; overflow: hidden; } .datagrid-view1, .datagrid-view2 { position: absolute; overflow: hidden; top: 0; } .datagrid-vi...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/datagrid.css", "license": "apache-2.0", "s...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/datalist.css .datalist .datagrid-header { border-width: 0; } .datalist .datagrid-group, .m-list .m-list-group { height: 25px; line-height: 25px; font-weight: bold; overflow: hidden; background-color: #efefef; border-style: solid;...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/datalist.css", "license": "apache-2.0", "s...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/datebox.css .datebox-calendar-inner { height: 180px; } .datebox-button { padding: 0 5px; text-align: center; } .datebox-button a { line-height: 22px; font-size: 12px; font-weight: bold; text-decoration: none; opacity: 0.6; fi...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/datebox.css", "license": "apache-2.0", "si...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/dialog.css .dialog-content { overflow: auto; } .dialog-toolbar { position: relative; padding: 2px 5px; } .dialog-tool-separator { float: left; height: 24px; border-left: 1px solid #ccc; border-right: 1px solid #fff; margin: 2px...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/dialog.css", "license": "apache-2.0", "siz...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/easyui.css .panel { overflow: hidden; text-align: left; margin: 0; border: 0; -moz-border-radius: 0 0 0 0; -webkit-border-radius: 0 0 0 0; border-radius: 0 0 0 0; } .panel-header, .panel-body { border-width: 1px; border-style...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/easyui.css", "license": "apache-2.0", "siz...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/filebox.css .filebox .textbox-value { vertical-align: top; position: absolute; top: 0; left: -5000px; } .filebox-label { display: inline-block; position: absolute; width: 100%; height: 100%; cursor: pointer; left: 0; top:...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/filebox.css", "license": "apache-2.0", "si...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/layout.css .layout { position: relative; overflow: hidden; margin: 0; padding: 0; z-index: 0; } .layout-panel { position: absolute; overflow: hidden; } .layout-body { min-width: 1px; min-height: 1px; } .layout-panel-east, .la...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/layout.css", "license": "apache-2.0", "siz...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/linkbutton.css .l-btn { text-decoration: none; display: inline-block; overflow: hidden; margin: 0; padding: 0; cursor: pointer; outline: none; text-align: center; vertical-align: middle; line-height: normal; } .l-btn-plain ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/linkbutton.css", "license": "apache-2.0", ...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/menu.css .menu { position: absolute; margin: 0; padding: 2px; border-width: 1px; border-style: solid; overflow: hidden; } .menu-inline { position: relative; } .menu-item { position: relative; margin: 0; padding: 0; overfl...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/menu.css", "license": "apache-2.0", "size"...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/menubutton.css .m-btn-downarrow, .s-btn-downarrow { display: inline-block; position: absolute; width: 16px; height: 16px; font-size: 1px; right: 0; top: 50%; margin-top: -8px; } .m-btn-active, .s-btn-active { background: #eaf...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/menubutton.css", "license": "apache-2.0", ...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/messager.css .messager-body { padding: 10px 10px 30px 10px; overflow: auto; } .messager-button { text-align: center; padding: 5px; } .messager-button .l-btn { width: 70px; } .messager-icon { float: left; width: 32px; height: 32...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/messager.css", "license": "apache-2.0", "s...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/pagination.css .pagination { zoom: 1; } .pagination table { float: left; height: 30px; } .pagination td { border: 0; } .pagination-btn-separator { float: left; height: 24px; border-left: 1px solid #ccc; border-right: 1px solid ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/pagination.css", "license": "apache-2.0", ...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/panel.css .panel { overflow: hidden; text-align: left; margin: 0; border: 0; -moz-border-radius: 0 0 0 0; -webkit-border-radius: 0 0 0 0; border-radius: 0 0 0 0; } .panel-header, .panel-body { border-width: 1px; border-style:...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/panel.css", "license": "apache-2.0", "size...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/passwordbox.css .passwordbox-open { background: url('images/passwordbox_open.png') no-repeat center center; } .passwordbox-close { background: url('images/passwordbox_close.png') no-repeat center center; }
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/passwordbox.css", "license": "apache-2.0",...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/progressbar.css .progressbar { border-width: 1px; border-style: solid; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; overflow: hidden; position: relative; } .progress...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/progressbar.css", "license": "apache-2.0",...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/propertygrid.css .propertygrid .datagrid-view1 .datagrid-body td { padding-bottom: 1px; border-width: 0 1px 0 0; } .propertygrid .datagrid-group { height: 21px; overflow: hidden; border-width: 0 0 1px 0; border-style: solid; } .pro...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/propertygrid.css", "license": "apache-2.0"...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/searchbox.css .searchbox-button { width: 18px; height: 20px; overflow: hidden; display: inline-block; vertical-align: top; cursor: pointer; opacity: 0.6; filter: alpha(opacity=60); } .searchbox-button-hover { opacity: 1.0; ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/searchbox.css", "license": "apache-2.0", "...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/slider.css .slider-disabled { opacity: 0.5; filter: alpha(opacity=50); } .slider-h { height: 22px; } .slider-v { width: 22px; } .slider-inner { position: relative; height: 6px; top: 7px; border-width: 1px; border-style: solid...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/slider.css", "license": "apache-2.0", "siz...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/spinner.css .spinner-arrow { background-color: #E0ECFF; display: inline-block; overflow: hidden; vertical-align: top; margin: 0; padding: 0; opacity: 1.0; filter: alpha(opacity=100); width: 18px; } .spinner-arrow-up, .spinner...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/spinner.css", "license": "apache-2.0", "si...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/splitbutton.css .s-btn:hover .m-btn-line, .s-btn-active .m-btn-line, .s-btn-plain-active .m-btn-line { display: inline-block; } .l-btn:hover .s-btn-downarrow, .s-btn-active .s-btn-downarrow, .s-btn-plain-active .s-btn-downarrow { border-st...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/splitbutton.css", "license": "apache-2.0",...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/switchbutton.css .switchbutton { text-decoration: none; display: inline-block; overflow: hidden; vertical-align: middle; margin: 0; padding: 0; cursor: pointer; background: #bbb; border: 1px solid #bbb; -moz-border-radius: ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/switchbutton.css", "license": "apache-2.0"...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/tabs.css .tabs-container { overflow: hidden; } .tabs-header { border-width: 1px; border-style: solid; border-bottom-width: 0; position: relative; padding: 0; padding-top: 2px; overflow: hidden; } .tabs-scroller-left, .tabs-scro...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/tabs.css", "license": "apache-2.0", "size"...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/textbox.css .textbox { position: relative; border: 1px solid #95B8E7; background-color: #fff; vertical-align: middle; display: inline-block; overflow: hidden; white-space: nowrap; margin: 0; padding: 0; -moz-border-radius: ...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/textbox.css", "license": "apache-2.0", "si...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/tooltip.css .tooltip { position: absolute; display: none; z-index: 9900000; outline: none; opacity: 1; filter: alpha(opacity=100); padding: 5px; border-width: 1px; border-style: solid; border-radius: 5px; -moz-border-radi...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/tooltip.css", "license": "apache-2.0", "si...
### File: spring-boot-quartz/src/main/resources/static/plugin/themes/default/tree.css .tree { margin: 0; padding: 0; list-style-type: none; } .tree li { white-space: nowrap; } .tree li ul { list-style-type: none; margin: 0; padding: 0; } .tree-node { height: 18px; white-space: nowrap; cursor: pointe...
{"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "CSS", "repo_name": "vincent_lee/spring-boot-all", "path": "spring-boot-quartz/src/main/resources/static/plugin/themes/default/tree.css", "license": "apache-2.0", "size"...