├── .project ├── .settings ├── org.eclipse.core.resources.prefs ├── org.eclipse.m2e.core.prefs └── org.maven.ide.eclipse.prefs ├── opms-entity ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml ├── src │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── opms │ │ │ └── entity │ │ │ ├── Account.java │ │ │ ├── CpuInfos.java │ │ │ ├── Dic.java │ │ │ ├── DicType.java │ │ │ ├── DiskInfos.java │ │ │ ├── Log.java │ │ │ ├── Operator.java │ │ │ ├── Params.java │ │ │ ├── Resource.java │ │ │ ├── ResourceRole.java │ │ │ ├── RoleAccount.java │ │ │ ├── Roles.java │ │ │ ├── ServerInfo.java │ │ │ ├── ServerStatus.java │ │ │ └── UserLogin.java │ └── test │ │ └── java │ │ └── com │ │ └── opms │ │ └── entity │ │ └── AppTest.java └── target │ ├── classes │ └── com │ │ └── opms │ │ └── entity │ │ ├── Account.class │ │ ├── CpuInfos.class │ │ ├── Dic.class │ │ ├── DicType.class │ │ ├── DiskInfos.class │ │ ├── Log.class │ │ ├── Params.class │ │ ├── RoleAccount.class │ │ ├── Roles.class │ │ ├── ServerInfo.class │ │ ├── ServerStatus.class │ │ └── UserLogin.class │ └── test-classes │ └── com │ └── opms │ └── entity │ └── AppTest.class ├── opms-mapper ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── opms │ │ │ │ └── mapper │ │ │ │ ├── AccountMapper.java │ │ │ │ ├── DicMapper.java │ │ │ │ ├── DicTypeMapper.java │ │ │ │ ├── LogMapper.java │ │ │ │ ├── OperatorMapper.java │ │ │ │ ├── ResourceMapper.java │ │ │ │ ├── RolesMapper.java │ │ │ │ ├── ServerInfoMapper.java │ │ │ │ └── UserLoginMapper.java │ │ └── resources │ │ │ └── mappings │ │ │ ├── account-mapper.xml │ │ │ ├── dic-mapper.xml │ │ │ ├── dicType-mapper.xml │ │ │ ├── log-mapper.xml │ │ │ ├── operator-mapper.xml │ │ │ ├── resource-mapper.xml │ │ │ ├── roles-mapper.xml │ │ │ ├── serverInfo-mapper.xml │ │ │ └── userLogin-mapper.xml │ └── test │ │ └── java │ │ └── com │ │ └── opms │ │ └── mapper │ │ └── AppTest.java └── target │ ├── classes │ ├── com │ │ └── opms │ │ │ └── mapper │ │ │ ├── AccountMapper.class │ │ │ ├── DicMapper.class │ │ │ ├── DicTypeMapper.class │ │ │ ├── LogMapper.class │ │ │ ├── RolesMapper.class │ │ │ ├── ServerInfoMapper.class │ │ │ └── UserLoginMapper.class │ └── mappings │ │ ├── account-mapper.xml │ │ ├── dic-mapper.xml │ │ ├── dicType-mapper.xml │ │ ├── log-mapper.xml │ │ ├── roles-mapper.xml │ │ ├── serverInfo-mapper.xml │ │ └── userLogin-mapper.xml │ └── test-classes │ └── com │ └── opms │ └── mapper │ └── AppTest.class ├── opms-pulgins ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml ├── src │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── opms │ │ │ └── pulgin │ │ │ └── mybatis │ │ │ └── plugin │ │ │ ├── PagePlugin.java │ │ │ ├── PageView.java │ │ │ └── ReflectHelper.java │ └── test │ │ └── java │ │ └── 新建文本文档.txt └── target │ ├── classes │ └── com │ │ └── opms │ │ └── pulgin │ │ └── mybatis │ │ └── plugin │ │ ├── PagePlugin.class │ │ ├── PageView.class │ │ └── ReflectHelper.class │ └── test-classes │ └── 新建文本文档.txt ├── opms-security ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml ├── src │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── opms │ │ │ └── security │ │ │ ├── MyAccessDecisionManager.java │ │ │ ├── MyAuthenticationFilter.java │ │ │ ├── MySecurityFilter.java │ │ │ ├── MySecurityMetadataSource.java │ │ │ └── MyUserDetailServiceImpl.java │ └── test │ │ └── java │ │ └── org │ │ └── opms │ │ └── security │ │ └── AppTest.java └── target │ ├── classes │ └── com │ │ └── opms │ │ └── security │ │ ├── MyAccessDecisionManager.class │ │ ├── MyAuthenticationFilter.class │ │ ├── MySecurityFilter.class │ │ ├── MySecurityMetadataSource.class │ │ └── MyUserDetailServiceImpl.class │ └── test-classes │ └── org │ └── opms │ └── security │ └── AppTest.class ├── opms-service ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml ├── src │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── opms │ │ │ └── service │ │ │ ├── AccountService.java │ │ │ ├── DicService.java │ │ │ ├── DicTypeService.java │ │ │ ├── LogService.java │ │ │ ├── ResourceService.java │ │ │ ├── RolesService.java │ │ │ ├── ServerInfoService.java │ │ │ ├── UserLoginService.java │ │ │ └── impl │ │ │ ├── AccountServiceImpl.java │ │ │ ├── DicServiceImpl.java │ │ │ ├── DicTypeServiceImpl.java │ │ │ ├── LogServiceImpl.java │ │ │ ├── ResourceServiceImpl.java │ │ │ ├── RolesServiceImpl.java │ │ │ ├── ServerInfoServiceImpl.java │ │ │ └── UserLoginServiceImpl.java │ └── test │ │ └── java │ │ └── com │ │ └── opms │ │ └── service │ │ └── AppTest.java └── target │ ├── classes │ └── com │ │ └── opms │ │ └── service │ │ ├── AccountService.class │ │ ├── DicService.class │ │ ├── DicTypeService.class │ │ ├── LogService.class │ │ ├── RolesService.class │ │ ├── ServerInfoService.class │ │ ├── UserLoginService.class │ │ └── impl │ │ ├── AccountServiceImpl.class │ │ ├── DicServiceImpl.class │ │ ├── DicTypeServiceImpl.class │ │ ├── LogServiceImpl.class │ │ ├── RolesServiceImpl.class │ │ ├── ServerInfoServiceImpl.class │ │ └── UserLoginServiceImpl.class │ └── test-classes │ └── com │ └── opms │ └── service │ └── AppTest.class ├── opms-utils ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml ├── src │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── opms │ │ │ ├── base │ │ │ ├── Base.java │ │ │ ├── BaseMapper.java │ │ │ └── BaseService.java │ │ │ └── util │ │ │ ├── BeanUtil.java │ │ │ ├── Common.java │ │ │ ├── ExcelDataMapper.java │ │ │ ├── ExcelHeader.java │ │ │ ├── JsonDateSerializer.java │ │ │ ├── Md5Tool.java │ │ │ ├── POIUtils.java │ │ │ ├── PropertiesUtils.java │ │ │ ├── SessionKey.java │ │ │ ├── SpringMVCDateConverter.java │ │ │ ├── TreeObject.java │ │ │ ├── TreeUtil.java │ │ │ └── UnicodeUtils.java │ └── test │ │ └── java │ │ └── com │ │ └── opms │ │ └── utils │ │ └── AppTest.java └── target │ ├── classes │ └── com │ │ └── opms │ │ ├── base │ │ ├── Base.class │ │ ├── BaseMapper.class │ │ └── BaseService.class │ │ └── util │ │ ├── Common.class │ │ ├── ExcelDataMapper.class │ │ ├── ExcelHeader.class │ │ ├── JsonDateSerializer.class │ │ ├── Md5Tool.class │ │ ├── POIUtils.class │ │ ├── PropertiesUtils.class │ │ ├── SpringMVCDateConverter.class │ │ ├── TreeObject.class │ │ ├── TreeUtil.class │ │ └── UnicodeUtils.class │ └── test-classes │ └── com │ └── opms │ └── utils │ └── AppTest.class ├── opms-web ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── opms │ │ │ │ │ ├── common │ │ │ │ │ ├── ApiConnection.java │ │ │ │ │ └── GameApi.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── BaseController.java │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── AccountController.java │ │ │ │ │ │ ├── BackgroundController.java │ │ │ │ │ │ ├── DicController.java │ │ │ │ │ │ ├── DicTypeController.java │ │ │ │ │ │ ├── JsonDateSerializer.java │ │ │ │ │ │ ├── LogController.java │ │ │ │ │ │ ├── OperatorController.java │ │ │ │ │ │ ├── ResourceController.java │ │ │ │ │ │ ├── RolesController.java │ │ │ │ │ │ ├── ServerInfoController.java │ │ │ │ │ │ └── UserLoginController.java │ │ │ │ │ └── statistics │ │ │ │ │ │ └── OnlineController.java │ │ │ │ │ └── logAop │ │ │ │ │ └── LogAopAction.java │ │ │ └── sigar │ │ │ │ ├── .sigar_shellrc │ │ │ │ ├── libsigar-ia64-hpux-11.sl │ │ │ │ ├── libsigar-pa-hpux-11.sl │ │ │ │ ├── libsigar-universal-macosx.dylib │ │ │ │ ├── libsigar-universal64-macosx.dylib │ │ │ │ ├── sigar-amd64-winnt.dll │ │ │ │ ├── sigar-x86-winnt.dll │ │ │ │ └── sigar-x86-winnt.lib │ │ ├── resources │ │ │ ├── config.properties │ │ │ ├── druid_jdbc.properties │ │ │ ├── jdbc.properties │ │ │ ├── log4j.properties │ │ │ ├── spring-application.xml │ │ │ ├── spring-security.xml │ │ │ └── spring-servlet.xml │ │ ├── test │ │ │ └── 新建文本文档.txt │ │ └── webapp │ │ │ ├── FusionCharts │ │ │ ├── FusionCharts.js │ │ │ ├── Pie2D.swf │ │ │ └── Pie3D.swf │ │ │ ├── WEB-INF │ │ │ ├── jsp │ │ │ │ ├── background │ │ │ │ │ ├── account │ │ │ │ │ │ ├── account_role.jsp │ │ │ │ │ │ ├── add.jsp │ │ │ │ │ │ ├── edit.jsp │ │ │ │ │ │ └── list.jsp │ │ │ │ │ ├── dic │ │ │ │ │ │ ├── add.jsp │ │ │ │ │ │ ├── edit.jsp │ │ │ │ │ │ └── list.jsp │ │ │ │ │ ├── dicType │ │ │ │ │ │ ├── add.jsp │ │ │ │ │ │ ├── edit.jsp │ │ │ │ │ │ └── list.jsp │ │ │ │ │ ├── framework │ │ │ │ │ │ ├── index.jsp │ │ │ │ │ │ └── login.jsp │ │ │ │ │ ├── log │ │ │ │ │ │ └── list.jsp │ │ │ │ │ ├── operator │ │ │ │ │ │ ├── add.jsp │ │ │ │ │ │ ├── chooseUI.jsp │ │ │ │ │ │ ├── edit.jsp │ │ │ │ │ │ └── list.jsp │ │ │ │ │ ├── resource │ │ │ │ │ │ ├── add.jsp │ │ │ │ │ │ ├── edit.jsp │ │ │ │ │ │ ├── list.jsp │ │ │ │ │ │ └── permissions.jsp │ │ │ │ │ ├── role │ │ │ │ │ │ ├── add.jsp │ │ │ │ │ │ ├── edit.jsp │ │ │ │ │ │ └── list.jsp │ │ │ │ │ ├── server │ │ │ │ │ │ ├── add.jsp │ │ │ │ │ │ ├── edit.jsp │ │ │ │ │ │ ├── forecast.jsp │ │ │ │ │ │ ├── list.jsp │ │ │ │ │ │ └── show.jsp │ │ │ │ │ └── userLogin │ │ │ │ │ │ └── list.jsp │ │ │ │ └── web │ │ │ │ │ └── retention │ │ │ │ │ └── currentOnline.jsp │ │ │ ├── lib │ │ │ │ ├── .sigar_shellrc │ │ │ │ ├── libsigar-ia64-hpux-11.sl │ │ │ │ ├── libsigar-pa-hpux-11.sl │ │ │ │ ├── libsigar-universal-macosx.dylib │ │ │ │ ├── libsigar-universal64-macosx.dylib │ │ │ │ ├── sigar-amd64-winnt.dll │ │ │ │ ├── sigar-x86-winnt.dll │ │ │ │ └── sigar-x86-winnt.lib │ │ │ └── web.xml │ │ │ ├── common │ │ │ └── header.jsp │ │ │ ├── css │ │ │ ├── basic.css │ │ │ ├── main.css │ │ │ └── opms.css │ │ │ ├── denied.jsp │ │ │ ├── filezip │ │ │ └── 新建文本文档.txt │ │ │ ├── images │ │ │ ├── 0.png │ │ │ ├── 16x16 │ │ │ │ ├── grid-close.gif │ │ │ │ └── tree.png │ │ │ ├── air-balloon-1.png │ │ │ ├── air-balloon-100.png │ │ │ ├── air-balloon-2.png │ │ │ ├── bg-form-field.gif │ │ │ ├── bl.png │ │ │ ├── br.png │ │ │ ├── close.png │ │ │ ├── dock-bg.gif │ │ │ ├── dock-bg2.gif │ │ │ ├── flow-btn-bg.png │ │ │ ├── icons │ │ │ │ └── other │ │ │ │ │ └── disk.jpg │ │ │ ├── icos.png │ │ │ ├── img01.jpg │ │ │ ├── img02.jpg │ │ │ ├── img03.jpg │ │ │ ├── input-bg.png │ │ │ ├── input-bg1.png │ │ │ ├── leaf_body.png │ │ │ ├── leaf_bottom.png │ │ │ ├── leaf_bottom_left_b.png │ │ │ ├── leaf_bottom_soo.png │ │ │ ├── leaf_top.png │ │ │ ├── leaf_top_soo.png │ │ │ ├── left-head.jpg │ │ │ ├── loading.gif │ │ │ ├── login-bg.jpg │ │ │ ├── login-foot.jpg │ │ │ ├── login.png │ │ │ ├── logo-login.png │ │ │ ├── menubg.jpg │ │ │ ├── seach.png │ │ │ ├── t2.gif │ │ │ ├── tl.png │ │ │ ├── tr.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ └── woodboard1.png │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ ├── index.jsp │ │ │ ├── jslib │ │ │ ├── CustomersData.js │ │ │ ├── fun.base.js │ │ │ ├── grid.js │ │ │ ├── jquery-validation │ │ │ │ ├── jquery.metadata.js │ │ │ │ ├── jquery.validate.min.js │ │ │ │ ├── messages_cn.js │ │ │ │ └── version.txt │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery │ │ │ │ ├── jquery-1.11.2.js │ │ │ │ ├── jquery-1.11.2.min.js │ │ │ │ └── jquery-1.8.3.js │ │ │ ├── ligerUI │ │ │ │ ├── js │ │ │ │ │ ├── core │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ └── inject.js │ │ │ │ │ ├── ligerui.all.js │ │ │ │ │ ├── ligerui.min.js │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── ligerAccordion.js │ │ │ │ │ │ ├── ligerButton.js │ │ │ │ │ │ ├── ligerCheckBox.js │ │ │ │ │ │ ├── ligerCheckBoxList.js │ │ │ │ │ │ ├── ligerComboBox.js │ │ │ │ │ │ ├── ligerDateEditor.js │ │ │ │ │ │ ├── ligerDialog.js │ │ │ │ │ │ ├── ligerDrag.js │ │ │ │ │ │ ├── ligerEasyTab.js │ │ │ │ │ │ ├── ligerFilter.js │ │ │ │ │ │ ├── ligerForm.js │ │ │ │ │ │ ├── ligerGrid.js │ │ │ │ │ │ ├── ligerLayout.js │ │ │ │ │ │ ├── ligerListBox.js │ │ │ │ │ │ ├── ligerMenu.js │ │ │ │ │ │ ├── ligerMenuBar.js │ │ │ │ │ │ ├── ligerMessageBox.js │ │ │ │ │ │ ├── ligerPanel.js │ │ │ │ │ │ ├── ligerPopupEdit.js │ │ │ │ │ │ ├── ligerPortal.js │ │ │ │ │ │ ├── ligerRadio.js │ │ │ │ │ │ ├── ligerRadioList.js │ │ │ │ │ │ ├── ligerResizable.js │ │ │ │ │ │ ├── ligerSpinner.js │ │ │ │ │ │ ├── ligerTab.js │ │ │ │ │ │ ├── ligerTextBox.js │ │ │ │ │ │ ├── ligerTip.js │ │ │ │ │ │ ├── ligerToolBar.js │ │ │ │ │ │ ├── ligerTree.js │ │ │ │ │ │ └── ligerWindow.js │ │ │ │ └── skins │ │ │ │ │ ├── Aqua │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ligerui-all.css │ │ │ │ │ │ ├── ligerui-common.css │ │ │ │ │ │ ├── ligerui-dialog.css │ │ │ │ │ │ ├── ligerui-form.css │ │ │ │ │ │ ├── ligerui-grid.css │ │ │ │ │ │ ├── ligerui-layout.css │ │ │ │ │ │ ├── ligerui-menu.css │ │ │ │ │ │ ├── ligerui-tab.css │ │ │ │ │ │ └── ligerui-tree.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── bigloading.gif │ │ │ │ │ │ ├── button-disabled.gif │ │ │ │ │ │ ├── button-over.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── drop-icons.gif │ │ │ │ │ │ ├── exclamation.gif │ │ │ │ │ │ ├── invalid-line.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── table.png │ │ │ │ │ │ └── toggle.gif │ │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── bg-panel-title-over.gif │ │ │ │ │ │ ├── bg-panel-title-pressed.gif │ │ │ │ │ │ ├── bg-panel-title.gif │ │ │ │ │ │ ├── bg-tab-title-over.gif │ │ │ │ │ │ ├── bg-tab-title-pressed.gif │ │ │ │ │ │ ├── bg-tab-title.gif │ │ │ │ │ │ ├── bg-text.gif │ │ │ │ │ │ ├── bg-trigger-over.gif │ │ │ │ │ │ ├── bg-trigger-pressed.gif │ │ │ │ │ │ ├── bg-trigger.gif │ │ │ │ │ │ ├── btn-l.gif │ │ │ │ │ │ ├── btn-r.gif │ │ │ │ │ │ ├── btn.gif │ │ │ │ │ │ ├── button-bg-over.gif │ │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ │ ├── checkbox.gif │ │ │ │ │ │ ├── dateeditor-bar-bg.gif │ │ │ │ │ │ ├── dateeditor-header-bg.gif │ │ │ │ │ │ └── radio.gif │ │ │ │ │ │ ├── dateeditor │ │ │ │ │ │ ├── date.gif │ │ │ │ │ │ ├── icon-first.gif │ │ │ │ │ │ ├── icon-last.gif │ │ │ │ │ │ ├── icon-next.gif │ │ │ │ │ │ └── icon-prev.gif │ │ │ │ │ │ ├── form │ │ │ │ │ │ └── verify-corner.gif │ │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── grid-checkbox-checked.gif │ │ │ │ │ │ ├── grid-checkbox.gif │ │ │ │ │ │ ├── grid-detail-close.gif │ │ │ │ │ │ ├── grid-detail-open.gif │ │ │ │ │ │ ├── grid-tree-close.gif │ │ │ │ │ │ ├── grid-tree-open.gif │ │ │ │ │ │ ├── header-bg-over.gif │ │ │ │ │ │ ├── header-bg.gif │ │ │ │ │ │ ├── header2-bg.jpg │ │ │ │ │ │ ├── popup-line.gif │ │ │ │ │ │ └── popup-row-over.gif │ │ │ │ │ │ ├── icon │ │ │ │ │ │ ├── bar-button-over.gif │ │ │ │ │ │ ├── checkbox-checked.gif │ │ │ │ │ │ ├── checkbox.gif │ │ │ │ │ │ ├── cross.gif │ │ │ │ │ │ ├── icon-close-over.gif │ │ │ │ │ │ ├── icon-close.gif │ │ │ │ │ │ ├── icon-down.gif │ │ │ │ │ │ ├── icon-drop.gif │ │ │ │ │ │ ├── icon-edited.gif │ │ │ │ │ │ ├── icon-first.gif │ │ │ │ │ │ ├── icon-last.gif │ │ │ │ │ │ ├── icon-line.gif │ │ │ │ │ │ ├── icon-load.gif │ │ │ │ │ │ ├── icon-next.gif │ │ │ │ │ │ ├── icon-prev.gif │ │ │ │ │ │ ├── icon-select.gif │ │ │ │ │ │ ├── icon-sort-asc.gif │ │ │ │ │ │ ├── icon-sort-desc.gif │ │ │ │ │ │ ├── icon-unselect.gif │ │ │ │ │ │ ├── icon-up.gif │ │ │ │ │ │ └── spr_icons.gif │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── accordion-content.gif │ │ │ │ │ │ ├── accordion-header-over.gif │ │ │ │ │ │ ├── accordion-header.gif │ │ │ │ │ │ ├── layout-header-over.gif │ │ │ │ │ │ ├── layout-header.gif │ │ │ │ │ │ ├── layout-sidebar-header.gif │ │ │ │ │ │ ├── mini-bottom.gif │ │ │ │ │ │ ├── mini-left.gif │ │ │ │ │ │ ├── mini-right.gif │ │ │ │ │ │ ├── mini-top.gif │ │ │ │ │ │ ├── panel-content.gif │ │ │ │ │ │ ├── panel-header-over.gif │ │ │ │ │ │ ├── panel-header.gif │ │ │ │ │ │ ├── panel-header2.gif │ │ │ │ │ │ ├── tabs-bg.gif │ │ │ │ │ │ ├── tabs-item-bg.gif │ │ │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ │ │ ├── tabs-item-over-bg.gif │ │ │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ │ │ ├── tabs-tools.gif │ │ │ │ │ │ └── togglebar.gif │ │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── menu-item-arrow.gif │ │ │ │ │ │ ├── menu-item-down.gif │ │ │ │ │ │ ├── menu-item-over-l.gif │ │ │ │ │ │ ├── menu-item-over-m.gif │ │ │ │ │ │ ├── menu-item-over-r.gif │ │ │ │ │ │ ├── menu-line-x.gif │ │ │ │ │ │ └── menu-line-y.gif │ │ │ │ │ │ ├── panel │ │ │ │ │ │ ├── bar-bg.gif │ │ │ │ │ │ ├── header-bg.gif │ │ │ │ │ │ ├── header-bg.jpg │ │ │ │ │ │ ├── header2-bg.jpg │ │ │ │ │ │ ├── panel-btn-l.gif │ │ │ │ │ │ ├── panel-btn-r.gif │ │ │ │ │ │ ├── panel-btn.gif │ │ │ │ │ │ ├── panel-header.gif │ │ │ │ │ │ ├── panel-menu-item-down.gif │ │ │ │ │ │ ├── panel-menu.gif │ │ │ │ │ │ ├── panel-toolbar.gif │ │ │ │ │ │ └── panel-tools.gif │ │ │ │ │ │ ├── tree │ │ │ │ │ │ ├── folder-open.gif │ │ │ │ │ │ ├── folder.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── nodeloading.gif │ │ │ │ │ │ ├── nodeloading2.gif │ │ │ │ │ │ ├── nodeloading3.gif │ │ │ │ │ │ ├── nodeloading4.gif │ │ │ │ │ │ ├── tree-leaf.gif │ │ │ │ │ │ ├── tree-level.gif │ │ │ │ │ │ ├── tree-noline.gif │ │ │ │ │ │ ├── tree-status-close.gif │ │ │ │ │ │ ├── tree-status-open.gif │ │ │ │ │ │ ├── tree-status.gif │ │ │ │ │ │ └── tree.gif │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ └── win │ │ │ │ │ │ ├── box-icons.gif │ │ │ │ │ │ ├── box.gif │ │ │ │ │ │ ├── dialog-bc.gif │ │ │ │ │ │ ├── dialog-icons.gif │ │ │ │ │ │ ├── dialog-tc.gif │ │ │ │ │ │ ├── dialog-winbtns.gif │ │ │ │ │ │ ├── dialog.gif │ │ │ │ │ │ ├── dialogbtn.gif │ │ │ │ │ │ ├── taskbar-task.gif │ │ │ │ │ │ ├── taskbar.gif │ │ │ │ │ │ ├── taskbar.png │ │ │ │ │ │ └── taskicon.gif │ │ │ │ │ ├── Gray │ │ │ │ │ ├── css │ │ │ │ │ │ ├── all.css │ │ │ │ │ │ ├── common.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── form.css │ │ │ │ │ │ ├── grid.css │ │ │ │ │ │ ├── layout.css │ │ │ │ │ │ └── tab.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── accordion-header.gif │ │ │ │ │ │ ├── icon-close-over.gif │ │ │ │ │ │ ├── icon-close.gif │ │ │ │ │ │ ├── layout-header.gif │ │ │ │ │ │ ├── tabs-bg.gif │ │ │ │ │ │ ├── tabs-item-bg.gif │ │ │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ │ │ ├── tabs-item-left-selected.gif │ │ │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ │ │ ├── tabs-item-right-selected.gif │ │ │ │ │ │ ├── tabs-item-selected.gif │ │ │ │ │ │ └── togglebar.gif │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── btn.gif │ │ │ │ │ │ ├── button-disabled.gif │ │ │ │ │ │ ├── button-over.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── button1.gif │ │ │ │ │ │ ├── button2.gif │ │ │ │ │ │ ├── dateeditor-bar.gif │ │ │ │ │ │ ├── dateeditor-btn-over.gif │ │ │ │ │ │ ├── dateeditor-btn.gif │ │ │ │ │ │ ├── dateeditor-thead.gif │ │ │ │ │ │ ├── grid-detail-close.gif │ │ │ │ │ │ ├── grid-detail-open.gif │ │ │ │ │ │ ├── gridalt.gif │ │ │ │ │ │ ├── gridbar.jpg │ │ │ │ │ │ ├── grideditor.gif │ │ │ │ │ │ ├── icon-down.gif │ │ │ │ │ │ ├── icon-select.gif │ │ │ │ │ │ ├── icon-unselect.gif │ │ │ │ │ │ ├── icon-up.gif │ │ │ │ │ │ ├── input.gif │ │ │ │ │ │ ├── inputdisabled.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── loading2.gif │ │ │ │ │ │ ├── loading3.gif │ │ │ │ │ │ ├── loading4.gif │ │ │ │ │ │ └── trigger.gif │ │ │ │ │ │ └── win │ │ │ │ │ │ ├── dialog-winbtns.gif │ │ │ │ │ │ ├── dialogbtn.gif │ │ │ │ │ │ └── dialogicon.gif │ │ │ │ │ ├── Gray2014 │ │ │ │ │ ├── css │ │ │ │ │ │ ├── all.css │ │ │ │ │ │ ├── common.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── form.css │ │ │ │ │ │ ├── grid.css │ │ │ │ │ │ ├── layout.css │ │ │ │ │ │ └── tab.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── gridheader.png │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── accordion-header.gif │ │ │ │ │ │ ├── icon-close-over.gif │ │ │ │ │ │ ├── icon-close.gif │ │ │ │ │ │ ├── layout-header.gif │ │ │ │ │ │ ├── tabs-bg.gif │ │ │ │ │ │ ├── tabs-item-bg.gif │ │ │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ │ │ ├── tabs-item-left-selected.gif │ │ │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ │ │ ├── tabs-item-right-selected.gif │ │ │ │ │ │ ├── tabs-item-selected.gif │ │ │ │ │ │ └── togglebar.gif │ │ │ │ │ │ ├── tab_arrow_spr.png │ │ │ │ │ │ ├── tab_close.png │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── btn.gif │ │ │ │ │ │ ├── button-disabled.gif │ │ │ │ │ │ ├── button-over.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── button1.gif │ │ │ │ │ │ ├── button2.gif │ │ │ │ │ │ ├── date.gif │ │ │ │ │ │ ├── dateeditor-bar.gif │ │ │ │ │ │ ├── dateeditor-btn-over.gif │ │ │ │ │ │ ├── dateeditor-btn.gif │ │ │ │ │ │ ├── dateeditor-thead.gif │ │ │ │ │ │ ├── grid-detail-close.gif │ │ │ │ │ │ ├── grid-detail-open.gif │ │ │ │ │ │ ├── gridalt.gif │ │ │ │ │ │ ├── gridbar.jpg │ │ │ │ │ │ ├── grideditor.gif │ │ │ │ │ │ ├── icon-down.gif │ │ │ │ │ │ ├── icon-select.gif │ │ │ │ │ │ ├── icon-select2.gif │ │ │ │ │ │ ├── icon-unselect.gif │ │ │ │ │ │ ├── icon-up.gif │ │ │ │ │ │ ├── input.gif │ │ │ │ │ │ ├── inputdisabled.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── loading2.gif │ │ │ │ │ │ ├── loading3.gif │ │ │ │ │ │ ├── loading4.gif │ │ │ │ │ │ ├── loadingl.gif │ │ │ │ │ │ ├── panel-btn.gif │ │ │ │ │ │ ├── spr_icons.gif │ │ │ │ │ │ └── trigger.gif │ │ │ │ │ │ └── win │ │ │ │ │ │ ├── dialog-winbtns.gif │ │ │ │ │ │ ├── dialogbtn.gif │ │ │ │ │ │ └── dialogicon.gif │ │ │ │ │ ├── Silvery │ │ │ │ │ ├── css │ │ │ │ │ │ ├── form.css │ │ │ │ │ │ ├── grid.css │ │ │ │ │ │ ├── layout.css │ │ │ │ │ │ └── style.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── form │ │ │ │ │ │ ├── checkboxradio.gif │ │ │ │ │ │ ├── icon-down-over.gif │ │ │ │ │ │ ├── icon-down.gif │ │ │ │ │ │ ├── icon-up-over.gif │ │ │ │ │ │ ├── icon-up.gif │ │ │ │ │ │ ├── invalid_line.gif │ │ │ │ │ │ ├── text-date-icon.gif │ │ │ │ │ │ ├── text-down-icon.gif │ │ │ │ │ │ ├── text-focus.gif │ │ │ │ │ │ ├── text-l-focus.gif │ │ │ │ │ │ ├── text-l-over.gif │ │ │ │ │ │ ├── text-l.gif │ │ │ │ │ │ ├── text-over.gif │ │ │ │ │ │ ├── text-r-focus.gif │ │ │ │ │ │ ├── text-r-over.gif │ │ │ │ │ │ ├── text-r.gif │ │ │ │ │ │ └── text.gif │ │ │ │ │ │ ├── grid │ │ │ │ │ │ └── gridheaderbg.jpg │ │ │ │ │ │ └── layout │ │ │ │ │ │ ├── accordion-header-over.jpg │ │ │ │ │ │ ├── accordion-header.jpg │ │ │ │ │ │ ├── layout-header-over.jpg │ │ │ │ │ │ ├── layout-header.jpg │ │ │ │ │ │ ├── tabs-bg.jpg │ │ │ │ │ │ ├── tabs-item-bg.jpg │ │ │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ │ │ ├── tabs-item-over-bg.gif │ │ │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ │ │ └── tabs-tools.gif │ │ │ │ │ ├── Tab │ │ │ │ │ ├── css │ │ │ │ │ │ ├── all.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── form.css │ │ │ │ │ │ ├── grid.css │ │ │ │ │ │ └── tab.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── gridheader.png │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── accordion-header.gif │ │ │ │ │ │ ├── icon-close-over.gif │ │ │ │ │ │ ├── icon-close.gif │ │ │ │ │ │ ├── layout-header.gif │ │ │ │ │ │ ├── tabs-bg.gif │ │ │ │ │ │ ├── tabs-item-bg.gif │ │ │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ │ │ ├── tabs-item-left-selected.gif │ │ │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ │ │ ├── tabs-item-right-selected.gif │ │ │ │ │ │ ├── tabs-item-selected.gif │ │ │ │ │ │ └── togglebar.gif │ │ │ │ │ │ ├── tab_arrow_spr.png │ │ │ │ │ │ ├── tab_close.png │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── btn.gif │ │ │ │ │ │ ├── button-disabled.gif │ │ │ │ │ │ ├── button-over.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── button1.gif │ │ │ │ │ │ ├── button2.gif │ │ │ │ │ │ ├── date.gif │ │ │ │ │ │ ├── dateeditor-bar.gif │ │ │ │ │ │ ├── dateeditor-btn-over.gif │ │ │ │ │ │ ├── dateeditor-btn.gif │ │ │ │ │ │ ├── dateeditor-thead.gif │ │ │ │ │ │ ├── grid-detail-close.gif │ │ │ │ │ │ ├── grid-detail-open.gif │ │ │ │ │ │ ├── gridalt.gif │ │ │ │ │ │ ├── gridbar.jpg │ │ │ │ │ │ ├── grideditor.gif │ │ │ │ │ │ ├── icon-down.gif │ │ │ │ │ │ ├── icon-select.gif │ │ │ │ │ │ ├── icon-select2.gif │ │ │ │ │ │ ├── icon-unselect.gif │ │ │ │ │ │ ├── icon-up.gif │ │ │ │ │ │ ├── input.gif │ │ │ │ │ │ ├── inputdisabled.gif │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── loading2.gif │ │ │ │ │ │ ├── loading3.gif │ │ │ │ │ │ ├── loading4.gif │ │ │ │ │ │ ├── loadingl.gif │ │ │ │ │ │ ├── spr_icons.gif │ │ │ │ │ │ └── trigger.gif │ │ │ │ │ │ └── win │ │ │ │ │ │ ├── dialog-winbtns.gif │ │ │ │ │ │ ├── dialogbtn.gif │ │ │ │ │ │ └── dialogicon.gif │ │ │ │ │ ├── icons │ │ │ │ │ ├── add.gif │ │ │ │ │ ├── archives.gif │ │ │ │ │ ├── attibutes.gif │ │ │ │ │ ├── back.gif │ │ │ │ │ ├── bluebook.gif │ │ │ │ │ ├── bookpen.gif │ │ │ │ │ ├── busy.gif │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── candle.gif │ │ │ │ │ ├── coffee.gif │ │ │ │ │ ├── comment.gif │ │ │ │ │ ├── communication.gif │ │ │ │ │ ├── config.gif │ │ │ │ │ ├── customers.gif │ │ │ │ │ ├── cut.gif │ │ │ │ │ ├── database.gif │ │ │ │ │ ├── delete.gif │ │ │ │ │ ├── discuss.gif │ │ │ │ │ ├── down.gif │ │ │ │ │ ├── edit.gif │ │ │ │ │ ├── graywarn.gif │ │ │ │ │ ├── greenwarn.gif │ │ │ │ │ ├── help.gif │ │ │ │ │ ├── home.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── logout.gif │ │ │ │ │ ├── mailbox.gif │ │ │ │ │ ├── memeber.gif │ │ │ │ │ ├── modify.gif │ │ │ │ │ ├── msn.gif │ │ │ │ │ ├── myaccount.gif │ │ │ │ │ ├── ok.gif │ │ │ │ │ ├── outbox.gif │ │ │ │ │ ├── pager.gif │ │ │ │ │ ├── photograph.gif │ │ │ │ │ ├── plus.gif │ │ │ │ │ ├── prev.gif │ │ │ │ │ ├── print.gif │ │ │ │ │ ├── process.gif │ │ │ │ │ ├── qq.gif │ │ │ │ │ ├── refresh.gif │ │ │ │ │ ├── right.gif │ │ │ │ │ ├── role.gif │ │ │ │ │ ├── save-disabled.gif │ │ │ │ │ ├── save.gif │ │ │ │ │ ├── search.gif │ │ │ │ │ ├── search2.gif │ │ │ │ │ ├── settings.gif │ │ │ │ │ ├── true.gif │ │ │ │ │ ├── up.gif │ │ │ │ │ └── view.gif │ │ │ │ │ └── ligerui-icons.css │ │ │ └── script.js │ │ │ ├── loginout.jsp │ │ │ └── menu.jsp │ └── test │ │ └── java │ │ └── AppTest.java └── target │ ├── classes │ ├── com │ │ └── opms │ │ │ ├── controller │ │ │ └── BaseController.class │ │ │ └── logAop │ │ │ └── LogAopAction.class │ ├── config.properties │ ├── druid_jdbc.properties │ ├── jdbc.properties │ ├── log4j.properties │ ├── sigar │ │ ├── .sigar_shellrc │ │ ├── libsigar-ia64-hpux-11.sl │ │ ├── libsigar-pa-hpux-11.sl │ │ ├── libsigar-universal-macosx.dylib │ │ ├── libsigar-universal64-macosx.dylib │ │ ├── sigar-amd64-winnt.dll │ │ ├── sigar-x86-winnt.dll │ │ └── sigar-x86-winnt.lib │ ├── spring-application.xml │ ├── spring-security.xml │ └── spring-servlet.xml │ ├── m2e-wtp │ └── web-resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ └── com.opms.web │ │ └── opms-web │ │ ├── pom.properties │ │ └── pom.xml │ └── test-classes │ └── AppTest.class ├── opms.sql └── pom.xml /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | opms 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.m2e.core.maven2Builder 10 | 11 | 12 | 13 | 14 | org.maven.ide.eclipse.maven2Builder 15 | 16 | 17 | 18 | 19 | 20 | org.maven.ide.eclipse.maven2Nature 21 | org.eclipse.m2e.core.maven2Nature 22 | 23 | 24 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | fullBuildGoals=process-test-resources 4 | resolveWorkspaceProjects=true 5 | resourceFilterGoals=process-resources resources\:testResources 6 | skipCompilerPlugin=true 7 | version=1 8 | -------------------------------------------------------------------------------- /opms-entity/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /opms-entity/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/test/java=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /opms-entity/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.compliance=1.7 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.7 9 | -------------------------------------------------------------------------------- /opms-entity/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /opms-entity/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-entity/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-entity/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /opms-entity/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | fullBuildGoals=process-test-resources 4 | resolveWorkspaceProjects=true 5 | resourceFilterGoals=process-resources resources\:testResources 6 | skipCompilerPlugin=true 7 | version=1 8 | -------------------------------------------------------------------------------- /opms-entity/src/main/java/com/opms/entity/ResourceRole.java: -------------------------------------------------------------------------------- 1 | package com.opms.entity; 2 | 3 | import java.io.Serializable; 4 | 5 | public class ResourceRole implements Serializable { 6 | /** 7 | * 8 | */ 9 | private static final long serialVersionUID = 1L; 10 | private String resId; 11 | private String roleId; 12 | 13 | public String getResId() { 14 | return resId; 15 | } 16 | 17 | public void setResId(String resId) { 18 | this.resId = resId; 19 | } 20 | 21 | public String getRoleId() { 22 | return roleId; 23 | } 24 | 25 | public void setRoleId(String roleId) { 26 | this.roleId = roleId; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /opms-entity/src/main/java/com/opms/entity/RoleAccount.java: -------------------------------------------------------------------------------- 1 | package com.opms.entity; 2 | 3 | import java.io.Serializable; 4 | 5 | @SuppressWarnings("serial") 6 | public class RoleAccount implements Serializable { 7 | 8 | private Integer roleId; 9 | private Integer accountId; 10 | 11 | public Integer getRoleId() { 12 | return roleId; 13 | } 14 | 15 | public void setRoleId(Integer roleId) { 16 | this.roleId = roleId; 17 | } 18 | 19 | public Integer getAccountId() { 20 | return accountId; 21 | } 22 | 23 | public void setAccountId(Integer accountId) { 24 | this.accountId = accountId; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /opms-entity/src/test/java/com/opms/entity/AppTest.java: -------------------------------------------------------------------------------- 1 | package com.opms.entity; 2 | 3 | import junit.framework.Test; 4 | import junit.framework.TestCase; 5 | import junit.framework.TestSuite; 6 | 7 | /** 8 | * Unit test for simple App. 9 | */ 10 | public class AppTest extends TestCase { 11 | /** 12 | * Create the test case 13 | * 14 | * @param testName 15 | * name of the test case 16 | */ 17 | public AppTest(String testName) { 18 | super(testName); 19 | } 20 | 21 | /** 22 | * @return the suite of tests being tested 23 | */ 24 | public static Test suite() { 25 | return new TestSuite(AppTest.class); 26 | } 27 | 28 | /** 29 | * Rigourous Test :-) 30 | */ 31 | public void testApp() { 32 | assertTrue(true); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/Account.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/Account.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/CpuInfos.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/CpuInfos.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/Dic.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/Dic.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/DicType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/DicType.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/DiskInfos.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/DiskInfos.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/Log.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/Log.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/Params.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/Params.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/RoleAccount.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/RoleAccount.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/Roles.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/Roles.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/ServerInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/ServerInfo.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/ServerStatus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/ServerStatus.class -------------------------------------------------------------------------------- /opms-entity/target/classes/com/opms/entity/UserLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/classes/com/opms/entity/UserLogin.class -------------------------------------------------------------------------------- /opms-entity/target/test-classes/com/opms/entity/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-entity/target/test-classes/com/opms/entity/AppTest.class -------------------------------------------------------------------------------- /opms-mapper/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /opms-mapper/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /opms-mapper/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.compliance=1.7 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.7 9 | -------------------------------------------------------------------------------- /opms-mapper/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /opms-mapper/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /opms-mapper/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-mapper/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /opms-mapper/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | fullBuildGoals=process-test-resources 4 | resolveWorkspaceProjects=true 5 | resourceFilterGoals=process-resources resources\:testResources 6 | skipCompilerPlugin=true 7 | version=1 8 | -------------------------------------------------------------------------------- /opms-mapper/src/main/java/com/opms/mapper/AccountMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.mapper; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.opms.base.BaseMapper; 7 | import com.opms.entity.Account; 8 | 9 | public interface AccountMapper extends BaseMapper { 10 | public Account querySingleAccount(String accountName); 11 | 12 | public Account isExist(String accountName); 13 | 14 | /** 15 | * 验证用户登陆 16 | * 17 | * @param Account 18 | * account 19 | * @return 20 | */ 21 | public Account countAccount(Account account); 22 | 23 | public List queryNoMatch(Map map); 24 | } 25 | -------------------------------------------------------------------------------- /opms-mapper/src/main/java/com/opms/mapper/DicMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.mapper; 2 | 3 | import com.opms.base.BaseMapper; 4 | import com.opms.entity.Dic; 5 | 6 | public interface DicMapper extends BaseMapper { 7 | public Dic isExist(Dic dic); 8 | } 9 | -------------------------------------------------------------------------------- /opms-mapper/src/main/java/com/opms/mapper/DicTypeMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.mapper; 2 | 3 | import com.opms.base.BaseMapper; 4 | import com.opms.entity.DicType; 5 | 6 | public interface DicTypeMapper extends BaseMapper { 7 | public DicType isExist(DicType dicType); 8 | 9 | public DicType queryById(DicType dicType); 10 | } 11 | -------------------------------------------------------------------------------- /opms-mapper/src/main/java/com/opms/mapper/LogMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.mapper; 2 | 3 | import com.opms.base.BaseMapper; 4 | import com.opms.entity.Log; 5 | 6 | public interface LogMapper extends BaseMapper { 7 | } 8 | -------------------------------------------------------------------------------- /opms-mapper/src/main/java/com/opms/mapper/OperatorMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.mapper; 2 | 3 | import com.opms.base.BaseMapper; 4 | import com.opms.entity.Operator; 5 | 6 | public interface OperatorMapper extends BaseMapper{ 7 | 8 | } 9 | -------------------------------------------------------------------------------- /opms-mapper/src/main/java/com/opms/mapper/RolesMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.mapper; 2 | 3 | import com.opms.base.BaseMapper; 4 | import com.opms.entity.RoleAccount; 5 | import com.opms.entity.Roles; 6 | 7 | public interface RolesMapper extends BaseMapper { 8 | public Roles isExist(String name); 9 | 10 | public Roles findbyAccountRole(String accountId); 11 | 12 | public void addAccRole(RoleAccount roleAccount); 13 | 14 | public void deleteAccountRole(String accountId); 15 | } 16 | -------------------------------------------------------------------------------- /opms-mapper/src/main/java/com/opms/mapper/ServerInfoMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.mapper; 2 | 3 | import com.opms.base.BaseMapper; 4 | import com.opms.entity.ServerInfo; 5 | 6 | public interface ServerInfoMapper extends BaseMapper { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /opms-mapper/src/main/java/com/opms/mapper/UserLoginMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.mapper; 2 | 3 | import com.opms.base.BaseMapper; 4 | import com.opms.entity.UserLogin; 5 | 6 | public interface UserLoginMapper extends BaseMapper { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /opms-mapper/target/classes/com/opms/mapper/AccountMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-mapper/target/classes/com/opms/mapper/AccountMapper.class -------------------------------------------------------------------------------- /opms-mapper/target/classes/com/opms/mapper/DicMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-mapper/target/classes/com/opms/mapper/DicMapper.class -------------------------------------------------------------------------------- /opms-mapper/target/classes/com/opms/mapper/DicTypeMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-mapper/target/classes/com/opms/mapper/DicTypeMapper.class -------------------------------------------------------------------------------- /opms-mapper/target/classes/com/opms/mapper/LogMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-mapper/target/classes/com/opms/mapper/LogMapper.class -------------------------------------------------------------------------------- /opms-mapper/target/classes/com/opms/mapper/RolesMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-mapper/target/classes/com/opms/mapper/RolesMapper.class -------------------------------------------------------------------------------- /opms-mapper/target/classes/com/opms/mapper/ServerInfoMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-mapper/target/classes/com/opms/mapper/ServerInfoMapper.class -------------------------------------------------------------------------------- /opms-mapper/target/classes/com/opms/mapper/UserLoginMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-mapper/target/classes/com/opms/mapper/UserLoginMapper.class -------------------------------------------------------------------------------- /opms-mapper/target/test-classes/com/opms/mapper/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-mapper/target/test-classes/com/opms/mapper/AppTest.class -------------------------------------------------------------------------------- /opms-pulgins/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /opms-pulgins/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/test/java=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /opms-pulgins/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.compliance=1.7 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.7 9 | -------------------------------------------------------------------------------- /opms-pulgins/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /opms-pulgins/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-pulgins/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-pulgins/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /opms-pulgins/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | fullBuildGoals=process-test-resources 4 | resolveWorkspaceProjects=true 5 | resourceFilterGoals=process-resources resources\:testResources 6 | skipCompilerPlugin=true 7 | version=1 8 | -------------------------------------------------------------------------------- /opms-pulgins/src/test/java/新建文本文档.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /opms-pulgins/target/classes/com/opms/pulgin/mybatis/plugin/PagePlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-pulgins/target/classes/com/opms/pulgin/mybatis/plugin/PagePlugin.class -------------------------------------------------------------------------------- /opms-pulgins/target/classes/com/opms/pulgin/mybatis/plugin/PageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-pulgins/target/classes/com/opms/pulgin/mybatis/plugin/PageView.class -------------------------------------------------------------------------------- /opms-pulgins/target/classes/com/opms/pulgin/mybatis/plugin/ReflectHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-pulgins/target/classes/com/opms/pulgin/mybatis/plugin/ReflectHelper.class -------------------------------------------------------------------------------- /opms-pulgins/target/test-classes/新建文本文档.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /opms-security/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /opms-security/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/test/java=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /opms-security/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.compliance=1.7 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.7 9 | -------------------------------------------------------------------------------- /opms-security/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /opms-security/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-security/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-security/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /opms-security/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | fullBuildGoals=process-test-resources 4 | resolveWorkspaceProjects=true 5 | resourceFilterGoals=process-resources resources\:testResources 6 | skipCompilerPlugin=true 7 | version=1 8 | -------------------------------------------------------------------------------- /opms-security/target/classes/com/opms/security/MyAccessDecisionManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-security/target/classes/com/opms/security/MyAccessDecisionManager.class -------------------------------------------------------------------------------- /opms-security/target/classes/com/opms/security/MyAuthenticationFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-security/target/classes/com/opms/security/MyAuthenticationFilter.class -------------------------------------------------------------------------------- /opms-security/target/classes/com/opms/security/MySecurityFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-security/target/classes/com/opms/security/MySecurityFilter.class -------------------------------------------------------------------------------- /opms-security/target/classes/com/opms/security/MySecurityMetadataSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-security/target/classes/com/opms/security/MySecurityMetadataSource.class -------------------------------------------------------------------------------- /opms-security/target/classes/com/opms/security/MyUserDetailServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-security/target/classes/com/opms/security/MyUserDetailServiceImpl.class -------------------------------------------------------------------------------- /opms-security/target/test-classes/org/opms/security/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-security/target/test-classes/org/opms/security/AppTest.class -------------------------------------------------------------------------------- /opms-service/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /opms-service/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/test/java=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /opms-service/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.compliance=1.7 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.7 9 | -------------------------------------------------------------------------------- /opms-service/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /opms-service/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-service/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-service/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /opms-service/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | fullBuildGoals=process-test-resources 4 | resolveWorkspaceProjects=true 5 | resourceFilterGoals=process-resources resources\:testResources 6 | skipCompilerPlugin=true 7 | version=1 8 | -------------------------------------------------------------------------------- /opms-service/src/main/java/com/opms/service/DicService.java: -------------------------------------------------------------------------------- 1 | package com.opms.service; 2 | 3 | import com.opms.base.BaseService; 4 | import com.opms.entity.Dic; 5 | 6 | public interface DicService extends BaseService { 7 | public Dic isExist(Dic dic); 8 | } 9 | -------------------------------------------------------------------------------- /opms-service/src/main/java/com/opms/service/DicTypeService.java: -------------------------------------------------------------------------------- 1 | package com.opms.service; 2 | 3 | import com.opms.base.BaseService; 4 | import com.opms.entity.DicType; 5 | 6 | public interface DicTypeService extends BaseService { 7 | public DicType isExist(DicType dicType); 8 | 9 | public DicType queryById(DicType dicType); 10 | } 11 | -------------------------------------------------------------------------------- /opms-service/src/main/java/com/opms/service/LogService.java: -------------------------------------------------------------------------------- 1 | package com.opms.service; 2 | 3 | import com.opms.base.BaseService; 4 | import com.opms.entity.Log; 5 | 6 | public interface LogService extends BaseService { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /opms-service/src/main/java/com/opms/service/RolesService.java: -------------------------------------------------------------------------------- 1 | package com.opms.service; 2 | 3 | import java.util.List; 4 | 5 | import com.opms.base.BaseService; 6 | import com.opms.entity.RoleAccount; 7 | import com.opms.entity.Roles; 8 | 9 | public interface RolesService extends BaseService { 10 | public Roles isExist(String name); 11 | 12 | public Roles findbyAccountRole(String accountId); 13 | 14 | public void addAccRole(RoleAccount roleAccount); 15 | 16 | public void addAccRole(String accountId, List ids); 17 | } 18 | -------------------------------------------------------------------------------- /opms-service/src/main/java/com/opms/service/UserLoginService.java: -------------------------------------------------------------------------------- 1 | package com.opms.service; 2 | 3 | import com.opms.base.BaseService; 4 | import com.opms.entity.UserLogin; 5 | 6 | public interface UserLoginService extends BaseService { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/AccountService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/AccountService.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/DicService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/DicService.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/DicTypeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/DicTypeService.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/LogService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/LogService.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/RolesService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/RolesService.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/ServerInfoService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/ServerInfoService.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/UserLoginService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/UserLoginService.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/impl/AccountServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/impl/AccountServiceImpl.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/impl/DicServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/impl/DicServiceImpl.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/impl/DicTypeServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/impl/DicTypeServiceImpl.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/impl/LogServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/impl/LogServiceImpl.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/impl/RolesServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/impl/RolesServiceImpl.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/impl/ServerInfoServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/impl/ServerInfoServiceImpl.class -------------------------------------------------------------------------------- /opms-service/target/classes/com/opms/service/impl/UserLoginServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/classes/com/opms/service/impl/UserLoginServiceImpl.class -------------------------------------------------------------------------------- /opms-service/target/test-classes/com/opms/service/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-service/target/test-classes/com/opms/service/AppTest.class -------------------------------------------------------------------------------- /opms-utils/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /opms-utils/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/test/java=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /opms-utils/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.compliance=1.7 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.7 9 | -------------------------------------------------------------------------------- /opms-utils/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /opms-utils/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-utils/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /opms-utils/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /opms-utils/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | fullBuildGoals=process-test-resources 4 | resolveWorkspaceProjects=true 5 | resourceFilterGoals=process-resources resources\:testResources 6 | skipCompilerPlugin=true 7 | version=1 8 | -------------------------------------------------------------------------------- /opms-utils/src/main/java/com/opms/base/Base.java: -------------------------------------------------------------------------------- 1 | package com.opms.base; 2 | 3 | import java.util.List; 4 | 5 | public interface Base { 6 | /** 7 | * 返回所有数据 8 | * 9 | * @param t 10 | * @return 11 | */ 12 | public List queryAll(T t); 13 | 14 | public void delete(String id) throws Exception; 15 | 16 | public void update(T t) throws Exception; 17 | 18 | public T getById(String id); 19 | 20 | public void add(T t) throws Exception; 21 | } 22 | -------------------------------------------------------------------------------- /opms-utils/src/main/java/com/opms/base/BaseMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.base; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | /** 7 | * 所有的Mapper继承这个接口 已经实现了基本的 增,删,改,查接口,不需要重复写 8 | * 9 | * @version 1.0v 10 | */ 11 | public interface BaseMapper extends Base { 12 | /** 13 | * 返回分页后的数据 14 | * 15 | * @param List 16 | * @param t 17 | * @return 18 | */ 19 | public List query(Map map); 20 | } 21 | -------------------------------------------------------------------------------- /opms-utils/src/main/java/com/opms/base/BaseService.java: -------------------------------------------------------------------------------- 1 | package com.opms.base; 2 | 3 | import com.opms.pulgin.mybatis.plugin.PageView; 4 | 5 | /** 6 | * 所有服务接口都要继承这个 7 | * 8 | * @version 1.0v 9 | * @param 10 | */ 11 | public interface BaseService extends Base { 12 | /** 13 | * 返回分页后的数据 14 | * 15 | * @param pageView 16 | * @param t 17 | * @return 18 | */ 19 | public PageView query(PageView pageView, T t); 20 | } 21 | -------------------------------------------------------------------------------- /opms-utils/src/main/java/com/opms/util/ExcelDataMapper.java: -------------------------------------------------------------------------------- 1 | package com.opms.util; 2 | 3 | import java.lang.annotation.Retention; 4 | import java.lang.annotation.RetentionPolicy; 5 | 6 | /** 7 | * 定义annotation类,可以通过该类设置导出相应的属性,标题及排序 用来在对象的get方法上加入的annotation,通过该annotation说明某个属性所对应的标题 8 | * 9 | */ 10 | @Retention(RetentionPolicy.RUNTIME) 11 | public @interface ExcelDataMapper { 12 | 13 | public String title(); // 标题名称 14 | 15 | public int order(); // 标题顺序 16 | 17 | public int width() default 16; // 单元格宽度 18 | 19 | } 20 | -------------------------------------------------------------------------------- /opms-utils/src/main/java/com/opms/util/Md5Tool.java: -------------------------------------------------------------------------------- 1 | package com.opms.util; 2 | 3 | import java.security.MessageDigest; 4 | import java.util.Base64; 5 | import java.util.Base64.Encoder; 6 | 7 | public class Md5Tool { 8 | 9 | public static String getMd5(String password) { 10 | String str = ""; 11 | if (password != null && !password.equals("")) { 12 | try { 13 | MessageDigest md = MessageDigest.getInstance("MD5"); 14 | Encoder base = Base64.getEncoder(); 15 | // 加密后的字符串 16 | str = base.encodeToString(md.digest(password.getBytes("utf-8"))); 17 | } catch (Exception e) { 18 | e.printStackTrace(); 19 | } 20 | } 21 | return str; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /opms-utils/src/main/java/com/opms/util/SessionKey.java: -------------------------------------------------------------------------------- 1 | package com.opms.util; 2 | 3 | public interface SessionKey { 4 | 5 | String SPRING_SECURITY_CONTEXT = "SPRING_SECURITY_CONTEXT"; 6 | /** 7 | * 帐号对象 8 | */ 9 | String ACCOUNT = "account"; 10 | /** 11 | * 用户Session ID 12 | */ 13 | String USER_SESSION_ID = "user_session_id"; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /opms-utils/src/test/java/com/opms/utils/AppTest.java: -------------------------------------------------------------------------------- 1 | package com.opms.utils; 2 | 3 | import junit.framework.Test; 4 | import junit.framework.TestCase; 5 | import junit.framework.TestSuite; 6 | 7 | /** 8 | * Unit test for simple App. 9 | */ 10 | public class AppTest extends TestCase { 11 | /** 12 | * Create the test case 13 | * 14 | * @param testName 15 | * name of the test case 16 | */ 17 | public AppTest(String testName) { 18 | super(testName); 19 | } 20 | 21 | /** 22 | * @return the suite of tests being tested 23 | */ 24 | public static Test suite() { 25 | return new TestSuite(AppTest.class); 26 | } 27 | 28 | /** 29 | * Rigourous Test :-) 30 | */ 31 | public void testApp() { 32 | assertTrue(true); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/base/Base.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/base/Base.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/base/BaseMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/base/BaseMapper.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/base/BaseService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/base/BaseService.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/Common.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/Common.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/ExcelDataMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/ExcelDataMapper.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/ExcelHeader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/ExcelHeader.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/JsonDateSerializer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/JsonDateSerializer.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/Md5Tool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/Md5Tool.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/POIUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/POIUtils.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/PropertiesUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/PropertiesUtils.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/SpringMVCDateConverter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/SpringMVCDateConverter.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/TreeObject.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/TreeObject.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/TreeUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/TreeUtil.class -------------------------------------------------------------------------------- /opms-utils/target/classes/com/opms/util/UnicodeUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/classes/com/opms/util/UnicodeUtils.class -------------------------------------------------------------------------------- /opms-utils/target/test-classes/com/opms/utils/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-utils/target/test-classes/com/opms/utils/AppTest.class -------------------------------------------------------------------------------- /opms-web/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /opms-web/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /opms-web/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /opms-web/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 4 | org.eclipse.jdt.core.compiler.compliance=1.7 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.7 9 | -------------------------------------------------------------------------------- /opms-web/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /opms-web/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /opms-web/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /opms-web/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /opms-web/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /opms-web/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | fullBuildGoals=process-test-resources 4 | resolveWorkspaceProjects=true 5 | resourceFilterGoals=process-resources resources\:testResources 6 | skipCompilerPlugin=true 7 | version=1 8 | -------------------------------------------------------------------------------- /opms-web/src/main/java/com/opms/common/GameApi.java: -------------------------------------------------------------------------------- 1 | package com.opms.common; 2 | /** 3 | * 与游戏通讯API 4 | * @author kevin 5 | * 6 | */ 7 | public interface GameApi { 8 | /** 9 | * 当前在线人数 10 | */ 11 | String CURRENT_ONLINE = "/online/current"; 12 | } 13 | -------------------------------------------------------------------------------- /opms-web/src/main/java/com/opms/controller/BaseController.java: -------------------------------------------------------------------------------- 1 | package com.opms.controller; 2 | 3 | import com.opms.pulgin.mybatis.plugin.PageView; 4 | 5 | /** 6 | * 7 | */ 8 | public class BaseController { 9 | 10 | public PageView pageView = null; 11 | 12 | public PageView getPageView(Integer pageNow, Integer pageSize) { 13 | if (pageNow == null) { 14 | pageView = new PageView(1); 15 | } else { 16 | pageView = new PageView(pageNow); 17 | } 18 | if (pageSize == null) { 19 | pageSize = 20; 20 | } 21 | pageView.setPageSize(pageSize); 22 | return pageView; 23 | } 24 | } -------------------------------------------------------------------------------- /opms-web/src/main/java/sigar/libsigar-ia64-hpux-11.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/java/sigar/libsigar-ia64-hpux-11.sl -------------------------------------------------------------------------------- /opms-web/src/main/java/sigar/libsigar-pa-hpux-11.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/java/sigar/libsigar-pa-hpux-11.sl -------------------------------------------------------------------------------- /opms-web/src/main/java/sigar/libsigar-universal-macosx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/java/sigar/libsigar-universal-macosx.dylib -------------------------------------------------------------------------------- /opms-web/src/main/java/sigar/libsigar-universal64-macosx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/java/sigar/libsigar-universal64-macosx.dylib -------------------------------------------------------------------------------- /opms-web/src/main/java/sigar/sigar-amd64-winnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/java/sigar/sigar-amd64-winnt.dll -------------------------------------------------------------------------------- /opms-web/src/main/java/sigar/sigar-x86-winnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/java/sigar/sigar-x86-winnt.dll -------------------------------------------------------------------------------- /opms-web/src/main/java/sigar/sigar-x86-winnt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/java/sigar/sigar-x86-winnt.lib -------------------------------------------------------------------------------- /opms-web/src/main/resources/config.properties: -------------------------------------------------------------------------------- 1 | fromEmail=public101314@163.com 2 | toEmail=421828229@qq.com 3 | emailName=public101314 4 | emailPassword=public123456789 5 | cpu=90 6 | jvm=90 7 | ram=90 8 | rootName=root -------------------------------------------------------------------------------- /opms-web/src/main/resources/druid_jdbc.properties: -------------------------------------------------------------------------------- 1 | driverClassName:com.mysql.jdbc.Driver 2 | url:jdbc:mysql://sqld.duapp.com:4050/cfhuUqefSgRLzixqdkxj?useUnicode:true&characterEncoding:UTF-8&zeroDateTimeBehavior:convertToNull 3 | username:7YLx8FBscT1nZvSxmoVspueK 4 | password:Fo3COGyiAeoKNRFTwpGND5XrdmO8deSy 5 | 6 | filters:stat 7 | 8 | maxActive:20 9 | initialSize:1 10 | maxWait:60000 11 | minIdle:10 12 | 13 | timeBetweenEvictionRunsMillis:60000 14 | minEvictableIdleTimeMillis:300000 15 | 16 | validationQuery:SELECT 'x' 17 | testWhileIdle:true 18 | testOnBorrow:false 19 | testOnReturn:false 20 | maxOpenPreparedStatements:20 21 | 22 | removeAbandoned:true 23 | removeAbandonedTimeout:1800 24 | logAbandoned:true -------------------------------------------------------------------------------- /opms-web/src/main/resources/jdbc.properties: -------------------------------------------------------------------------------- 1 | driverClassName=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://127.0.0.1:3306/opms?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull 3 | username=root 4 | password=kevin -------------------------------------------------------------------------------- /opms-web/src/main/test/新建文本文档.txt: -------------------------------------------------------------------------------- 1 | dd -------------------------------------------------------------------------------- /opms-web/src/main/webapp/FusionCharts/Pie2D.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/FusionCharts/Pie2D.swf -------------------------------------------------------------------------------- /opms-web/src/main/webapp/FusionCharts/Pie3D.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/FusionCharts/Pie3D.swf -------------------------------------------------------------------------------- /opms-web/src/main/webapp/WEB-INF/jsp/background/operator/chooseUI.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | pageEncoding="UTF-8"%> 3 | 4 | 5 | 6 | 7 | Insert title here 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /opms-web/src/main/webapp/WEB-INF/lib/libsigar-ia64-hpux-11.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/WEB-INF/lib/libsigar-ia64-hpux-11.sl -------------------------------------------------------------------------------- /opms-web/src/main/webapp/WEB-INF/lib/libsigar-pa-hpux-11.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/WEB-INF/lib/libsigar-pa-hpux-11.sl -------------------------------------------------------------------------------- /opms-web/src/main/webapp/WEB-INF/lib/libsigar-universal-macosx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/WEB-INF/lib/libsigar-universal-macosx.dylib -------------------------------------------------------------------------------- /opms-web/src/main/webapp/WEB-INF/lib/libsigar-universal64-macosx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/WEB-INF/lib/libsigar-universal64-macosx.dylib -------------------------------------------------------------------------------- /opms-web/src/main/webapp/WEB-INF/lib/sigar-amd64-winnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/WEB-INF/lib/sigar-amd64-winnt.dll -------------------------------------------------------------------------------- /opms-web/src/main/webapp/WEB-INF/lib/sigar-x86-winnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/WEB-INF/lib/sigar-x86-winnt.dll -------------------------------------------------------------------------------- /opms-web/src/main/webapp/WEB-INF/lib/sigar-x86-winnt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/WEB-INF/lib/sigar-x86-winnt.lib -------------------------------------------------------------------------------- /opms-web/src/main/webapp/filezip/新建文本文档.txt: -------------------------------------------------------------------------------- 1 | dd -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/0.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/16x16/grid-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/16x16/grid-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/16x16/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/16x16/tree.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/air-balloon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/air-balloon-1.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/air-balloon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/air-balloon-100.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/air-balloon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/air-balloon-2.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/bg-form-field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/bg-form-field.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/bl.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/br.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/close.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/dock-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/dock-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/dock-bg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/dock-bg2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/flow-btn-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/flow-btn-bg.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/icons/other/disk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/icons/other/disk.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/icos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/icos.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/img01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/img01.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/img02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/img02.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/img03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/img03.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/input-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/input-bg.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/input-bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/input-bg1.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/leaf_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/leaf_body.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/leaf_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/leaf_bottom.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/leaf_bottom_left_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/leaf_bottom_left_b.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/leaf_bottom_soo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/leaf_bottom_soo.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/leaf_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/leaf_top.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/leaf_top_soo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/leaf_top_soo.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/left-head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/left-head.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/loading.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/login-bg.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/login-foot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/login-foot.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/login.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/logo-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/logo-login.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/menubg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/menubg.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/seach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/seach.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/t2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/t2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/tl.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/tr.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/images/woodboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/images/woodboard1.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 2 | 3 | 4 | 5 | 游戏光年运营管理系统 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/fun.base.js: -------------------------------------------------------------------------------- 1 | function rand(mi, ma) { 2 | var range = ma - mi; 3 | var out = mi + Math.round(Math.random() * range); 4 | return parseInt(out); 5 | }; 6 | 7 | function getViewSize() { 8 | var de = document.documentElement; 9 | var db = document.body; 10 | var viewW = de.clientWidth == 0 ? db.clientWidth : de.clientWidth; 11 | var viewH = de.clientHeight == 0 ? db.clientHeight : de.clientHeight; 12 | return Array(viewW, viewH); 13 | } 14 | -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/jquery-validation/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.0 2 | -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/css/ligerui-all.css: -------------------------------------------------------------------------------- 1 | @import url("ligerui-common.css"); 2 | @import url("ligerui-dialog.css"); 3 | @import url("ligerui-form.css"); 4 | @import url("ligerui-grid.css"); 5 | @import url("ligerui-layout.css"); 6 | @import url("ligerui-menu.css"); 7 | @import url("ligerui-tab.css"); 8 | @import url("ligerui-tree.css"); -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/bigloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/bigloading.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/button-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/button-disabled.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/button-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/button-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/button.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/drop-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/drop-icons.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/exclamation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/exclamation.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/invalid-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/invalid-line.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/loading.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/table.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/common/toggle.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-panel-title-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-panel-title-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-panel-title-pressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-panel-title-pressed.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-panel-title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-panel-title.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-tab-title-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-tab-title-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-tab-title-pressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-tab-title-pressed.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-tab-title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-tab-title.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-text.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-trigger-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-trigger-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-trigger-pressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-trigger-pressed.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/bg-trigger.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/btn-l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/btn-l.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/btn-r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/btn-r.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/btn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/button-bg-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/button-bg-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/button-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/checkbox.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/dateeditor-bar-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/dateeditor-bar-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/dateeditor-header-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/dateeditor-header-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/radio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/controls/radio.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/date.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/date.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/icon-first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/icon-first.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/icon-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/icon-last.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/icon-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/icon-next.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/icon-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/dateeditor/icon-prev.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/form/verify-corner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/form/verify-corner.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-checkbox-checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-checkbox-checked.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-checkbox.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-detail-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-detail-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-detail-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-detail-open.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-tree-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-tree-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-tree-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/grid-tree-open.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/header-bg-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/header-bg-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/header-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/header-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/header2-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/header2-bg.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/popup-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/popup-line.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/popup-row-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/grid/popup-row-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/bar-button-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/bar-button-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/checkbox-checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/checkbox-checked.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/checkbox.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/cross.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-close-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-close-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-down.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-drop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-drop.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-edited.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-edited.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-first.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-last.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-line.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-load.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-next.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-prev.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-select.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-sort-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-sort-asc.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-sort-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-sort-desc.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-unselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-unselect.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/icon-up.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/spr_icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/icon/spr_icons.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/accordion-content.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/accordion-content.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/accordion-header-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/accordion-header-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/accordion-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/accordion-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/layout-header-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/layout-header-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/layout-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/layout-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/layout-sidebar-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/layout-sidebar-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/mini-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/mini-bottom.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/mini-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/mini-left.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/mini-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/mini-right.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/mini-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/mini-top.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/panel-content.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/panel-content.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/panel-header-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/panel-header-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/panel-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/panel-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/panel-header2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/panel-header2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-item-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-item-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-item-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-item-left-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-item-over-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-item-over-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-item-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-item-right-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/tabs-tools.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/togglebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/layout/togglebar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-arrow.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-down.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-over-l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-over-l.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-over-m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-over-m.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-over-r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-item-over-r.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-line-x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-line-x.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-line-y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/menu/menu-line-y.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/bar-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/bar-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/header-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/header-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/header-bg.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/header2-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/header2-bg.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-btn-l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-btn-l.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-btn-r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-btn-r.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-btn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-menu-item-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-menu-item-down.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-menu.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-toolbar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/panel/panel-tools.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/folder-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/folder-open.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/folder.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/loading.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/nodeloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/nodeloading.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/nodeloading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/nodeloading2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/nodeloading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/nodeloading3.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/nodeloading4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/nodeloading4.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-leaf.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-level.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-level.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-noline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-noline.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-status-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-status-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-status-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-status-open.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-status.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree-status.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/tree/tree.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/ui/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/box-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/box-icons.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/box.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog-bc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog-bc.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog-icons.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog-tc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog-tc.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog-winbtns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog-winbtns.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialog.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialogbtn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/dialogbtn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/taskbar-task.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/taskbar-task.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/taskbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/taskbar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/taskbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/taskbar.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/taskicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Aqua/images/win/taskicon.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/css/all.css: -------------------------------------------------------------------------------- 1 | @import url("common.css"); 2 | @import url("form.css"); 3 | @import url("grid.css"); 4 | @import url("grid.css"); 5 | @import url("layout.css"); 6 | @import url("tab.css"); 7 | @import url("dialog.css"); -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/css/common.css: -------------------------------------------------------------------------------- 1 | .l-button { 2 | height: 23px; 3 | overflow: hidden; 4 | width: 70px; 5 | line-height: 23px; 6 | cursor: pointer; 7 | position: relative; text-align:center; 8 | border:1px solid #D3D3D3; color:#333333; 9 | background:url('../images/ui/button.gif') repeat-x center center; 10 | } 11 | 12 | .l-button-over,.l-button:hover { 13 | background-image:url('../images/ui/button-over.gif'); border-color:#D3D3D3; 14 | } 15 | .l-button-disabled { 16 | background-image:url('../images/ui/button-disabled.gif'); color:#9D9D9E; 17 | } -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/accordion-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/accordion-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/icon-close-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/icon-close-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/icon-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/icon-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/layout-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/layout-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-left-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-left-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-left-selected.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-right-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-right-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-right-selected.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/tabs-item-selected.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/togglebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/layout/togglebar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/btn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button-disabled.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button1.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/button2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/dateeditor-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/dateeditor-bar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/dateeditor-btn-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/dateeditor-btn-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/dateeditor-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/dateeditor-btn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/dateeditor-thead.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/dateeditor-thead.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/grid-detail-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/grid-detail-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/grid-detail-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/grid-detail-open.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/gridalt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/gridalt.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/gridbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/gridbar.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/grideditor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/grideditor.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/icon-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/icon-down.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/icon-select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/icon-select.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/icon-unselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/icon-unselect.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/icon-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/icon-up.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/input.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/inputdisabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/inputdisabled.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/loading.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/loading2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/loading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/loading3.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/loading4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/loading4.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/ui/trigger.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/win/dialog-winbtns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/win/dialog-winbtns.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/win/dialogbtn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/win/dialogbtn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/win/dialogicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray/images/win/dialogicon.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/css/all.css: -------------------------------------------------------------------------------- 1 | @import url("common.css"); 2 | @import url("tab.css"); 3 | @import url("layout.css"); 4 | @import url("dialog.css"); 5 | @import url("form.css"); 6 | @import url("grid.css"); -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/css/common.css: -------------------------------------------------------------------------------- 1 | .l-button { 2 | height: 23px; 3 | overflow: hidden; 4 | width: 70px; 5 | line-height: 23px; 6 | cursor: pointer; 7 | position: relative; text-align:center; 8 | border:1px solid #D3D3D3; color:#333333; 9 | background:url('../images/ui/button.gif') repeat-x center center; 10 | } 11 | 12 | .l-button-over,.l-button:hover { 13 | background-image:url('../images/ui/button-over.gif'); border-color:#D3D3D3; 14 | } 15 | .l-button-disabled { 16 | background-image:url('../images/ui/button-disabled.gif'); color:#9D9D9E; 17 | } -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/gridheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/gridheader.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/accordion-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/accordion-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/icon-close-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/icon-close-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/icon-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/icon-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/layout-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/layout-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-left-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-left-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-left-selected.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-right-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-right-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-right-selected.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/tabs-item-selected.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/togglebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/layout/togglebar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/tab_arrow_spr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/tab_arrow_spr.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/tab_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/tab_close.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/btn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button-disabled.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button1.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/button2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/date.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/date.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/dateeditor-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/dateeditor-bar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/dateeditor-btn-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/dateeditor-btn-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/dateeditor-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/dateeditor-btn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/dateeditor-thead.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/dateeditor-thead.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/grid-detail-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/grid-detail-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/grid-detail-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/grid-detail-open.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/gridalt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/gridalt.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/gridbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/gridbar.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/grideditor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/grideditor.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-down.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-select.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-select2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-select2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-unselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-unselect.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/icon-up.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/input.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/inputdisabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/inputdisabled.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loading.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loading2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loading3.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loading4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loading4.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loadingl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/loadingl.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/panel-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/panel-btn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/spr_icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/spr_icons.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/ui/trigger.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/win/dialog-winbtns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/win/dialog-winbtns.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/win/dialogbtn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/win/dialogbtn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/win/dialogicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Gray2014/images/win/dialogicon.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/css/style.css: -------------------------------------------------------------------------------- 1 | @import url("layout.css"); 2 | @import url("grid.css"); 3 | @import url("form.css"); -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/checkboxradio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/checkboxradio.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/icon-down-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/icon-down-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/icon-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/icon-down.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/icon-up-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/icon-up-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/icon-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/icon-up.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/invalid_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/invalid_line.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-date-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-date-icon.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-down-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-down-icon.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-focus.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-l-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-l-focus.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-l-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-l-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-l.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-r-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-r-focus.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-r-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-r-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text-r.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/form/text.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/grid/gridheaderbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/grid/gridheaderbg.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/accordion-header-over.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/accordion-header-over.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/accordion-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/accordion-header.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/layout-header-over.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/layout-header-over.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/layout-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/layout-header.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-bg.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-item-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-item-bg.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-item-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-item-left-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-item-over-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-item-over-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-item-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-item-right-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Silvery/images/layout/tabs-tools.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/css/all.css: -------------------------------------------------------------------------------- 1 | @import url("tab.css"); 2 | @import url("dialog.css"); 3 | @import url("form.css"); 4 | @import url("grid.css"); -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/gridheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/gridheader.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/accordion-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/accordion-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/icon-close-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/icon-close-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/icon-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/icon-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/layout-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/layout-header.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-left-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-left-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-left-selected.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-right-bg.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-right-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-right-selected.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/tabs-item-selected.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/togglebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/layout/togglebar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/tab_arrow_spr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/tab_arrow_spr.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/tab_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/tab_close.png -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/btn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button-disabled.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button1.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/button2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/date.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/date.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/dateeditor-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/dateeditor-bar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/dateeditor-btn-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/dateeditor-btn-over.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/dateeditor-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/dateeditor-btn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/dateeditor-thead.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/dateeditor-thead.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/grid-detail-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/grid-detail-close.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/grid-detail-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/grid-detail-open.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/gridalt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/gridalt.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/gridbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/gridbar.jpg -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/grideditor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/grideditor.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-down.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-select.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-select2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-select2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-unselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-unselect.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/icon-up.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/input.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/inputdisabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/inputdisabled.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loading.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loading2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loading3.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loading4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loading4.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loadingl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/loadingl.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/spr_icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/spr_icons.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/ui/trigger.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/win/dialog-winbtns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/win/dialog-winbtns.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/win/dialogbtn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/win/dialogbtn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/win/dialogicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/Tab/images/win/dialogicon.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/add.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/archives.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/archives.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/attibutes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/attibutes.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/back.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/bluebook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/bluebook.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/bookpen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/bookpen.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/busy.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/calendar.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/candle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/candle.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/coffee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/coffee.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/comment.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/communication.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/communication.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/config.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/customers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/customers.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/cut.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/database.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/database.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/delete.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/discuss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/discuss.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/down.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/edit.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/graywarn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/graywarn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/greenwarn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/greenwarn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/help.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/home.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/lock.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/logout.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/mailbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/mailbox.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/memeber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/memeber.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/modify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/modify.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/msn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/msn.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/myaccount.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/myaccount.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/ok.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/outbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/outbox.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/pager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/pager.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/photograph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/photograph.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/plus.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/prev.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/print.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/process.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/qq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/qq.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/refresh.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/right.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/role.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/role.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/save-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/save-disabled.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/save.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/search.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/search2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/search2.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/settings.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/true.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/true.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/up.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/jslib/ligerUI/skins/icons/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/src/main/webapp/jslib/ligerUI/skins/icons/view.gif -------------------------------------------------------------------------------- /opms-web/src/main/webapp/loginout.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | 3 | 4 | 5 | 6 | 会话过期 7 | 20 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /opms-web/src/test/java/AppTest.java: -------------------------------------------------------------------------------- 1 | 2 | import junit.framework.Test; 3 | import junit.framework.TestCase; 4 | import junit.framework.TestSuite; 5 | 6 | /** 7 | * Unit test for simple App. 8 | */ 9 | public class AppTest extends TestCase { 10 | /** 11 | * Create the test case 12 | * 13 | * @param testName 14 | * name of the test case 15 | */ 16 | public AppTest(String testName) { 17 | super(testName); 18 | } 19 | 20 | /** 21 | * @return the suite of tests being tested 22 | */ 23 | public static Test suite() { 24 | return new TestSuite(AppTest.class); 25 | } 26 | 27 | /** 28 | * Rigourous Test :-) 29 | */ 30 | public void testApp() { 31 | assertTrue(true); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /opms-web/target/classes/com/opms/controller/BaseController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/classes/com/opms/controller/BaseController.class -------------------------------------------------------------------------------- /opms-web/target/classes/com/opms/logAop/LogAopAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/classes/com/opms/logAop/LogAopAction.class -------------------------------------------------------------------------------- /opms-web/target/classes/config.properties: -------------------------------------------------------------------------------- 1 | fromEmail=public101314@163.com 2 | toEmail=421828229@qq.com 3 | emailName=public101314 4 | emailPassword=public123456789 5 | cpu=90 6 | jvm=90 7 | ram=90 8 | rootName=root -------------------------------------------------------------------------------- /opms-web/target/classes/druid_jdbc.properties: -------------------------------------------------------------------------------- 1 | driverClassName:com.mysql.jdbc.Driver 2 | url:jdbc:mysql://sqld.duapp.com:4050/cfhuUqefSgRLzixqdkxj?useUnicode:true&characterEncoding:UTF-8&zeroDateTimeBehavior:convertToNull 3 | username:7YLx8FBscT1nZvSxmoVspueK 4 | password:Fo3COGyiAeoKNRFTwpGND5XrdmO8deSy 5 | 6 | filters:stat 7 | 8 | maxActive:20 9 | initialSize:1 10 | maxWait:60000 11 | minIdle:10 12 | 13 | timeBetweenEvictionRunsMillis:60000 14 | minEvictableIdleTimeMillis:300000 15 | 16 | validationQuery:SELECT 'x' 17 | testWhileIdle:true 18 | testOnBorrow:false 19 | testOnReturn:false 20 | maxOpenPreparedStatements:20 21 | 22 | removeAbandoned:true 23 | removeAbandonedTimeout:1800 24 | logAbandoned:true -------------------------------------------------------------------------------- /opms-web/target/classes/jdbc.properties: -------------------------------------------------------------------------------- 1 | driverClassName=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://127.0.0.1:3306/opms?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull 3 | username=root 4 | password=kevin -------------------------------------------------------------------------------- /opms-web/target/classes/sigar/libsigar-ia64-hpux-11.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/classes/sigar/libsigar-ia64-hpux-11.sl -------------------------------------------------------------------------------- /opms-web/target/classes/sigar/libsigar-pa-hpux-11.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/classes/sigar/libsigar-pa-hpux-11.sl -------------------------------------------------------------------------------- /opms-web/target/classes/sigar/libsigar-universal-macosx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/classes/sigar/libsigar-universal-macosx.dylib -------------------------------------------------------------------------------- /opms-web/target/classes/sigar/libsigar-universal64-macosx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/classes/sigar/libsigar-universal64-macosx.dylib -------------------------------------------------------------------------------- /opms-web/target/classes/sigar/sigar-amd64-winnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/classes/sigar/sigar-amd64-winnt.dll -------------------------------------------------------------------------------- /opms-web/target/classes/sigar/sigar-x86-winnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/classes/sigar/sigar-x86-winnt.dll -------------------------------------------------------------------------------- /opms-web/target/classes/sigar/sigar-x86-winnt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/classes/sigar/sigar-x86-winnt.lib -------------------------------------------------------------------------------- /opms-web/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Built-By: kevin 3 | Build-Jdk: 1.8.0_45 4 | Created-By: Maven Integration for Eclipse 5 | 6 | -------------------------------------------------------------------------------- /opms-web/target/m2e-wtp/web-resources/META-INF/maven/com.opms.web/opms-web/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon May 04 15:18:34 CST 2015 3 | version=2.0 4 | groupId=com.opms.web 5 | m2e.projectName=opms-web 6 | m2e.projectLocation=E\:\\git\\opms\\opms-web 7 | artifactId=opms-web 8 | -------------------------------------------------------------------------------- /opms-web/target/test-classes/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin314229/opms/909b012dd89fabb0b07d59dda6038eb99e68074a/opms-web/target/test-classes/AppTest.class --------------------------------------------------------------------------------