├── .gitignore ├── LICENSE ├── README.md ├── docs └── db │ └── AutoProgramming.sql ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── aibibang │ │ ├── common │ │ ├── base │ │ │ ├── BaseController.java │ │ │ ├── BaseDao.java │ │ │ └── BaseEntity.java │ │ ├── constant │ │ │ ├── Globals.java │ │ │ └── SessionAttr.java │ │ ├── interceptor │ │ │ ├── AuthInterceptor.java │ │ │ ├── DateConvertEditor.java │ │ │ ├── EncodingInterceptor.java │ │ │ └── MyWebBinding.java │ │ ├── model │ │ │ └── UploadModel.java │ │ ├── persistence │ │ │ ├── CountSqlHelper.java │ │ │ ├── Page.java │ │ │ ├── PaginationInterceptor.java │ │ │ └── dialect │ │ │ │ ├── Dialect.java │ │ │ │ ├── DialectFactory.java │ │ │ │ └── db │ │ │ │ ├── DB2Dialect.java │ │ │ │ ├── DerbyDialect.java │ │ │ │ ├── H2Dialect.java │ │ │ │ ├── HSQLDialect.java │ │ │ │ ├── MySQLDialect.java │ │ │ │ ├── OracleDialect.java │ │ │ │ ├── PostgreSQLDialect.java │ │ │ │ ├── SQLServer2005Dialect.java │ │ │ │ ├── SQLServerDialect.java │ │ │ │ └── SybaseDialect.java │ │ └── util │ │ │ ├── ApplicationContextUtil.java │ │ │ ├── ContextHolderUtil.java │ │ │ ├── CookieUtil.java │ │ │ ├── FileUtils.java │ │ │ ├── IpUtil.java │ │ │ ├── MenuUtils.java │ │ │ ├── MyBeanUtils.java │ │ │ ├── ReflectUtils.java │ │ │ ├── ResourceUtils.java │ │ │ ├── UploadUtils.java │ │ │ └── ValidateUtils.java │ │ └── web │ │ ├── generator │ │ ├── controller │ │ │ ├── CgDataSourceController.java │ │ │ ├── CgTableConfigController.java │ │ │ └── GeneratorController.java │ │ ├── dao │ │ │ ├── CgColumnConfigDao.java │ │ │ ├── CgDataSourceDao.java │ │ │ └── CgTableConfigDao.java │ │ ├── entity │ │ │ ├── BuildCodeConfig.java │ │ │ ├── CgColumnConfig.java │ │ │ ├── CgDataSource.java │ │ │ └── CgTableConfig.java │ │ ├── service │ │ │ ├── CgDataSourceService.java │ │ │ ├── CgTableConfigService.java │ │ │ └── impl │ │ │ │ ├── CgDataSourceServiceImpl.java │ │ │ │ └── CgTableConfigServiceImpl.java │ │ ├── sql │ │ │ ├── cgColumnConfig-sql.xml │ │ │ ├── cgDataSource-sql.xml │ │ │ └── cgTableConfig-sql.xml │ │ └── util │ │ │ ├── CodeGenerateUtils.java │ │ │ ├── CodePathUtils.java │ │ │ ├── FieldUtils.java │ │ │ └── ReadTableUtils.java │ │ └── system │ │ ├── controller │ │ ├── CommonController.java │ │ ├── IndexController.java │ │ ├── LoginController.java │ │ ├── SysMenuController.java │ │ ├── SysOrgController.java │ │ ├── SysRoleController.java │ │ └── SysUserController.java │ │ ├── dao │ │ ├── SysMenuDao.java │ │ ├── SysOrgDao.java │ │ ├── SysRoleDao.java │ │ ├── SysRoleMenuDao.java │ │ ├── SysUserDao.java │ │ └── SysUserRoleDao.java │ │ ├── entity │ │ ├── SysMenu.java │ │ ├── SysOrg.java │ │ ├── SysRole.java │ │ ├── SysRoleMenu.java │ │ ├── SysUser.java │ │ └── SysUserRole.java │ │ ├── service │ │ ├── SysMenuService.java │ │ ├── SysOrgService.java │ │ ├── SysRoleService.java │ │ ├── SysUserService.java │ │ └── impl │ │ │ ├── SysMenuServiceImpl.java │ │ │ ├── SysOrgServiceImpl.java │ │ │ ├── SysRoleServiceImpl.java │ │ │ └── SysUserServiceImpl.java │ │ └── sql │ │ ├── sysMenu-sql.xml │ │ ├── sysOrg-sql.xml │ │ ├── sysRole-sql.xml │ │ ├── sysRoleMenu-sql.xml │ │ ├── sysUser-sql.xml │ │ └── sysUserRole-sql.xml ├── resources │ ├── dbconfig.properties │ ├── log4j.properties │ ├── messages_en.properties │ ├── messages_zh_CN.properties │ ├── mybatis-config.xml │ ├── spring-context.xml │ ├── spring-mvc.xml │ └── sysconfig.properties └── webapp │ ├── META-INF │ └── MANIFEST.MF │ ├── WEB-INF │ ├── web.xml │ └── weblogic.xml │ ├── context │ └── mytags.jsp │ ├── static │ ├── admin │ │ ├── layout │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── layout.css │ │ │ │ └── themes │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── darkblue.css │ │ │ │ │ ├── default.css │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── light.css │ │ │ │ │ └── light2.css │ │ │ ├── img │ │ │ │ ├── ajax-loading.gif │ │ │ │ ├── ajax-modal-loading.gif │ │ │ │ ├── arrow-down.png │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar1.jpg │ │ │ │ ├── avatar10.jpg │ │ │ │ ├── avatar11.jpg │ │ │ │ ├── avatar1_small.jpg │ │ │ │ ├── avatar2.jpg │ │ │ │ ├── avatar3.jpg │ │ │ │ ├── avatar3_small.jpg │ │ │ │ ├── avatar4.jpg │ │ │ │ ├── avatar5.jpg │ │ │ │ ├── avatar6.jpg │ │ │ │ ├── avatar7.jpg │ │ │ │ ├── avatar8.jpg │ │ │ │ ├── avatar9.jpg │ │ │ │ ├── hor-menu-red-arrow.png │ │ │ │ ├── icon-color-close.png │ │ │ │ ├── icon-color.png │ │ │ │ ├── icon-img-down.png │ │ │ │ ├── icon-img-up.png │ │ │ │ ├── inbox-nav-arrow-blue.png │ │ │ │ ├── loading-spinner-blue.gif │ │ │ │ ├── loading-spinner-default.gif │ │ │ │ ├── loading-spinner-grey.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── logo-big-white.png │ │ │ │ ├── logo-big.png │ │ │ │ ├── logo-invert.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu-toggler.png │ │ │ │ ├── photo1.jpg │ │ │ │ ├── photo2.jpg │ │ │ │ ├── photo3.jpg │ │ │ │ ├── remove-icon-small.png │ │ │ │ ├── search_icon_light.png │ │ │ │ ├── sidebar-menu-arrow-reverse.png │ │ │ │ ├── sidebar-menu-arrow-right.png │ │ │ │ ├── sidebar-menu-arrow.png │ │ │ │ ├── sidebar_arrow_icon_light.png │ │ │ │ ├── sidebar_arrow_icon_light_rtl.png │ │ │ │ ├── sidebar_inline_toggler_icon_blue.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_darkblue.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_default.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_grey.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_light.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_light2.jpg │ │ │ │ ├── sidebar_toggler_icon_blue.png │ │ │ │ ├── sidebar_toggler_icon_darkblue.png │ │ │ │ ├── sidebar_toggler_icon_default.png │ │ │ │ ├── sidebar_toggler_icon_grey.png │ │ │ │ ├── sidebar_toggler_icon_light.png │ │ │ │ └── sidebar_toggler_icon_light2.png │ │ │ └── scripts │ │ │ │ ├── demo.js │ │ │ │ ├── layout.js │ │ │ │ └── quick-sidebar.js │ │ ├── layout2 │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── layout.css │ │ │ │ └── themes │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── dark.css │ │ │ │ │ ├── default.css │ │ │ │ │ ├── grey.css │ │ │ │ │ └── light.css │ │ │ ├── img │ │ │ │ ├── ajax-loading.gif │ │ │ │ ├── ajax-modal-loading.gif │ │ │ │ ├── arrow-down.png │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar1.jpg │ │ │ │ ├── avatar10.jpg │ │ │ │ ├── avatar11.jpg │ │ │ │ ├── avatar1_small.jpg │ │ │ │ ├── avatar2.jpg │ │ │ │ ├── avatar3.jpg │ │ │ │ ├── avatar3_small.jpg │ │ │ │ ├── avatar4.jpg │ │ │ │ ├── avatar5.jpg │ │ │ │ ├── avatar6.jpg │ │ │ │ ├── avatar7.jpg │ │ │ │ ├── avatar8.jpg │ │ │ │ ├── avatar9.jpg │ │ │ │ ├── hor-menu-red-arrow.png │ │ │ │ ├── icon-color-close.png │ │ │ │ ├── icon-color.png │ │ │ │ ├── icon-img-down.png │ │ │ │ ├── icon-img-up.png │ │ │ │ ├── inbox-nav-arrow-blue.png │ │ │ │ ├── loading-spinner-blue.gif │ │ │ │ ├── loading-spinner-default.gif │ │ │ │ ├── loading-spinner-grey.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── logo-big-white.png │ │ │ │ ├── logo-big.png │ │ │ │ ├── logo-default.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu-toggler.png │ │ │ │ ├── photo1.jpg │ │ │ │ ├── photo2.jpg │ │ │ │ ├── remove-icon-small.png │ │ │ │ ├── search_icon_light.png │ │ │ │ ├── sidebar-menu-arrow-reverse.png │ │ │ │ ├── sidebar-menu-arrow-right.png │ │ │ │ ├── sidebar-menu-arrow.png │ │ │ │ ├── sidebar-toggler-inverse.png │ │ │ │ ├── sidebar-toggler.png │ │ │ │ ├── sidebar_arrow_icon_light.png │ │ │ │ ├── sidebar_arrow_icon_light_rtl.png │ │ │ │ ├── sidebar_inline_toggler_icon_blue.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_darkblue.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_default.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_grey.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_light.jpg │ │ │ │ ├── sidebar_inline_toggler_icon_light2.jpg │ │ │ │ ├── sidebar_toggler_icon_blue.png │ │ │ │ ├── sidebar_toggler_icon_darkblue.png │ │ │ │ ├── sidebar_toggler_icon_default.png │ │ │ │ ├── sidebar_toggler_icon_grey.png │ │ │ │ ├── sidebar_toggler_icon_light.png │ │ │ │ └── sidebar_toggler_icon_light2.png │ │ │ └── scripts │ │ │ │ ├── demo.js │ │ │ │ ├── layout.js │ │ │ │ └── quick-sidebar.js │ │ ├── layout3 │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── layout.css │ │ │ │ └── themes │ │ │ │ │ ├── blue-hoki.css │ │ │ │ │ ├── blue-steel.css │ │ │ │ │ ├── default.css │ │ │ │ │ ├── green-haze.css │ │ │ │ │ ├── purple-plum.css │ │ │ │ │ ├── purple-studio.css │ │ │ │ │ ├── red-intense.css │ │ │ │ │ ├── red-sunglo.css │ │ │ │ │ ├── yellow-crusta.css │ │ │ │ │ └── yellow-orange.css │ │ │ ├── img │ │ │ │ ├── ajax-loading.gif │ │ │ │ ├── ajax-modal-loading.gif │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar1.jpg │ │ │ │ ├── avatar10.jpg │ │ │ │ ├── avatar11.jpg │ │ │ │ ├── avatar2.jpg │ │ │ │ ├── avatar3.jpg │ │ │ │ ├── avatar4.jpg │ │ │ │ ├── avatar5.jpg │ │ │ │ ├── avatar6.jpg │ │ │ │ ├── avatar7.jpg │ │ │ │ ├── avatar8.jpg │ │ │ │ ├── avatar9.jpg │ │ │ │ ├── icon-color-close.png │ │ │ │ ├── icon-color.png │ │ │ │ ├── loading-spinner-blue.gif │ │ │ │ ├── loading-spinner-default.gif │ │ │ │ ├── loading-spinner-grey.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── logo-big-white.png │ │ │ │ ├── logo-big.png │ │ │ │ ├── logo-blue-hoki.png │ │ │ │ ├── logo-blue-steel.png │ │ │ │ ├── logo-default.png │ │ │ │ ├── logo-green-haze.png │ │ │ │ ├── logo-purple-plum.png │ │ │ │ ├── logo-purple-studio.png │ │ │ │ ├── logo-red-intense.png │ │ │ │ ├── logo-red-sunglo.png │ │ │ │ ├── logo-yellow-crusta.png │ │ │ │ ├── logo-yellow-orange.png │ │ │ │ ├── logo.png │ │ │ │ └── menu-toggler.png │ │ │ └── scripts │ │ │ │ ├── demo.js │ │ │ │ └── layout.js │ │ ├── layout4 │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── layout.css │ │ │ │ └── themes │ │ │ │ │ ├── default.css │ │ │ │ │ └── light.css │ │ │ ├── img │ │ │ │ ├── ajax-loading.gif │ │ │ │ ├── ajax-modal-loading.gif │ │ │ │ ├── arrow-down.png │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar1.jpg │ │ │ │ ├── avatar10.jpg │ │ │ │ ├── avatar11.jpg │ │ │ │ ├── avatar1_small.jpg │ │ │ │ ├── avatar2.jpg │ │ │ │ ├── avatar3.jpg │ │ │ │ ├── avatar3_small.jpg │ │ │ │ ├── avatar4.jpg │ │ │ │ ├── avatar5.jpg │ │ │ │ ├── avatar6.jpg │ │ │ │ ├── avatar7.jpg │ │ │ │ ├── avatar8.jpg │ │ │ │ ├── avatar9.jpg │ │ │ │ ├── hor-menu-red-arrow.png │ │ │ │ ├── icon-color-close.png │ │ │ │ ├── icon-color.png │ │ │ │ ├── icon-img-down.png │ │ │ │ ├── icon-img-up.png │ │ │ │ ├── inbox-nav-arrow-blue.png │ │ │ │ ├── loading-spinner-blue.gif │ │ │ │ ├── loading-spinner-default.gif │ │ │ │ ├── loading-spinner-grey.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── logo-big-white.png │ │ │ │ ├── logo-big.png │ │ │ │ ├── logo-default.png │ │ │ │ ├── logo-light.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu-toggler.png │ │ │ │ ├── photo1.jpg │ │ │ │ ├── photo2.jpg │ │ │ │ ├── remove-icon-small.png │ │ │ │ ├── search_icon_light.png │ │ │ │ ├── sidebar-toggle-dark.png │ │ │ │ └── sidebar-toggle-light.png │ │ │ └── scripts │ │ │ │ ├── demo.js │ │ │ │ └── layout.js │ │ └── pages │ │ │ └── css │ │ │ ├── error.css │ │ │ └── login.css │ ├── custom │ │ ├── common.css │ │ ├── common.js │ │ ├── message_zh_CN.js │ │ ├── validate-custom.js │ │ └── validate-override.js │ └── global │ │ ├── css │ │ ├── components.css │ │ └── plugins.css │ │ ├── img │ │ ├── accordion-plusminus.png │ │ ├── ajax-loading.gif │ │ ├── ajax-modal-loading.gif │ │ ├── datatable-row-openclose.png │ │ ├── input-spinner.gif │ │ ├── loading-spinner-blue.gif │ │ ├── loading-spinner-default.gif │ │ ├── loading-spinner-grey.gif │ │ ├── loading.gif │ │ ├── overlay-icon.png │ │ ├── portlet-collapse-icon-white.png │ │ ├── portlet-collapse-icon.png │ │ ├── portlet-config-icon-white.png │ │ ├── portlet-config-icon.png │ │ ├── portlet-expand-icon-white.png │ │ ├── portlet-expand-icon.png │ │ ├── portlet-reload-icon-white.png │ │ ├── portlet-reload-icon.png │ │ ├── portlet-remove-icon-white.png │ │ ├── portlet-remove-icon.png │ │ ├── remove-icon-small.png │ │ ├── social │ │ │ ├── Thumbs.db │ │ │ ├── aboutme.png │ │ │ ├── amazon.png │ │ │ ├── behance.png │ │ │ ├── blogger.png │ │ │ ├── deviantart.png │ │ │ ├── dribbble.png │ │ │ ├── dropbox.png │ │ │ ├── evernote.png │ │ │ ├── facebook.png │ │ │ ├── flickr.png │ │ │ ├── forrst.png │ │ │ ├── foursquare.png │ │ │ ├── github.png │ │ │ ├── googleplus.png │ │ │ ├── gravatar.png │ │ │ ├── instagram.png │ │ │ ├── jolicloud.png │ │ │ ├── klout.png │ │ │ ├── last-fm.png │ │ │ ├── linkedin.png │ │ │ ├── myspace.png │ │ │ ├── picasa.png │ │ │ ├── pintrest.png │ │ │ ├── quora.png │ │ │ ├── reddit.png │ │ │ ├── rss.png │ │ │ ├── skype.png │ │ │ ├── spotify.png │ │ │ ├── stumbleupon.png │ │ │ ├── tumblr.png │ │ │ ├── twitter.png │ │ │ ├── vimeo.png │ │ │ ├── vk.png │ │ │ ├── wordpress.png │ │ │ ├── xing.png │ │ │ ├── yahoo.png │ │ │ └── youtube.png │ │ ├── syncfusion-icons-white.png │ │ └── syncfusion-icons.png │ │ ├── plugins │ │ ├── bootstrap-datepicker │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── css │ │ │ │ ├── bootstrap-datepicker.css │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.standalone.css │ │ │ │ ├── bootstrap-datepicker.standalone.min.css │ │ │ │ ├── bootstrap-datepicker3.css │ │ │ │ ├── bootstrap-datepicker3.min.css │ │ │ │ ├── bootstrap-datepicker3.standalone.css │ │ │ │ └── bootstrap-datepicker3.standalone.min.css │ │ │ ├── js │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ └── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ ├── bootstrap-datepicker.nb.min.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ ├── bootstrap-fileinput │ │ │ ├── bootstrap-fileinput.css │ │ │ └── bootstrap-fileinput.js │ │ ├── bootstrap-hover-dropdown │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap-hover-dropdown.js │ │ │ └── bootstrap-hover-dropdown.min.js │ │ ├── bootstrap-switch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── css │ │ │ │ ├── bootstrap-switch.css │ │ │ │ └── bootstrap-switch.min.css │ │ │ └── js │ │ │ │ ├── bootstrap-switch.js │ │ │ │ └── bootstrap-switch.min.js │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── echarts.common.min.js │ │ ├── excanvas.min.js │ │ ├── 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 │ │ ├── jquery-migrate.min.js │ │ ├── jquery-slimscroll │ │ │ ├── README.md │ │ │ ├── jquery.slimscroll.js │ │ │ ├── jquery.slimscroll.min.js │ │ │ └── slimScroll.jquery.json │ │ ├── jquery-ui │ │ │ ├── images │ │ │ │ ├── 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 │ │ │ ├── jquery-ui.min.css │ │ │ └── jquery-ui.min.js │ │ ├── jquery-validation │ │ │ ├── README.md │ │ │ └── js │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ ├── jquery.validate.min.js │ │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ ├── jquery.blockui.min.js │ │ ├── jquery.cokie.min.js │ │ ├── jquery.min.js │ │ ├── jquery.pulsate.min.js │ │ ├── respond.min.js │ │ ├── select2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── select2-bootstrap.css │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.css │ │ │ ├── select2.jquery.json │ │ │ ├── select2.js │ │ │ ├── select2.min.js │ │ │ ├── select2.png │ │ │ ├── select2_locale_ar.js │ │ │ ├── select2_locale_az.js │ │ │ ├── select2_locale_bg.js │ │ │ ├── select2_locale_ca.js │ │ │ ├── select2_locale_cs.js │ │ │ ├── select2_locale_da.js │ │ │ ├── select2_locale_de.js │ │ │ ├── select2_locale_el.js │ │ │ ├── select2_locale_en.js.template │ │ │ ├── select2_locale_es.js │ │ │ ├── select2_locale_et.js │ │ │ ├── select2_locale_eu.js │ │ │ ├── select2_locale_fa.js │ │ │ ├── select2_locale_fi.js │ │ │ ├── select2_locale_fr.js │ │ │ ├── select2_locale_gl.js │ │ │ ├── select2_locale_he.js │ │ │ ├── select2_locale_hr.js │ │ │ ├── select2_locale_hu.js │ │ │ ├── select2_locale_id.js │ │ │ ├── select2_locale_is.js │ │ │ ├── select2_locale_it.js │ │ │ ├── select2_locale_ja.js │ │ │ ├── select2_locale_ka.js │ │ │ ├── select2_locale_ko.js │ │ │ ├── select2_locale_lt.js │ │ │ ├── select2_locale_lv.js │ │ │ ├── select2_locale_mk.js │ │ │ ├── select2_locale_ms.js │ │ │ ├── select2_locale_nl.js │ │ │ ├── select2_locale_no.js │ │ │ ├── select2_locale_pl.js │ │ │ ├── select2_locale_pt-BR.js │ │ │ ├── select2_locale_pt-PT.js │ │ │ ├── select2_locale_ro.js │ │ │ ├── select2_locale_rs.js │ │ │ ├── select2_locale_ru.js │ │ │ ├── select2_locale_sk.js │ │ │ ├── select2_locale_sv.js │ │ │ ├── select2_locale_th.js │ │ │ ├── select2_locale_tr.js │ │ │ ├── select2_locale_ug-CN.js │ │ │ ├── select2_locale_uk.js │ │ │ ├── select2_locale_vi.js │ │ │ ├── select2_locale_zh-CN.js │ │ │ ├── select2_locale_zh-TW.js │ │ │ └── select2x2.png │ │ ├── simple-line-icons │ │ │ ├── License.txt │ │ │ ├── Readme.txt │ │ │ ├── fonts │ │ │ │ ├── Simple-Line-Icons.dev.svg │ │ │ │ ├── Simple-Line-Icons.eot │ │ │ │ ├── Simple-Line-Icons.svg │ │ │ │ ├── Simple-Line-Icons.ttf │ │ │ │ └── Simple-Line-Icons.woff │ │ │ ├── icons-lte-ie7.js │ │ │ ├── simple-line-icons.css │ │ │ └── simple-line-icons.min.css │ │ ├── treetable │ │ │ ├── default │ │ │ │ ├── allbgs.png │ │ │ │ └── jquery.treeTable.css │ │ │ ├── jquery.treeTable.js │ │ │ └── vsStyle │ │ │ │ ├── allbgs.png │ │ │ │ ├── allbgs.psd │ │ │ │ └── jquery.treeTable.css │ │ ├── uniform │ │ │ ├── README.md │ │ │ ├── css │ │ │ │ ├── uniform.default.css │ │ │ │ ├── uniform.default.min.css │ │ │ │ └── uniform.default.scss │ │ │ ├── images │ │ │ │ ├── bg-input-focus.png │ │ │ │ ├── bg-input.png │ │ │ │ ├── sprite.png │ │ │ │ └── sprite_original.png │ │ │ ├── jquery.uniform.js │ │ │ └── jquery.uniform.min.js │ │ └── ztree │ │ │ ├── css │ │ │ ├── awesomeStyle │ │ │ │ ├── awesome.css │ │ │ │ ├── awesome.less │ │ │ │ ├── fa.less │ │ │ │ └── img │ │ │ │ │ └── loading.gif │ │ │ ├── demo.css │ │ │ ├── metroStyle │ │ │ │ ├── img │ │ │ │ │ ├── line_conn.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── metro.gif │ │ │ │ │ └── metro.png │ │ │ │ └── metroStyle.css │ │ │ └── zTreeStyle │ │ │ │ ├── img │ │ │ │ ├── diy │ │ │ │ │ ├── 1_close.png │ │ │ │ │ ├── 1_open.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── line_conn.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── zTreeStandard.gif │ │ │ │ └── zTreeStandard.png │ │ │ │ └── zTreeStyle.css │ │ │ └── js │ │ │ ├── jquery-1.4.4.min.js │ │ │ ├── jquery.ztree.all.js │ │ │ ├── jquery.ztree.all.min.js │ │ │ ├── jquery.ztree.core.js │ │ │ ├── jquery.ztree.core.min.js │ │ │ ├── jquery.ztree.excheck.js │ │ │ ├── jquery.ztree.excheck.min.js │ │ │ ├── jquery.ztree.exedit.js │ │ │ ├── jquery.ztree.exedit.min.js │ │ │ ├── jquery.ztree.exhide.js │ │ │ └── jquery.ztree.exhide.min.js │ │ └── scripts │ │ └── metronic.js │ ├── template │ ├── bak │ │ ├── controllerTemplate.ftl │ │ ├── daoTemplate.ftl │ │ ├── entityTemplate.ftl │ │ ├── jspListTemplate.ftl │ │ ├── jspSearchTemplate.ftl │ │ ├── jspTemplate.ftl │ │ ├── serviceImplTemplate.ftl │ │ ├── serviceTemplate.ftl │ │ └── sqlxmlTemplate.ftl │ ├── default │ │ ├── controllerTemplate.ftl │ │ ├── daoTemplate.ftl │ │ ├── entityTemplate.ftl │ │ ├── jspListTemplate.ftl │ │ ├── jspSearchTemplate.ftl │ │ ├── jspTemplate.ftl │ │ ├── serviceImplTemplate.ftl │ │ ├── serviceTemplate.ftl │ │ └── sqlxmlTemplate.ftl │ ├── hibernate │ │ ├── controllerTemplate.ftl │ │ ├── daoTemplate.ftl │ │ ├── entityTemplate.ftl │ │ ├── jspListTemplate.ftl │ │ ├── jspSearchTemplate.ftl │ │ ├── jspTemplate.ftl │ │ ├── serviceImplTemplate.ftl │ │ ├── serviceTemplate.ftl │ │ └── sqlxmlTemplate.ftl │ └── springboot │ │ ├── controllerTemplate.ftl │ │ ├── entityTemplate.ftl │ │ ├── jspTemplate.ftl │ │ └── serviceTemplate.ftl │ └── webpage │ ├── error │ ├── 404.jsp │ └── 500.jsp │ ├── generator │ ├── datasource │ │ ├── dataSource.jsp │ │ ├── dataSourceList.jsp │ │ └── dataSourceSearch.jsp │ └── table │ │ ├── buildCode.jsp │ │ ├── buildConfig.jsp │ │ ├── tableConfig.jsp │ │ ├── tableConfigList.jsp │ │ └── tableConfigSearch.jsp │ ├── login │ └── login.jsp │ ├── main │ ├── theme.jsp │ ├── theme2.jsp │ ├── theme3.jsp │ └── theme4.jsp │ └── system │ ├── home │ └── home.jsp │ ├── icon │ └── icon.jsp │ ├── menu │ ├── menu.jsp │ ├── menuList.jsp │ └── menuSearch.jsp │ ├── org │ ├── org.jsp │ ├── orgList.jsp │ └── orgSearch.jsp │ ├── role │ ├── sysRole.jsp │ ├── sysRoleList.jsp │ └── sysRoleSearch.jsp │ └── user │ ├── user.jsp │ ├── userList.jsp │ └── userSearch.jsp └── test └── java └── test └── Test.java /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | .settings 3 | .classpath 4 | .project 5 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/common/constant/Globals.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.common.constant; 2 | 3 | /** 4 | * 全局变量定义 5 | * 6 | * @author King 7 | * 8 | */ 9 | public final class Globals { 10 | 11 | /** 12 | * 用户类型:正常 13 | */ 14 | public static String USER_TYPE_NORMAL = "0"; 15 | /** 16 | * 用户类型:删除 17 | */ 18 | public static String USER_TYPE_DEL = "1"; 19 | /** 20 | * 用户类型:超级管理员 21 | */ 22 | public static String USER_TYPE_ADMIN = "-1"; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/common/constant/SessionAttr.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.common.constant; 2 | 3 | /** 4 | * session属性 5 | * 6 | * @author King 7 | * 8 | */ 9 | public enum SessionAttr { 10 | 11 | USER_LOGIN("USER_LOGIN"), 12 | USER_ROLES("USER_ROLES"), 13 | USER_MENUS("USER_MENUS"); 14 | 15 | private SessionAttr(String name) { 16 | this.name = name; 17 | } 18 | 19 | private String name; 20 | 21 | public String getValue() { 22 | 23 | return this.name; 24 | } 25 | 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/common/interceptor/MyWebBinding.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.common.interceptor; 2 | 3 | import java.util.Date; 4 | 5 | import org.springframework.web.bind.WebDataBinder; 6 | import org.springframework.web.bind.support.WebBindingInitializer; 7 | import org.springframework.web.context.request.WebRequest; 8 | 9 | /** 10 | * 自定义WebBindingInitializer 11 | * 12 | * @author King 13 | * 14 | */ 15 | public class MyWebBinding implements WebBindingInitializer { 16 | 17 | public void initBinder(WebDataBinder binder, WebRequest request) { 18 | // 1. 使用spring自带的CustomDateEditor 19 | // SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); 20 | // binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); 21 | //2. 自定义的PropertyEditorSupport 22 | binder.registerCustomEditor(Date.class, new DateConvertEditor()); 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/common/persistence/dialect/Dialect.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright © 2012-2014 JeeSite All rights reserved. 3 | */ 4 | package com.aibibang.common.persistence.dialect; 5 | 6 | /** 7 | * 类似hibernate的Dialect,但只精简出分页部分 8 | * 9 | * @author poplar.yfyang 10 | * @version 1.0 2011-11-18 下午12:31 11 | * @since JDK 1.5 12 | */ 13 | public interface Dialect { 14 | 15 | /** 16 | * 数据库本身是否支持分页当前的分页查询方式 17 | * 如果数据库不支持的话,则不进行数据库分页 18 | * 19 | * @return true:支持当前的分页查询方式 20 | */ 21 | public boolean supportsLimit(); 22 | 23 | /** 24 | * 将sql转换为分页SQL,分别调用分页sql 25 | * 26 | * @param sql SQL语句 27 | * @param offset 开始条数 28 | * @param limit 每页显示多少纪录条数 29 | * @return 分页查询的sql 30 | */ 31 | public String getLimitString(String sql, int offset, int limit); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/common/util/ContextHolderUtil.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.common.util; 2 | 3 | import javax.servlet.http.HttpServletRequest; 4 | import javax.servlet.http.HttpSession; 5 | 6 | import org.springframework.web.context.request.RequestContextHolder; 7 | import org.springframework.web.context.request.ServletRequestAttributes; 8 | 9 | /** 10 | * 11 | * @author King 12 | * 13 | */ 14 | public class ContextHolderUtil { 15 | /** 16 | * SpringMvc下获取request 17 | * 18 | * @return 19 | */ 20 | public static HttpServletRequest getRequest() { 21 | HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); 22 | return request; 23 | } 24 | /** 25 | * SpringMvc下获取session 26 | * 27 | * @return 28 | */ 29 | public static HttpSession getSession() { 30 | HttpSession session = getRequest().getSession(); 31 | return session; 32 | 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/generator/dao/CgColumnConfigDao.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.generator.dao; 2 | 3 | import com.aibibang.common.base.BaseDao; 4 | import com.aibibang.web.generator.entity.CgColumnConfig; 5 | 6 | public interface CgColumnConfigDao extends BaseDao { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/generator/dao/CgDataSourceDao.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.generator.dao; 2 | 3 | import com.aibibang.common.base.BaseDao; 4 | import com.aibibang.web.generator.entity.CgDataSource; 5 | 6 | public interface CgDataSourceDao extends BaseDao { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/generator/dao/CgTableConfigDao.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.generator.dao; 2 | 3 | import com.aibibang.common.base.BaseDao; 4 | import com.aibibang.web.generator.entity.CgTableConfig; 5 | 6 | public interface CgTableConfigDao extends BaseDao { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/generator/service/CgDataSourceService.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.generator.service; 2 | 3 | import java.util.List; 4 | 5 | import com.aibibang.common.persistence.Page; 6 | import com.aibibang.web.generator.entity.CgDataSource; 7 | 8 | public interface CgDataSourceService { 9 | 10 | public Page findByPage(CgDataSource dataSource,Page page); 11 | 12 | public List findBySearch(CgDataSource dataSource); 13 | 14 | public CgDataSource getById(Long id); 15 | 16 | public void add(CgDataSource dataSource) throws Exception; 17 | 18 | public void update(CgDataSource dataSource) throws Exception; 19 | 20 | public void delete(Long dataSourceId) throws Exception; 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/generator/service/CgTableConfigService.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.generator.service; 2 | 3 | import com.aibibang.common.persistence.Page; 4 | import com.aibibang.web.generator.entity.CgTableConfig; 5 | 6 | public interface CgTableConfigService { 7 | 8 | public Page findByPage(CgTableConfig tableConfig,Page page); 9 | 10 | public CgTableConfig getById(Long id); 11 | 12 | public void add(CgTableConfig tableConfig) throws Exception; 13 | 14 | public void update(CgTableConfig tableConfig) throws Exception; 15 | 16 | public void delete(Long id) throws Exception; 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/system/dao/SysMenuDao.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.system.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.aibibang.common.base.BaseDao; 6 | import com.aibibang.web.system.entity.SysMenu; 7 | 8 | public interface SysMenuDao extends BaseDao { 9 | 10 | public List getByParentId(Long parentId); 11 | 12 | public void deleteByParentId(Long parentId); 13 | 14 | public List findForTreeTable(Long parentId); 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/system/dao/SysOrgDao.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.system.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.aibibang.common.base.BaseDao; 6 | import com.aibibang.web.system.entity.SysOrg; 7 | 8 | public interface SysOrgDao extends BaseDao { 9 | 10 | public List findForTreeTable(Long parentId); 11 | 12 | public void deleteByParentId(Long parentId); 13 | 14 | public String getMaxCode(Long parentId); 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/system/dao/SysRoleDao.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.system.dao; 2 | import com.aibibang.common.base.BaseDao; 3 | import com.aibibang.web.system.entity.SysRole; 4 | 5 | /** 6 | * 7 | * 角色管理dao接口. 8 | * 9 | *
10 |  * 	历史记录:
11 |  * 	2016-07-22 00:05 King
12 |  * 	新建文件
13 |  * 
14 | * 15 | * @author 16 | *
17 |  * SD
18 |  * 	King
19 |  * PG
20 |  *	King
21 |  * UT
22 |  *
23 |  * MA
24 |  * 
25 | * @version $Rev$ 26 | * 27 | *

$Id$ 28 | * 29 | */ 30 | public interface SysRoleDao extends BaseDao { 31 | 32 | 33 | } -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/system/dao/SysRoleMenuDao.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.system.dao; 2 | import java.util.List; 3 | 4 | import com.aibibang.common.base.BaseDao; 5 | import com.aibibang.web.system.entity.SysRoleMenu; 6 | 7 | /** 8 | * 9 | * 角色菜单dao接口. 10 | * 11 | *

12 |  * 	历史记录:
13 |  * 	2016-08-02 22:42 King
14 |  * 	新建文件
15 |  * 
16 | * 17 | * @author 18 | *
19 |  * SD
20 |  * 	King
21 |  * PG
22 |  *	King
23 |  * UT
24 |  *
25 |  * MA
26 |  * 
27 | * @version $Rev$ 28 | * 29 | *

$Id$ 30 | * 31 | */ 32 | public interface SysRoleMenuDao extends BaseDao { 33 | 34 | /** 35 | * 获取角色所有菜单权限 36 | * @param roleId 37 | * @return 38 | */ 39 | public List findByRoleId(Long roleId); 40 | 41 | /** 42 | * 删除角色下所有的菜单 43 | * @param roleId 44 | */ 45 | public void deleteByRoleId(Long roleId); 46 | 47 | /** 48 | * 获取用户所有的有权限的菜单 49 | * @param userId 50 | * @return 51 | */ 52 | public List findMenuIdByUserId(Long userId); 53 | } -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/system/dao/SysUserDao.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.system.dao; 2 | 3 | import com.aibibang.common.base.BaseDao; 4 | import com.aibibang.web.system.entity.SysUser; 5 | 6 | public interface SysUserDao extends BaseDao { 7 | 8 | public SysUser findByUsername(String username); 9 | } 10 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/system/dao/SysUserRoleDao.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.system.dao; 2 | import java.util.List; 3 | 4 | import com.aibibang.common.base.BaseDao; 5 | import com.aibibang.web.system.entity.SysUserRole; 6 | 7 | /** 8 | * 9 | * 用户角色dao接口. 10 | * 11 | *

12 |  * 	历史记录:
13 |  * 	2016-08-02 22:43 King
14 |  * 	新建文件
15 |  * 
16 | * 17 | * @author 18 | *
19 |  * SD
20 |  * 	King
21 |  * PG
22 |  *	King
23 |  * UT
24 |  *
25 |  * MA
26 |  * 
27 | * @version $Rev$ 28 | * 29 | *

$Id$ 30 | * 31 | */ 32 | public interface SysUserRoleDao extends BaseDao { 33 | 34 | /** 35 | * 查询用户的所有角色 36 | * @param userId 37 | * @return 38 | */ 39 | public List findByUserId(Long userId); 40 | 41 | /** 42 | * 删除用户的所有角色 43 | * @param userId 44 | */ 45 | public void deleteByUserId(Long userId); 46 | } -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/system/service/SysMenuService.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.system.service; 2 | 3 | import java.util.List; 4 | 5 | import com.aibibang.web.system.entity.SysMenu; 6 | 7 | public interface SysMenuService { 8 | 9 | public List find(SysMenu menu); 10 | 11 | public List getByParentId(Long parentId); 12 | 13 | public SysMenu getById(Long id); 14 | 15 | public void add(SysMenu menu); 16 | 17 | public void update(SysMenu menu); 18 | 19 | public void delete(Long id); 20 | 21 | public List findForTreeTable(Long parentId); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/system/service/SysOrgService.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.system.service; 2 | 3 | import java.util.List; 4 | 5 | import com.aibibang.web.system.entity.SysOrg; 6 | 7 | public interface SysOrgService { 8 | 9 | public List find(SysOrg org); 10 | 11 | public List findForTreeTable(Long parentId); 12 | 13 | public SysOrg getById(Long id); 14 | 15 | public void add(SysOrg org); 16 | 17 | public void update(SysOrg org); 18 | 19 | public void delete(Long id); 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/aibibang/web/system/service/SysUserService.java: -------------------------------------------------------------------------------- 1 | package com.aibibang.web.system.service; 2 | 3 | import java.util.List; 4 | 5 | import com.aibibang.common.persistence.Page; 6 | import com.aibibang.web.system.entity.SysUser; 7 | 8 | public interface SysUserService { 9 | 10 | public SysUser findByUsername(SysUser user); 11 | 12 | public Page findByPage(SysUser user,Page page); 13 | 14 | public SysUser getById(Long id); 15 | 16 | public void add(SysUser user); 17 | 18 | public void update(SysUser user); 19 | 20 | public void delete(Long id); 21 | 22 | /** 23 | * 查询用户的所有角色 24 | * @param userId 25 | * @return 26 | */ 27 | public List findByUserId(Long userId); 28 | 29 | /** 30 | * 获取用户所有有权限的菜单id 31 | * @param userId 32 | * @return 33 | */ 34 | public List findMenuIdByUserId(Long userId); 35 | } 36 | -------------------------------------------------------------------------------- /src/main/resources/dbconfig.properties: -------------------------------------------------------------------------------- 1 | #MySQL 2 | jdbc.driver=com.mysql.jdbc.Driver 3 | jdbc.url=jdbc:mysql://localhost:3306/AutoProgramming?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true 4 | jdbc.username=root 5 | jdbc.password=123456 6 | 7 | #oracle 8 | #jdbc.driver=oracle.jdbc.driver.OracleDriver 9 | #jdbc.url=jdbc:oracle:thin:@localhost:3306:test 10 | #jdbc.username=root 11 | #jdbc.password=123456 12 | 13 | #sqlserver 2005以上 14 | #jdbc.driver=com.microsoft.sqlserver.jdbc.SQLServerDriver 15 | #jdbc.url=jjdbc:sqlserver://localhost:3306;DatabaseName=test 16 | #jdbc.username=root 17 | #jdbc.password=123456 18 | -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=info,A1,R 2 | log4j.appender.A1=org.apache.log4j.ConsoleAppender 3 | log4j.appender.A1.Target=System.out 4 | log4j.appender.A1.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.A1.layout.ConversionPattern=[%c]%m%n 6 | 7 | log4j.appender.R=org.apache.log4j.DailyRollingFileAppender 8 | log4j.appender.R.File=../logs/auto_log_.txt 9 | log4j.appender.R.layout=org.apache.log4j.PatternLayout 10 | log4j.appender.R.Append = true 11 | log4j.appender.R.ImmediateFlush = true 12 | log4j.appender.R.DatePattern = '.' yyyy - MM - dd '.txt' 13 | log4j.appender.R.layout.ConversionPattern=[%p][%d{yyyy-MM-dd HH\:mm\:ss,SSS}][%c]%m%n 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/resources/messages_en.properties: -------------------------------------------------------------------------------- 1 | title = Intelligent development platform 2 | #global button 3 | btn.search = search 4 | btn.reset = reset 5 | btn.add = new 6 | btn.update = edit 7 | btn.delete = delete 8 | btn.save = save 9 | btn.submit = submit 10 | btn.return = return 11 | btn.confirm = confirm 12 | btn.cancel = cancel 13 | 14 | #global message 15 | msg.save.success = save success 16 | msg.save.fail = save fail 17 | msg.delete.success = delete success 18 | msg.delete.fail = delete fail 19 | msg.operate.success = operate success 20 | msg.operate.fail = operate fail -------------------------------------------------------------------------------- /src/main/resources/messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | #logo 2 | title = 智能开发平台 3 | footer = 2016 © Aibibang 4 | #global button 5 | btn.search = 查询 6 | btn.reset = 重置 7 | btn.add = 新建 8 | btn.update = 编辑 9 | btn.delete = 删除 10 | btn.save = 保存 11 | btn.submit = 提交 12 | btn.return = 返回 13 | btn.confirm = 确定 14 | btn.cancel = 取消 15 | btn.buildConfig = 生成配置 16 | 17 | #login page 18 | login.label.username = 用户名 19 | login.label.password = 密码 20 | login.msg.username = 用户名必填 21 | login.msg.password = 密码必填 22 | login.btn.login = 登录 23 | login.msg.usernameOrPasswordError = 用户名或密码错误 24 | login.label.otherLogin = 其他登录方式 -------------------------------------------------------------------------------- /src/main/resources/sysconfig.properties: -------------------------------------------------------------------------------- 1 | upload_base_path = E:/AutoProgramming -------------------------------------------------------------------------------- /src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/weblogic.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | -------------------------------------------------------------------------------- /src/main/webapp/context/mytags.jsp: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 2 | <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt_rt"%> 4 | <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> 5 | <% 6 | String path = request.getContextPath(); 7 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path; 8 | %> 9 | -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/ajax-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/ajax-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/ajax-modal-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/ajax-modal-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/arrow-down.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar10.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar11.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar1_small.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar3.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar3_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar3_small.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar4.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar5.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar6.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar7.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar8.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/avatar9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/avatar9.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/hor-menu-red-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/hor-menu-red-arrow.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/icon-color-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/icon-color-close.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/icon-color.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/icon-img-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/icon-img-down.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/icon-img-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/icon-img-up.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/inbox-nav-arrow-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/inbox-nav-arrow-blue.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/loading-spinner-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/loading-spinner-blue.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/loading-spinner-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/loading-spinner-default.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/loading-spinner-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/loading-spinner-grey.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/logo-big-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/logo-big-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/logo-big.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/logo-invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/logo-invert.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/logo.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/menu-toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/menu-toggler.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/photo1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/photo2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/photo3.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/remove-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/remove-icon-small.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/search_icon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/search_icon_light.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar-menu-arrow-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar-menu-arrow-reverse.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar-menu-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar-menu-arrow-right.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar-menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar-menu-arrow.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_arrow_icon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_arrow_icon_light.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_arrow_icon_light_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_arrow_icon_light_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_blue.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_darkblue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_darkblue.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_default.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_grey.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_light.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_light2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_inline_toggler_icon_light2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_blue.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_darkblue.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_default.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_grey.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_light.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_light2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout/img/sidebar_toggler_icon_light2.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/css/custom.css: -------------------------------------------------------------------------------- 1 | /* here you can put your own css to customize and override the theme */ 2 | 3 | /*** 4 | Rounded Portlets 5 | ***/ 6 | /* 7 | .portlet { 8 | border-radius: 4px !important; 9 | } 10 | 11 | .portlet .portlet-title { 12 | border-radius: 4px 4px 0px 0px !important; 13 | } 14 | 15 | .portlet .portlet-body, 16 | .portlet .portlet-body .form-actions { 17 | border-radius: 0px 0px 4px 4px !important; 18 | } 19 | */ -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/ajax-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/ajax-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/ajax-modal-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/ajax-modal-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/arrow-down.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar10.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar11.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar1_small.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar3.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar3_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar3_small.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar4.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar5.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar6.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar7.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar8.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/avatar9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/avatar9.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/hor-menu-red-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/hor-menu-red-arrow.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/icon-color-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/icon-color-close.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/icon-color.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/icon-img-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/icon-img-down.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/icon-img-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/icon-img-up.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/inbox-nav-arrow-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/inbox-nav-arrow-blue.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/loading-spinner-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/loading-spinner-blue.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/loading-spinner-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/loading-spinner-default.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/loading-spinner-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/loading-spinner-grey.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/logo-big-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/logo-big-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/logo-big.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/logo-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/logo-default.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/logo.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/menu-toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/menu-toggler.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/photo1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/photo2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/remove-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/remove-icon-small.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/search_icon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/search_icon_light.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar-menu-arrow-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar-menu-arrow-reverse.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar-menu-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar-menu-arrow-right.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar-menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar-menu-arrow.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar-toggler-inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar-toggler-inverse.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar-toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar-toggler.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_arrow_icon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_arrow_icon_light.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_arrow_icon_light_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_arrow_icon_light_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_blue.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_darkblue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_darkblue.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_default.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_grey.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_light.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_light2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_inline_toggler_icon_light2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_blue.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_darkblue.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_default.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_grey.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_light.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_light2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout2/img/sidebar_toggler_icon_light2.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/css/custom.css: -------------------------------------------------------------------------------- 1 | /* here you can put your own css to customize and override the theme */ 2 | 3 | /*** 4 | Rounded Portlets 5 | ***/ 6 | /* 7 | .portlet { 8 | border-radius: 4px !important; 9 | } 10 | 11 | .portlet .portlet-title { 12 | border-radius: 4px 4px 0px 0px !important; 13 | } 14 | 15 | .portlet .portlet-body, 16 | .portlet .portlet-body .form-actions { 17 | border-radius: 0px 0px 4px 4px !important; 18 | } 19 | */ -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/ajax-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/ajax-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/ajax-modal-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/ajax-modal-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar10.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar11.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar3.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar4.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar5.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar6.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar7.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar8.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/avatar9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/avatar9.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/icon-color-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/icon-color-close.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/icon-color.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/loading-spinner-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/loading-spinner-blue.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/loading-spinner-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/loading-spinner-default.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/loading-spinner-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/loading-spinner-grey.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-big-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-big-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-big.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-blue-hoki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-blue-hoki.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-blue-steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-blue-steel.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-default.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-green-haze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-green-haze.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-purple-plum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-purple-plum.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-purple-studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-purple-studio.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-red-intense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-red-intense.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-red-sunglo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-red-sunglo.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-yellow-crusta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-yellow-crusta.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo-yellow-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo-yellow-orange.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/logo.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout3/img/menu-toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout3/img/menu-toggler.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/css/custom.css: -------------------------------------------------------------------------------- 1 | /* here you can put your own css to customize and override the theme */ 2 | 3 | /*** 4 | Rounded Portlets 5 | ***/ 6 | /* 7 | .portlet { 8 | border-radius: 4px !important; 9 | } 10 | 11 | .portlet .portlet-title { 12 | border-radius: 4px 4px 0px 0px !important; 13 | } 14 | 15 | .portlet .portlet-body, 16 | .portlet .portlet-body .form-actions { 17 | border-radius: 0px 0px 4px 4px !important; 18 | } 19 | */ -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/ajax-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/ajax-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/ajax-modal-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/ajax-modal-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/arrow-down.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar10.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar11.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar1_small.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar3.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar3_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar3_small.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar4.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar5.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar6.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar7.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar8.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/avatar9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/avatar9.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/hor-menu-red-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/hor-menu-red-arrow.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/icon-color-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/icon-color-close.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/icon-color.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/icon-img-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/icon-img-down.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/icon-img-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/icon-img-up.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/inbox-nav-arrow-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/inbox-nav-arrow-blue.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/loading-spinner-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/loading-spinner-blue.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/loading-spinner-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/loading-spinner-default.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/loading-spinner-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/loading-spinner-grey.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/logo-big-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/logo-big-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/logo-big.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/logo-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/logo-default.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/logo-light.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/logo.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/menu-toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/menu-toggler.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/photo1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/photo2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/remove-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/remove-icon-small.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/search_icon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/search_icon_light.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/sidebar-toggle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/sidebar-toggle-dark.png -------------------------------------------------------------------------------- /src/main/webapp/static/admin/layout4/img/sidebar-toggle-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/admin/layout4/img/sidebar-toggle-light.png -------------------------------------------------------------------------------- /src/main/webapp/static/custom/message_zh_CN.js: -------------------------------------------------------------------------------- 1 | var messages = { 2 | save_success: '保存成功', 3 | save_fail: '保存失败', 4 | delete_confirm: '确认删除?', 5 | delete_success: '删除成功', 6 | delete_fail: '删除失败', 7 | operate_success: '操作成功', 8 | operate_fail: '操作失败', 9 | error: '系统错误,请联系管理员', 10 | build_config_success: '表单配置已生成', 11 | build_code_success: '代码已生成', 12 | file_error_format: '文件格式不正确', 13 | file_too_large: '文件大小超过限制' 14 | }; -------------------------------------------------------------------------------- /src/main/webapp/static/custom/validate-custom.js: -------------------------------------------------------------------------------- 1 | // 联系电话(手机/电话皆可)验证 2 | jQuery.validator.addMethod("phone", function(value,element) { 3 | 4 | var length = value.length; 5 | var mobile = /^1[3|4|5|7|8]\d{9}$/; 6 | var tel = /^(\(\d{3,4}\)|\d{3,4}-|\s)?\d{7,14}$/; 7 | 8 | return this.optional(element) || (tel.test(value) || mobile.test(value)); 9 | }, "请填写正确的联系电话"); -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/accordion-plusminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/accordion-plusminus.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/ajax-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/ajax-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/ajax-modal-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/ajax-modal-loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/datatable-row-openclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/datatable-row-openclose.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/input-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/input-spinner.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/loading-spinner-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/loading-spinner-blue.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/loading-spinner-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/loading-spinner-default.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/loading-spinner-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/loading-spinner-grey.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/overlay-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/overlay-icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-collapse-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-collapse-icon-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-collapse-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-collapse-icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-config-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-config-icon-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-config-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-config-icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-expand-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-expand-icon-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-expand-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-expand-icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-reload-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-reload-icon-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-reload-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-reload-icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-remove-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-remove-icon-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/portlet-remove-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/portlet-remove-icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/remove-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/remove-icon-small.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/Thumbs.db -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/aboutme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/aboutme.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/amazon.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/behance.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/blogger.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/deviantart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/deviantart.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/dribbble.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/dropbox.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/evernote.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/facebook.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/flickr.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/forrst.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/foursquare.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/github.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/googleplus.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/gravatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/gravatar.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/instagram.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/jolicloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/jolicloud.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/klout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/klout.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/last-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/last-fm.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/linkedin.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/myspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/myspace.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/picasa.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/pintrest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/pintrest.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/quora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/quora.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/reddit.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/rss.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/skype.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/spotify.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/stumbleupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/stumbleupon.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/tumblr.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/twitter.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/vimeo.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/vk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/vk.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/wordpress.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/xing.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/yahoo.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/social/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/social/youtube.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/syncfusion-icons-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/syncfusion-icons-white.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/img/syncfusion-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/img/syncfusion-icons.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ar={days:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"],daysShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت","أحد"],daysMin:["ح","ن","ث","ع","خ","ج","س","ح"],months:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthsShort:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],today:"هذا اليوم",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.az={days:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə","Bazar"],daysShort:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş.","B."],daysMin:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş.","B."],months:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthsShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],today:"Bu gün",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bg={days:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота","Неделя"],daysShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб","Нед"],daysMin:["Н","П","В","С","Ч","П","С","Н"],months:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Ян","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Ное","Дек"],today:"днес"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bs={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota","Nedjelja"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub","Ned"],daysMin:["N","Po","U","Sr","Č","Pe","Su","N"],months:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ca={days:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte","Diumenge"],daysShort:["Diu","Dil","Dmt","Dmc","Dij","Div","Dis","Diu"],daysMin:["dg","dl","dt","dc","dj","dv","ds","dg"],months:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],monthsShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],today:"Avui",clear:"Esborrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.cs={days:["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota","Neděle"],daysShort:["Ned","Pon","Úte","Stř","Čtv","Pát","Sob","Ned"],daysMin:["Ne","Po","Út","St","Čt","Pá","So","Ne"],months:["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"],monthsShort:["Led","Úno","Bře","Dub","Kvě","Čer","Čnc","Srp","Zář","Říj","Lis","Pro"],today:"Dnes",clear:"Vymazat",weekStart:1,format:"d.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.cy={days:["Sul","Llun","Mawrth","Mercher","Iau","Gwener","Sadwrn","Sul"],daysShort:["Sul","Llu","Maw","Mer","Iau","Gwe","Sad","Sul"],daysMin:["Su","Ll","Ma","Me","Ia","Gwe","Sa","Su"],months:["Ionawr","Chewfror","Mawrth","Ebrill","Mai","Mehefin","Gorfennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],monthsShort:["Ion","Chw","Maw","Ebr","Mai","Meh","Gor","Aws","Med","Hyd","Tach","Rha"],today:"Heddiw"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.da={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag","Søndag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør","Søn"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø","Sø"],months:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"I Dag",clear:"Nulstil"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.de={days:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag","Sonntag"],daysShort:["Son","Mon","Die","Mit","Don","Fre","Sam","Son"],daysMin:["So","Mo","Di","Mi","Do","Fr","Sa","So"],months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthsShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],today:"Heute",clear:"Löschen",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.el={days:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο","Κυριακή"],daysShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ","Κυρ"],daysMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα","Κυ"],months:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthsShort:["Ιαν","Φεβ","Μαρ","Απρ","Μάι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],today:"Σήμερα",clear:"Καθαρισμός",weekStart:1,format:"d/m/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["en-GB"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sun"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa","Su"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",clear:"Clear",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.es={days:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado","Domingo"],daysShort:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb","Dom"],daysMin:["Do","Lu","Ma","Mi","Ju","Vi","Sa","Do"],months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthsShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],today:"Hoy",clear:"Borrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.et={days:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev","Pühapäev"],daysShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup","Pühap"],daysMin:["P","E","T","K","N","R","L","P"],months:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthsShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],today:"Täna",clear:"Tühjenda",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.eu={days:["Igandea","Astelehena","Asteartea","Asteazkena","Osteguna","Ostirala","Larunbata","Igandea"],daysShort:["Ig","Al","Ar","Az","Og","Ol","Lr","Ig"],daysMin:["Ig","Al","Ar","Az","Og","Ol","Lr","Ig"],months:["Urtarrila","Otsaila","Martxoa","Apirila","Maiatza","Ekaina","Uztaila","Abuztua","Iraila","Urria","Azaroa","Abendua"],monthsShort:["Urt","Ots","Mar","Api","Mai","Eka","Uzt","Abu","Ira","Urr","Aza","Abe"],today:"Gaur"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fa={days:["یک‌شنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنج‌شنبه","جمعه","شنبه","یک‌شنبه"],daysShort:["یک","دو","سه","چهار","پنج","جمعه","شنبه","یک"],daysMin:["ی","د","س","چ","پ","ج","ش","ی"],months:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthsShort:["ژان","فور","مار","آور","مه","ژون","ژوی","اوت","سپت","اکت","نوا","دسا"],today:"امروز",clear:"پاک کن",weekStart:1,format:"yyyy/mm/dd"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fi={days:["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai","sunnuntai"],daysShort:["sun","maa","tii","kes","tor","per","lau","sun"],daysMin:["su","ma","ti","ke","to","pe","la","su"],months:["tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kesäkuu","heinäkuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu"],monthsShort:["tam","hel","maa","huh","tou","kes","hei","elo","syy","lok","mar","jou"],today:"tänään",weekStart:1,format:"d.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fo={days:["Sunnudagur","Mánadagur","Týsdagur","Mikudagur","Hósdagur","Fríggjadagur","Leygardagur","Sunnudagur"],daysShort:["Sun","Mán","Týs","Mik","Hós","Frí","Ley","Sun"],daysMin:["Su","Má","Tý","Mi","Hó","Fr","Le","Su"],months:["Januar","Februar","Marts","Apríl","Mei","Juni","Juli","August","Septembur","Oktobur","Novembur","Desembur"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"Í Dag",clear:"Reinsa"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fr={days:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi","Dimanche"],daysShort:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam","Dim"],daysMin:["D","L","Ma","Me","J","V","S","D"],months:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],monthsShort:["Jan","Fév","Mar","Avr","Mai","Jui","Jul","Aou","Sep","Oct","Nov","Déc"],today:"Aujourd'hui",clear:"Effacer",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fr={days:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi","dimanche"],daysShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam.","dim."],daysMin:["d","l","ma","me","j","v","s","d"],months:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthsShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],today:"Aujourd'hui",clear:"Effacer",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.gl={days:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado","Domingo"],daysShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb","Dom"],daysMin:["Do","Lu","Ma","Me","Xo","Ve","Sa","Do"],months:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthsShort:["Xan","Feb","Mar","Abr","Mai","Xun","Xul","Ago","Sep","Out","Nov","Dec"],today:"Hoxe",clear:"Limpar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.he={days:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת","ראשון"],daysShort:["א","ב","ג","ד","ה","ו","ש","א"],daysMin:["א","ב","ג","ד","ה","ו","ש","א"],months:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthsShort:["ינו","פבר","מרץ","אפר","מאי","יונ","יול","אוג","ספט","אוק","נוב","דצמ"],today:"היום",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hr={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota","Nedjelja"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub","Ned"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su","Ne"],months:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthsShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],today:"Danas"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hu={days:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat","Vasárnap"],daysShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo","Vas"],daysMin:["Va","Hé","Ke","Sz","Cs","Pé","Sz","Va"],months:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthsShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Sze","Okt","Nov","Dec"],today:"Ma",weekStart:1,format:"yyyy.mm.dd"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hy={days:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ","Կիրակի"],daysShort:["Կիր","Երկ","Երք","Չոր","Հնգ","Ուր","Շաբ","Կիր"],daysMin:["Կի","Եկ","Եք","Չո","Հի","Ու","Շա","Կի"],months:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],monthsShort:["Հնվ","Փետ","Մար","Ապր","Մայ","Հուն","Հուլ","Օգս","Սեպ","Հոկ","Նոյ","Դեկ"],today:"Այսօր",clear:"Ջնջել",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.id={days:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu","Minggu"],daysShort:["Mgu","Sen","Sel","Rab","Kam","Jum","Sab","Mgu"],daysMin:["Mg","Sn","Sl","Ra","Ka","Ju","Sa","Mg"],months:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ags","Sep","Okt","Nov","Des"],today:"Hari Ini",clear:"Kosongkan"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.is={days:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur","Sunnudagur"],daysShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau","Sun"],daysMin:["Su","Má","Þr","Mi","Fi","Fö","La","Su"],months:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],today:"Í Dag"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato","Domenica"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab","Dom"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa","Do"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",clear:"Cancella",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato","Domenica"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab","Dom"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa","Do"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",clear:"Cancella",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ja={days:["日曜","月曜","火曜","水曜","木曜","金曜","土曜","日曜"],daysShort:["日","月","火","水","木","金","土","日"],daysMin:["日","月","火","水","木","金","土","日"],months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",format:"yyyy/mm/dd",clear:"クリア"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ka={days:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი","კვირა"],daysShort:["კვი","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ","კვი"],daysMin:["კვ","ორ","სა","ოთ","ხუ","პა","შა","კვ"],months:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომები","ნოემბერი","დეკემბერი"],monthsShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],today:"დღეს",clear:"გასუფთავება",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kh={days:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍","អាទិត្យ"],daysShort:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍","អា.ទិ"],daysMin:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍","អា.ទិ"],months:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthsShort:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],today:"ថ្ងៃនេះ",clear:"សំអាត"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kk={days:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі","Жексенбі"],daysShort:["Жек","Дүй","Сей","Сәр","Бей","Жұм","Сен","Жек"],daysMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн","Жк"],months:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthsShort:["Қаң","Ақп","Нау","Сәу","Мамыр","Мау","Шлд","Тмз","Қыр","Қзн","Қар","Жел"],today:"Бүгін",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kr={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일","일요일"],daysShort:["일","월","화","수","목","금","토","일"],daysMin:["일","월","화","수","목","금","토","일"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"]}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.lt={days:["Sekmadienis","Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis","Sekmadienis"],daysShort:["S","Pr","A","T","K","Pn","Š","S"],daysMin:["Sk","Pr","An","Tr","Ke","Pn","Št","Sk"],months:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthsShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],today:"Šiandien",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.lv={days:["Svētdiena","Pirmdiena","Otrdiena","Trešdiena","Ceturtdiena","Piektdiena","Sestdiena","Svētdiena"],daysShort:["Sv","P","O","T","C","Pk","S","Sv"],daysMin:["Sv","Pr","Ot","Tr","Ce","Pk","Se","Sv"],months:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],today:"Šodien",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.me={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota","Nedjelja"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub","Ned"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su","Ne"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,clear:"Izbriši",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.mk={days:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота","Недела"],daysShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб","Нед"],daysMin:["Не","По","Вт","Ср","Че","Пе","Са","Не"],months:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],today:"Денес",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ms={days:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu","Ahad"],daysShort:["Aha","Isn","Sel","Rab","Kha","Jum","Sab","Aha"],daysMin:["Ah","Is","Se","Ra","Kh","Ju","Sa","Ah"],months:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],today:"Hari Ini"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.nb.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.nb={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag","Søndag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør","Søn"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø","Sø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I Dag"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["nl-BE"]={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag","zondag"],daysShort:["zo","ma","di","wo","do","vr","za","zo"],daysMin:["zo","ma","di","wo","do","vr","za","zo"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",clear:"Leegmaken",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.nl={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag","zondag"],daysShort:["zo","ma","di","wo","do","vr","za","zo"],daysMin:["zo","ma","di","wo","do","vr","za","zo"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",clear:"Wissen",weekStart:1,format:"dd-mm-yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.no={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I dag",clear:"Nullstill",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.pl={days:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota","Niedziela"],daysShort:["Nie","Pn","Wt","Śr","Czw","Pt","So","Nie"],daysMin:["N","Pn","Wt","Śr","Cz","Pt","So","N"],months:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthsShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],today:"Dzisiaj",weekStart:1,clear:"Wyczyść"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["pt-BR"]={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado","Domingo"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb","Dom"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa","Do"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",clear:"Limpar"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.pt={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado","Domingo"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb","Dom"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa","Do"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",clear:"Limpar"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ro={days:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă","Duminică"],daysShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm","Dum"],daysMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ","Du"],months:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthsShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],today:"Astăzi",clear:"Șterge",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["rs-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota","Nedelja"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub","Ned"],daysMin:["N","Po","U","Sr","Č","Pe","Su","N"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.rs={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота","Недеља"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб","Нед"],daysMin:["Н","По","У","Ср","Ч","Пе","Су","Н"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ru={days:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота","Воскресенье"],daysShort:["Вск","Пнд","Втр","Срд","Чтв","Птн","Суб","Вск"],daysMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб","Вс"],months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Сегодня",clear:"Очистить",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sk={days:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota","Nedeľa"],daysShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob","Ned"],daysMin:["Ne","Po","Ut","St","Št","Pia","So","Ne"],months:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],today:"Dnes"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sl={days:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota","Nedelja"],daysShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob","Ned"],daysMin:["Ne","Po","To","Sr","Če","Pe","So","Ne"],months:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danes"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sq={days:["E Diel","E Hënë","E Martē","E Mërkurë","E Enjte","E Premte","E Shtunë","E Diel"],daysShort:["Die","Hën","Mar","Mër","Enj","Pre","Shtu","Die"],daysMin:["Di","Hë","Ma","Më","En","Pr","Sht","Di"],months:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthsShort:["Jan","Shk","Mar","Pri","Maj","Qer","Korr","Gu","Sht","Tet","Nën","Dhjet"],today:"Sot"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["sr-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota","Nedelja"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub","Ned"],daysMin:["N","Po","U","Sr","Č","Pe","Su","N"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sr={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота","Недеља"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб","Нед"],daysMin:["Н","По","У","Ср","Ч","Пе","Су","Н"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sv={days:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag","Söndag"],daysShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör","Sön"],daysMin:["Sö","Må","Ti","On","To","Fr","Lö","Sö"],months:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Idag",format:"yyyy-mm-dd",weekStart:1,clear:"Rensa"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.sw.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sw={days:["Jumapili","Jumatatu","Jumanne","Jumatano","Alhamisi","Ijumaa","Jumamosi","Jumapili"],daysShort:["J2","J3","J4","J5","Alh","Ij","J1","J2"],daysMin:["2","3","4","5","A","I","1","2"],months:["Januari","Februari","Machi","Aprili","Mei","Juni","Julai","Agosti","Septemba","Oktoba","Novemba","Desemba"],monthsShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ago","Sep","Okt","Nov","Des"],today:"Leo"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.th={days:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัส","ศุกร์","เสาร์","อาทิตย์"],daysShort:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],daysMin:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],months:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthsShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],today:"วันนี้"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.tr={days:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi","Pazar"],daysShort:["Pz","Pzt","Sal","Çrş","Prş","Cu","Cts","Pz"],daysMin:["Pz","Pzt","Sa","Çr","Pr","Cu","Ct","Pz"],months:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthsShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],today:"Bugün",clear:"Temizle",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.uk={days:["Неділя","Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота","Неділя"],daysShort:["Нед","Пнд","Втр","Срд","Чтв","Птн","Суб","Нед"],daysMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб","Нд"],months:["Cічень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthsShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],today:"Сьогодні",clear:"Очистити",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.vi={days:["Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy","Chủ nhật"],daysShort:["CN","Thứ 2","Thứ 3","Thứ 4","Thứ 5","Thứ 6","Thứ 7","CN"],daysMin:["CN","T2","T3","T4","T5","T6","T7","CN"],months:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],monthsShort:["Th1","Th2","Th3","Th4","Th5","Th6","Th7","Th8","Th9","Th10","Th11","Th12"],today:"Hôm nay",clear:"Xóa",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-CN"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日"],daysShort:["周日","周一","周二","周三","周四","周五","周六","周日"],daysMin:["日","一","二","三","四","五","六","日"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],today:"今日",format:"yyyy年mm月dd日",weekStart:1,clear:"清空"}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-TW"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日"],daysShort:["週日","週一","週二","週三","週四","週五","週六","週日"],daysMin:["日","一","二","三","四","五","六","日"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],today:"今天",format:"yyyy年mm月dd日",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-slimscroll/README.md: -------------------------------------------------------------------------------- 1 | # What is slimScroll? 2 | 3 | slimScroll is a small jQuery plugin that transforms any div into a scrollable area with a nice scrollbar - similar to the one Facebook and Google started using in their products recently. slimScroll doesn't occupy any visual space as it only appears on a user initiated mouse-over. User can drag the scrollbar or use mouse-wheel to change the scroll value. 4 | 5 | Demo and more: http://rocha.la/jQuery-slimScroll 6 | 7 | Copyright (c) 2011 Piotr Rochala (http://rocha.la) 8 | Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. 9 | 10 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/messages_da.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Dette felt er påkrævet.",maxlength:a.validator.format("Indtast højst {0} tegn."),minlength:a.validator.format("Indtast mindst {0} tegn."),rangelength:a.validator.format("Indtast mindst {0} og højst {1} tegn."),email:"Indtast en gyldig email-adresse.",url:"Indtast en gyldig URL.",date:"Indtast en gyldig dato.",number:"Indtast et tal.",digits:"Indtast kun cifre.",equalTo:"Indtast den samme værdi igen.",range:a.validator.format("Angiv en værdi mellem {0} og {1}."),max:a.validator.format("Angiv en værdi der højst er {0}."),min:a.validator.format("Angiv en værdi der mindst er {0}."),creditcard:"Indtast et gyldigt kreditkortnummer."})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/messages_he.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"השדה הזה הינו שדה חובה",remote:"נא לתקן שדה זה",email:'נא למלא כתובת דוא"ל חוקית',url:"נא למלא כתובת אינטרנט חוקית",date:"נא למלא תאריך חוקי",dateISO:"נא למלא תאריך חוקי (ISO)",number:"נא למלא מספר",digits:"נא למלא רק מספרים",creditcard:"נא למלא מספר כרטיס אשראי חוקי",equalTo:"נא למלא את אותו ערך שוב",extension:"נא למלא ערך עם סיומת חוקית",maxlength:a.validator.format(".נא לא למלא יותר מ- {0} תווים"),minlength:a.validator.format("נא למלא לפחות {0} תווים"),rangelength:a.validator.format("נא למלא ערך בין {0} ל- {1} תווים"),range:a.validator.format("נא למלא ערך בין {0} ל- {1}"),max:a.validator.format("נא למלא ערך קטן או שווה ל- {0}"),min:a.validator.format("נא למלא ערך גדול או שווה ל- {0}")})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/messages_ja.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"このフィールドは必須です。",remote:"このフィールドを修正してください。",email:"有効なEメールアドレスを入力してください。",url:"有効なURLを入力してください。",date:"有効な日付を入力してください。",dateISO:"有効な日付(ISO)を入力してください。",number:"有効な数字を入力してください。",digits:"数字のみを入力してください。",creditcard:"有効なクレジットカード番号を入力してください。",equalTo:"同じ値をもう一度入力してください。",extension:"有効な拡張子を含む値を入力してください。",maxlength:a.validator.format("{0} 文字以内で入力してください。"),minlength:a.validator.format("{0} 文字以上で入力してください。"),rangelength:a.validator.format("{0} 文字から {1} 文字までの値を入力してください。"),range:a.validator.format("{0} から {1} までの値を入力してください。"),max:a.validator.format("{0} 以下の値を入力してください。"),min:a.validator.format("{0} 以上の値を入力してください。")})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/messages_ko.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"필수 항목입니다.",remote:"항목을 수정하세요.",email:"유효하지 않은 E-Mail주소입니다.",url:"유효하지 않은 URL입니다.",date:"올바른 날짜를 입력하세요.",dateISO:"올바른 날짜(ISO)를 입력하세요.",number:"유효한 숫자가 아닙니다.",digits:"숫자만 입력 가능합니다.",creditcard:"신용카드 번호가 바르지 않습니다.",equalTo:"같은 값을 다시 입력하세요.",extension:"올바른 확장자가 아닙니다.",maxlength:a.validator.format("{0}자를 넘을 수 없습니다. "),minlength:a.validator.format("{0}자 이상 입력하세요."),rangelength:a.validator.format("문자 길이가 {0} 에서 {1} 사이의 값을 입력하세요."),range:a.validator.format("{0} 에서 {1} 사이의 값을 입력하세요."),max:a.validator.format("{0} 이하의 값을 입력하세요."),min:a.validator.format("{0} 이상의 값을 입력하세요.")})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/messages_sk.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Povinné zadať.",maxlength:a.validator.format("Maximálne {0} znakov."),minlength:a.validator.format("Minimálne {0} znakov."),rangelength:a.validator.format("Minimálne {0} a Maximálne {1} znakov."),email:"E-mailová adresa musí byť platná.",url:"URL musí byť platný.",date:"Musí byť dátum.",number:"Musí byť číslo.",digits:"Môže obsahovať iba číslice.",equalTo:"Dva hodnoty sa musia rovnať.",range:a.validator.format("Musí byť medzi {0} a {1}."),max:a.validator.format("Nemôže byť viac ako{0}."),min:a.validator.format("Nemôže byť menej ako{0}."),creditcard:"Číslo platobnej karty musí byť platné."})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/messages_vi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Hãy nhập.",remote:"Hãy sửa cho đúng.",email:"Hãy nhập email.",url:"Hãy nhập URL.",date:"Hãy nhập ngày.",dateISO:"Hãy nhập ngày (ISO).",number:"Hãy nhập số.",digits:"Hãy nhập chữ số.",creditcard:"Hãy nhập số thẻ tín dụng.",equalTo:"Hãy nhập thêm lần nữa.",extension:"Phần mở rộng không đúng.",maxlength:a.validator.format("Hãy nhập từ {0} kí tự trở xuống."),minlength:a.validator.format("Hãy nhập từ {0} kí tự trở lên."),rangelength:a.validator.format("Hãy nhập từ {0} đến {1} kí tự."),range:a.validator.format("Hãy nhập từ {0} đến {1}."),max:a.validator.format("Hãy nhập từ {0} trở xuống."),min:a.validator.format("Hãy nhập từ {1} trở lên.")})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/messages_zh.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"必须填写",remote:"请修正此栏位",email:"请输入有效的电子邮件",url:"请输入有效的网址",date:"请输入有效的日期",dateISO:"请输入有效的日期 (YYYY-MM-DD)",number:"请输入正确的数字",digits:"只可输入数字",creditcard:"请输入有效的信用卡号码",equalTo:"你的输入不相同",extension:"请输入有效的后缀",maxlength:a.validator.format("最多 {0} 个字"),minlength:a.validator.format("最少 {0} 个字"),rangelength:a.validator.format("请输入长度为 {0} 至 {1} 之間的字串"),range:a.validator.format("请输入 {0} 至 {1} 之间的数值"),max:a.validator.format("请输入不大于 {0} 的数值"),min:a.validator.format("请输入不小于 {0} 的数值")})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/messages_zh_TW.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"必須填寫",remote:"請修正此欄位",email:"請輸入有效的電子郵件",url:"請輸入有效的網址",date:"請輸入有效的日期",dateISO:"請輸入有效的日期 (YYYY-MM-DD)",number:"請輸入正確的數值",digits:"只可輸入數字",creditcard:"請輸入有效的信用卡號碼",equalTo:"請重複輸入一次",extension:"請輸入有效的後綴",maxlength:a.validator.format("最多 {0} 個字"),minlength:a.validator.format("最少 {0} 個字"),rangelength:a.validator.format("請輸入長度為 {0} 至 {1} 之間的字串"),range:a.validator.format("請輸入 {0} 至 {1} 之間的數值"),max:a.validator.format("請輸入不大於 {0} 的數值"),min:a.validator.format("請輸入不小於 {0} 的數值")})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_de.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: DE 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value); 16 | }, 17 | number: function(value, element) { 18 | return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); 19 | } 20 | }); 21 | 22 | })); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_de.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_es_CL.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: ES_CL 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\-\d\d?\-\d\d\d?\d?$/.test(value); 16 | }, 17 | number: function(value, element) { 18 | return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); 19 | } 20 | }); 21 | 22 | })); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_es_CL.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\-\d\d?\-\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_fi.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: FI 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d{1,2}\.\d{1,2}\.\d{4}$/.test(value); 16 | }, 17 | number: function(value, element) { 18 | return this.optional(element) || /^-?(?:\d+)(?:,\d+)?$/.test(value); 19 | } 20 | }); 21 | 22 | })); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_fi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d{1,2}\.\d{1,2}\.\d{4}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_nl.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: NL 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(value); 16 | } 17 | }); 18 | 19 | })); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_nl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_pt.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: PT_BR 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value); 16 | } 17 | }); 18 | 19 | })); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/jquery-validation/js/localization/methods_pt.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2014 Igor Vaynberg 2 | 3 | Version: @@ver@@ Timestamp: @@timestamp@@ 4 | 5 | This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU 6 | General Public License version 2 (the "GPL License"). You may choose either license to govern your 7 | use of this software only upon the condition that you accept all of the terms of either the Apache 8 | License or the GPL License. 9 | 10 | You may obtain a copy of the Apache License and the GPL License at: 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | http://www.gnu.org/licenses/gpl-2.0.html 14 | 15 | Unless required by applicable law or agreed to in writing, software distributed under the Apache License 16 | or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 17 | either express or implied. See the Apache License and the GPL License for the specific language governing 18 | permissions and limitations under the Apache License and the GPL License. 19 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "version": "3.5.1", 4 | "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "select2-spinner.gif"], 5 | "dependencies": { 6 | "jquery": ">= 1.7.1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": 3 | "ivaynberg/select2", 4 | "description": "Select2 is a jQuery based replacement for select boxes.", 5 | "version": "3.5.1", 6 | "type": "component", 7 | "homepage": "http://ivaynberg.github.io/select2/", 8 | "license": "Apache-2.0", 9 | "require": { 10 | "robloach/component-installer": "*", 11 | "components/jquery": ">=1.7.1" 12 | }, 13 | "extra": { 14 | "component": { 15 | "scripts": [ 16 | "select2.js" 17 | ], 18 | "files": [ 19 | "select2.js", 20 | "select2_locale_*.js", 21 | "select2.css", 22 | "select2-bootstrap.css", 23 | "select2-spinner.gif", 24 | "select2.png", 25 | "select2x2.png" 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/select2/select2-spinner.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/select2/select2.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Catalan translation. 3 | * 4 | * Author: David Planella 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ca'] = { 10 | formatNoMatches: function () { return "No s'ha trobat cap coincidència"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduïu " + n + " caràcter" + (n == 1 ? "" : "s") + " més"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Introduïu " + n + " caràcter" + (n == 1? "" : "s") + "menys"; }, 13 | formatSelectionTooBig: function (limit) { return "Només podeu seleccionar " + limit + " element" + (limit == 1 ? "" : "s"); }, 14 | formatLoadMore: function (pageNumber) { return "S'estan carregant més resultats…"; }, 15 | formatSearching: function () { return "S'està cercant…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ca']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Danish translation. 3 | * 4 | * Author: Anders Jenbo 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['da'] = { 10 | formatNoMatches: function () { return "Ingen resultater fundet"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Angiv venligst " + n + " tegn mere"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Angiv venligst " + n + " tegn mindre"; }, 13 | formatSelectionTooBig: function (limit) { return "Du kan kun vælge " + limit + " emne" + (limit === 1 ? "" : "r"); }, 14 | formatLoadMore: function (pageNumber) { return "Indlæser flere resultater…"; }, 15 | formatSearching: function () { return "Søger…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['da']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Spanish translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['es'] = { 8 | formatNoMatches: function () { return "No se encontraron resultados"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Por favor, introduzca " + n + " car" + (n == 1? "ácter" : "acteres"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Por favor, elimine " + n + " car" + (n == 1? "ácter" : "acteres"); }, 11 | formatSelectionTooBig: function (limit) { return "Sólo puede seleccionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, 12 | formatLoadMore: function (pageNumber) { return "Cargando más resultados…"; }, 13 | formatSearching: function () { return "Buscando…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['es']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_et.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Estonian translation. 3 | * 4 | * Author: Kuldar Kalvik 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['et'] = { 10 | formatNoMatches: function () { return "Tulemused puuduvad"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Sisesta " + n + " täht" + (n == 1 ? "" : "e") + " rohkem"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Sisesta " + n + " täht" + (n == 1? "" : "e") + " vähem"; }, 13 | formatSelectionTooBig: function (limit) { return "Saad vaid " + limit + " tulemus" + (limit == 1 ? "e" : "t") + " valida"; }, 14 | formatLoadMore: function (pageNumber) { return "Laen tulemusi.."; }, 15 | formatSearching: function () { return "Otsin.."; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['et']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Hebrew translation. 3 | * 4 | * Author: Yakir Sitbon 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['he'] = { 10 | formatNoMatches: function () { return "לא נמצאו התאמות"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "נא להזין עוד " + n + " תווים נוספים"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "נא להזין פחות " + n + " תווים"; }, 13 | formatSelectionTooBig: function (limit) { return "ניתן לבחור " + limit + " פריטים"; }, 14 | formatLoadMore: function (pageNumber) { return "טוען תוצאות נוספות…"; }, 15 | formatSearching: function () { return "מחפש…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['he']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Hungarian translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['hu'] = { 8 | formatNoMatches: function () { return "Nincs találat."; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Túl rövid. Még " + n + " karakter hiányzik."; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Túl hosszú. " + n + " karakterrel több, mint kellene."; }, 11 | formatSelectionTooBig: function (limit) { return "Csak " + limit + " elemet lehet kiválasztani."; }, 12 | formatLoadMore: function (pageNumber) { return "Töltés…"; }, 13 | formatSearching: function () { return "Keresés…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['hu']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Indonesian translation. 3 | * 4 | * Author: Ibrahim Yusuf 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['id'] = { 10 | formatNoMatches: function () { return "Tidak ada data yang sesuai"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Masukkan " + n + " huruf lagi" + (n == 1 ? "" : "s"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Hapus " + n + " huruf" + (n == 1 ? "" : "s"); }, 13 | formatSelectionTooBig: function (limit) { return "Anda hanya dapat memilih " + limit + " pilihan" + (limit == 1 ? "" : "s"); }, 14 | formatLoadMore: function (pageNumber) { return "Mengambil data…"; }, 15 | formatSearching: function () { return "Mencari…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['id']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Icelandic translation. 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['is'] = { 8 | formatNoMatches: function () { return "Ekkert fannst"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vinsamlegast skrifið " + n + " staf" + (n > 1 ? "i" : "") + " í viðbót"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vinsamlegast styttið texta um " + n + " staf" + (n > 1 ? "i" : ""); }, 11 | formatSelectionTooBig: function (limit) { return "Þú getur aðeins valið " + limit + " atriði"; }, 12 | formatLoadMore: function (pageNumber) { return "Sæki fleiri niðurstöður…"; }, 13 | formatSearching: function () { return "Leita…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['is']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Italian translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['it'] = { 8 | formatNoMatches: function () { return "Nessuna corrispondenza trovata"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Inserisci ancora " + n + " caratter" + (n == 1? "e" : "i"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Inserisci " + n + " caratter" + (n == 1? "e" : "i") + " in meno"; }, 11 | formatSelectionTooBig: function (limit) { return "Puoi selezionare solo " + limit + " element" + (limit == 1 ? "o" : "i"); }, 12 | formatLoadMore: function (pageNumber) { return "Caricamento in corso…"; }, 13 | formatSearching: function () { return "Ricerca…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['it']); 17 | })(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Japanese translation. 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['ja'] = { 8 | formatNoMatches: function () { return "該当なし"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "後" + n + "文字入れてください"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "検索文字列が" + n + "文字長すぎます"; }, 11 | formatSelectionTooBig: function (limit) { return "最多で" + limit + "項目までしか選択できません"; }, 12 | formatLoadMore: function (pageNumber) { return "読込中・・・"; }, 13 | formatSearching: function () { return "検索中・・・"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ja']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_ka.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Georgian (Kartuli) translation. 3 | * 4 | * Author: Dimitri Kurashvili dimakura@gmail.com 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ka'] = { 10 | formatNoMatches: function () { return "ვერ მოიძებნა"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "გთხოვთ შეიყვანოთ კიდევ " + n + " სიმბოლო"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "გთხოვთ წაშალოთ " + n + " სიმბოლო"; }, 13 | formatSelectionTooBig: function (limit) { return "თქვენ შეგიძლიათ მხოლოდ " + limit + " ჩანაწერის მონიშვნა"; }, 14 | formatLoadMore: function (pageNumber) { return "შედეგის ჩატვირთვა…"; }, 15 | formatSearching: function () { return "ძებნა…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ka']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Korean translation. 3 | * 4 | * @author Swen Mun 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ko'] = { 10 | formatNoMatches: function () { return "결과 없음"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "너무 짧습니다. "+n+"글자 더 입력해주세요."; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "너무 깁니다. "+n+"글자 지워주세요."; }, 13 | formatSelectionTooBig: function (limit) { return "최대 "+limit+"개까지만 선택하실 수 있습니다."; }, 14 | formatLoadMore: function (pageNumber) { return "불러오는 중…"; }, 15 | formatSearching: function () { return "검색 중…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ko']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_mk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Macedonian translation. 3 | * 4 | * Author: Marko Aleksic 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['mk'] = { 10 | formatNoMatches: function () { return "Нема пронајдено совпаѓања"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Ве молиме внесете уште " + n + " карактер" + (n == 1 ? "" : "и"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Ве молиме внесете " + n + " помалку карактер" + (n == 1? "" : "и"); }, 13 | formatSelectionTooBig: function (limit) { return "Можете да изберете само " + limit + " ставк" + (limit == 1 ? "а" : "и"); }, 14 | formatLoadMore: function (pageNumber) { return "Вчитување резултати…"; }, 15 | formatSearching: function () { return "Пребарување…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['mk']); 19 | })(jQuery); -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Malay translation. 3 | * 4 | * Author: Kepoweran 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ms'] = { 10 | formatNoMatches: function () { return "Tiada padanan yang ditemui"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Sila masukkan " + n + " aksara lagi"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Sila hapuskan " + n + " aksara"; }, 13 | formatSelectionTooBig: function (limit) { return "Anda hanya boleh memilih " + limit + " pilihan"; }, 14 | formatLoadMore: function (pageNumber) { return "Sedang memuatkan keputusan…"; }, 15 | formatSearching: function () { return "Mencari…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ms']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Dutch translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['nl'] = { 8 | formatNoMatches: function () { return "Geen resultaten gevonden"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vul nog " + n + " karakter" + (n == 1? "" : "s") + " in"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Haal " + n + " karakter" + (n == 1? "" : "s") + " weg"; }, 11 | formatSelectionTooBig: function (limit) { return "Maximaal " + limit + " item" + (limit == 1 ? "" : "s") + " toegestaan"; }, 12 | formatLoadMore: function (pageNumber) { return "Meer resultaten laden…"; }, 13 | formatSearching: function () { return "Zoeken…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['nl']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Norwegian translation. 3 | * 4 | * Author: Torgeir Veimo 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['no'] = { 10 | formatNoMatches: function () { return "Ingen treff"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vennligst skriv inn " + n + (n>1 ? " flere tegn" : " tegn til"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vennligst fjern " + n + " tegn"; }, 13 | formatSelectionTooBig: function (limit) { return "Du kan velge maks " + limit + " elementer"; }, 14 | formatLoadMore: function (pageNumber) { return "Laster flere resultater…"; }, 15 | formatSearching: function () { return "Søker…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['no']); 19 | })(jQuery); 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Brazilian Portuguese translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['pt-BR'] = { 8 | formatNoMatches: function () { return "Nenhum resultado encontrado"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Digite mais " + n + " caracter" + (n == 1? "" : "es"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " caracter" + (n == 1? "" : "es"); }, 11 | formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, 12 | formatLoadMore: function (pageNumber) { return "Carregando mais resultados…"; }, 13 | formatSearching: function () { return "Buscando…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['pt-BR']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_pt-PT.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Portuguese (Portugal) translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['pt-PT'] = { 8 | formatNoMatches: function () { return "Nenhum resultado encontrado"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduza " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, 11 | formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, 12 | formatLoadMore: function (pageNumber) { return "A carregar mais resultados…"; }, 13 | formatSearching: function () { return "A pesquisar…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['pt-PT']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Romanian translation. 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['ro'] = { 8 | formatNoMatches: function () { return "Nu a fost găsit nimic"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vă rugăm să introduceți incă " + n + " caracter" + (n == 1 ? "" : "e"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vă rugăm să introduceți mai puțin de " + n + " caracter" + (n == 1? "" : "e"); }, 11 | formatSelectionTooBig: function (limit) { return "Aveți voie să selectați cel mult " + limit + " element" + (limit == 1 ? "" : "e"); }, 12 | formatLoadMore: function (pageNumber) { return "Se încarcă…"; }, 13 | formatSearching: function () { return "Căutare…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ro']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Swedish translation. 3 | * 4 | * Author: Jens Rantil 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['sv'] = { 10 | formatNoMatches: function () { return "Inga träffar"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Var god skriv in " + n + (n>1 ? " till tecken" : " tecken till"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Var god sudda ut " + n + " tecken"; }, 13 | formatSelectionTooBig: function (limit) { return "Du kan max välja " + limit + " element"; }, 14 | formatLoadMore: function (pageNumber) { return "Laddar fler resultat…"; }, 15 | formatSearching: function () { return "Söker…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['sv']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Thai translation. 3 | * 4 | * Author: Atsawin Chaowanakritsanakul 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['th'] = { 10 | formatNoMatches: function () { return "ไม่พบข้อมูล"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "โปรดพิมพ์เพิ่มอีก " + n + " ตัวอักษร"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "โปรดลบออก " + n + " ตัวอักษร"; }, 13 | formatSelectionTooBig: function (limit) { return "คุณสามารถเลือกได้ไม่เกิน " + limit + " รายการ"; }, 14 | formatLoadMore: function (pageNumber) { return "กำลังค้นข้อมูลเพิ่ม…"; }, 15 | formatSearching: function () { return "กำลังค้นข้อมูล…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['th']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Turkish translation. 3 | * 4 | * Author: Salim KAYABAŞI 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['tr'] = { 10 | formatNoMatches: function () { return "Sonuç bulunamadı"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "En az " + n + " karakter daha girmelisiniz"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return n + " karakter azaltmalısınız"; }, 13 | formatSelectionTooBig: function (limit) { return "Sadece " + limit + " seçim yapabilirsiniz"; }, 14 | formatLoadMore: function (pageNumber) { return "Daha fazla…"; }, 15 | formatSearching: function () { return "Aranıyor…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['tr']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_ug-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Uyghur translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['ug-CN'] = { 7 | formatNoMatches: function () { return "ماس كېلىدىغان ئۇچۇر تېپىلمىدى"; }, 8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "يەنە " + n + " ھەرپ كىرگۈزۈڭ";}, 9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "" + n + "ھەرپ ئۆچۈرۈڭ";}, 10 | formatSelectionTooBig: function (limit) { return "ئەڭ كۆپ بولغاندا" + limit + " تال ئۇچۇر تاللىيالايسىز"; }, 11 | formatLoadMore: function (pageNumber) { return "ئۇچۇرلار ئوقۇلىۋاتىدۇ…"; }, 12 | formatSearching: function () { return "ئىزدەۋاتىدۇ…"; } 13 | }; 14 | 15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ug-CN']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Vietnamese translation. 3 | * 4 | * Author: Long Nguyen 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['vi'] = { 10 | formatNoMatches: function () { return "Không tìm thấy kết quả"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vui lòng nhập nhiều hơn " + n + " ký tự" + (n == 1 ? "" : "s"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vui lòng nhập ít hơn " + n + " ký tự" + (n == 1? "" : "s"); }, 13 | formatSelectionTooBig: function (limit) { return "Chỉ có thể chọn được " + limit + " tùy chọn" + (limit == 1 ? "" : "s"); }, 14 | formatLoadMore: function (pageNumber) { return "Đang lấy thêm kết quả…"; }, 15 | formatSearching: function () { return "Đang tìm…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['vi']); 19 | })(jQuery); 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Chinese translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['zh-CN'] = { 7 | formatNoMatches: function () { return "没有找到匹配项"; }, 8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "请再输入" + n + "个字符";}, 9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "请删掉" + n + "个字符";}, 10 | formatSelectionTooBig: function (limit) { return "你只能选择最多" + limit + "项"; }, 11 | formatLoadMore: function (pageNumber) { return "加载结果中…"; }, 12 | formatSearching: function () { return "搜索中…"; } 13 | }; 14 | 15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['zh-CN']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2_locale_zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Traditional Chinese translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['zh-TW'] = { 7 | formatNoMatches: function () { return "沒有找到相符的項目"; }, 8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "請再輸入" + n + "個字元";}, 9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "請刪掉" + n + "個字元";}, 10 | formatSelectionTooBig: function (limit) { return "你只能選擇最多" + limit + "項"; }, 11 | formatLoadMore: function (pageNumber) { return "載入中…"; }, 12 | formatSearching: function () { return "搜尋中…"; } 13 | }; 14 | 15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['zh-TW']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/select2/select2x2.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/simple-line-icons/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/simple-line-icons/License.txt -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/simple-line-icons/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/simple-line-icons/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/simple-line-icons/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/simple-line-icons/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/simple-line-icons/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/simple-line-icons/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/treetable/default/allbgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/treetable/default/allbgs.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/treetable/vsStyle/allbgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/treetable/vsStyle/allbgs.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/treetable/vsStyle/allbgs.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/treetable/vsStyle/allbgs.psd -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/treetable/vsStyle/jquery.treeTable.css: -------------------------------------------------------------------------------- 1 | .tree_table .vsStyle_node, .tree_table .vsStyle_active_node {width:16px;height:16px;border: medium none; margin: 0; padding: 0;display: inline-block;} 2 | .tree_table .vsStyle_active_node {cursor: pointer;} 3 | .tree_table .vsStyle_open, .tree_table .vsStyle_last_open{background:url(./allbgs.png) no-repeat 0px 0px;width:16px;} 4 | .tree_table .vsStyle_shut, .tree_table .vsStyle_last_shut{background:url(./allbgs.png) no-repeat -16px 0px;width:16px;} 5 | .tree_table .vsStyle_hover_open, .tree_table .vsStyle_hover_last_open{background:url(./allbgs.png) no-repeat -32px 0px;width:16px;} 6 | .tree_table .vsStyle_hover_shut, .tree_table .vsStyle_hover_last_shut{background:url(./allbgs.png) no-repeat -48px 0px;width:16px;} 7 | -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/uniform/images/bg-input-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/uniform/images/bg-input-focus.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/uniform/images/bg-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/uniform/images/bg-input.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/uniform/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/uniform/images/sprite.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/uniform/images/sprite_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/uniform/images/sprite_original.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/awesomeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/awesomeStyle/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/metroStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/metroStyle/img/line_conn.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/metroStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/metroStyle/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/metroStyle/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/metroStyle/img/metro.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/metroStyle/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/metroStyle/img/metro.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/AutoProgramming/687f23f26085d7eb0680ed4db4ffc784f2c586af/src/main/webapp/static/global/plugins/ztree/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /src/main/webapp/template/bak/daoTemplate.ftl: -------------------------------------------------------------------------------- 1 | <#if packageStyle == "service"> 2 | package ${sourceBasePackage}.${entityPackage}.dao; 3 | import ${sourceBasePackage}.${entityPackage}.entity.${className}; 4 | <#else> 5 | package ${sourceBasePackage}.dao.${entityPackage}; 6 | import ${sourceBasePackage}.entity.${entityPackage}.${className}; 7 | 8 | import com.aibibang.common.base.BaseDao; 9 | 10 | /** 11 | * 12 | * ${description}dao接口. 13 | * 14 | *

15 |  * 	历史记录:
16 |  * 	${createDate} ${author}
17 |  * 	新建文件
18 |  * 
19 | * 20 | * @author 21 | *
22 |  * SD
23 |  * 	${author}
24 |  * PG
25 |  *	${author}
26 |  * UT
27 |  *
28 |  * MA
29 |  * 
30 | * @version $Rev$ 31 | * 32 | *

$Id$ 33 | * 34 | */ 35 | public interface ${className}Dao extends BaseDao<${className}, ${pkType}> { 36 | 37 | 38 | } -------------------------------------------------------------------------------- /src/main/webapp/template/default/daoTemplate.ftl: -------------------------------------------------------------------------------- 1 | <#if packageStyle == "service"> 2 | package ${sourceBasePackage}.${entityPackage}.dao; 3 | import ${sourceBasePackage}.${entityPackage}.entity.${className}; 4 | <#else> 5 | package ${sourceBasePackage}.dao.${entityPackage}; 6 | import ${sourceBasePackage}.entity.${entityPackage}.${className}; 7 | 8 | import com.common.base.BaseDao; 9 | 10 | /** 11 | * 12 | * ${description}dao接口. 13 | * 14 | *

15 |  * 	历史记录:
16 |  * 	${createDate} ${author}
17 |  * 	新建文件
18 |  * 
19 | * 20 | * @author 21 | *
22 |  * SD
23 |  * 	${author}
24 |  * PG
25 |  *	${author}
26 |  * UT
27 |  *
28 |  * MA
29 |  * 
30 | * @version $Rev$ 31 | * 32 | *

$Id$ 33 | * 34 | */ 35 | public interface ${className}Dao extends BaseDao<${className}, ${pkType}> { 36 | 37 | 38 | } -------------------------------------------------------------------------------- /src/main/webapp/template/hibernate/daoTemplate.ftl: -------------------------------------------------------------------------------- 1 | <#if packageStyle == "service"> 2 | package ${sourceBasePackage}.${entityPackage}.dao; 3 | import ${sourceBasePackage}.${entityPackage}.entity.${className}; 4 | <#else> 5 | package ${sourceBasePackage}.dao.${entityPackage}; 6 | import ${sourceBasePackage}.entity.${entityPackage}.${className}; 7 | 8 | import com.common.base.BaseDao; 9 | 10 | /** 11 | * 12 | * ${description}dao接口. 13 | * 14 | *

15 |  * 	历史记录:
16 |  * 	${createDate} ${author}
17 |  * 	新建文件
18 |  * 
19 | * 20 | * @author 21 | *
22 |  * SD
23 |  * 	${author}
24 |  * PG
25 |  *	${author}
26 |  * UT
27 |  *
28 |  * MA
29 |  * 
30 | * @version $Rev$ 31 | * 32 | *

$Id$ 33 | * 34 | */ 35 | @Repository 36 | public interface ${className}Dao extends BaseDao<${className}, ${pkType}> { 37 | 38 | 39 | } -------------------------------------------------------------------------------- /src/main/webapp/template/hibernate/sqlxmlTemplate.ftl: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | <#list columns as po> 8 | <#if po.columnName == 'id'> 9 | 10 | 11 | 12 | <#else> 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/main/webapp/webpage/system/menu/menuSearch.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 2 | <%@include file="/context/mytags.jsp"%> 3 |

4 | 15 |
16 |
17 | -------------------------------------------------------------------------------- /src/main/webapp/webpage/system/org/orgSearch.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 2 | <%@include file="/context/mytags.jsp"%> 3 |
4 | 15 |
16 |
17 | -------------------------------------------------------------------------------- /src/main/webapp/webpage/system/role/sysRoleList.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 2 | <%@include file="/context/mytags.jsp"%> 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 25 | 26 | 27 | 28 |
#角色编码角色名称备注操作
${vs.count + page.offset}${sysRole.roleCode}${sysRole.roleName}${sysRole.description} 22 | 编辑 23 | 删除 24 |
29 |
30 |
${page}
-------------------------------------------------------------------------------- /src/test/java/test/Test.java: -------------------------------------------------------------------------------- 1 | package test; 2 | 3 | public class Test { 4 | 5 | } 6 | --------------------------------------------------------------------------------