├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── paasta │ │ └── scwui │ │ ├── common │ │ ├── exception │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── ScWebUIexceptionException.java │ │ │ └── ScWebUIexceptionExceptionHandler.java │ │ ├── interceptor │ │ │ └── ScwuiInterceptor.java │ │ └── util │ │ │ ├── Common.java │ │ │ ├── Constants.java │ │ │ ├── DateUtil.java │ │ │ ├── PropertiesUtil.java │ │ │ └── RestClientUtil.java │ │ ├── config │ │ ├── Application.java │ │ ├── DashboardSecurityConfiguration.java │ │ ├── FilterWrapper.java │ │ ├── ScwuiConfig.java │ │ ├── SecurityConfig.java │ │ ├── ServletInitializer.java │ │ └── WebMvcConfig.java │ │ ├── controller │ │ ├── admin │ │ │ ├── AdminRepositoryController.java │ │ │ ├── AdminServiceInstanceController.java │ │ │ ├── AdminServiceUserController.java │ │ │ └── LoginController.java │ │ ├── common │ │ │ └── CommonController.java │ │ ├── error │ │ │ └── ErrorController.java │ │ └── user │ │ │ ├── DashboardController.java │ │ │ ├── PermissionController.java │ │ │ ├── RepositoryController.java │ │ │ ├── UserController.java │ │ │ └── UserServiceInstanceController.java │ │ ├── model │ │ ├── AuthUser.java │ │ ├── BrowserResult.java │ │ ├── FileObject.java │ │ ├── InstanceUser.java │ │ ├── Repository.java │ │ ├── ServiceInstanceList.java │ │ ├── ServiceInstances.java │ │ └── User.java │ │ └── service │ │ ├── admin │ │ ├── AdminLoginService.java │ │ ├── AdminRepositoryService.java │ │ ├── AdminServiceInstanceService.java │ │ └── AdminUserService.java │ │ ├── cf │ │ └── security │ │ │ ├── DashboardAuthenticationDetails.java │ │ │ ├── DashboardAuthenticationDetailsSource.java │ │ │ ├── DashboardAuthenticationProcessingFilter.java │ │ │ ├── DashboardAuthenticationProvider.java │ │ │ ├── DashboardAuthenticationSuccessHandler.java │ │ │ ├── DashboardLogoutRedirectStrategy.java │ │ │ └── SSLUtils.java │ │ ├── common │ │ └── CommonService.java │ │ └── user │ │ ├── PermissionService.java │ │ ├── RepositoryService.java │ │ ├── UserService.java │ │ └── UserServiceInstanceService.java ├── resources │ └── application.properties └── webapp │ ├── WEB-INF │ ├── tiles │ │ └── tiles-config.xml │ └── views │ │ ├── admin │ │ ├── common │ │ │ ├── layouts │ │ │ │ └── header.jsp │ │ │ └── list │ │ │ │ └── list.jsp │ │ ├── repository │ │ │ └── repositoryList.jsp │ │ ├── serviceInstance │ │ │ └── serviceInstanceList.jsp │ │ └── user │ │ │ └── permissionList.jsp │ │ ├── chartSample.html │ │ ├── common │ │ ├── layouts │ │ │ ├── commonjs.jsp │ │ │ ├── footer.jsp │ │ │ ├── header.jsp │ │ │ ├── headerUser.jsp │ │ │ ├── taglib.jsp │ │ │ └── top.jsp │ │ └── popup │ │ │ └── popup.jsp │ │ ├── error │ │ └── error.jsp │ │ ├── login.jsp │ │ ├── templates │ │ ├── adminList_layout.jsp │ │ ├── adminRepositoryList_layout.jsp │ │ ├── admin_layout.jsp │ │ ├── error_layout.jsp │ │ ├── login_layout.jsp │ │ └── user_layout.jsp │ │ └── user │ │ ├── common │ │ ├── buttonCreateAhref.jsp │ │ ├── buttonCreateOnclick.jsp │ │ ├── buttonCreateOnclick2.jsp │ │ ├── buttonCreateOnclick3.jsp │ │ └── buttonDeleteOnclick.jsp │ │ ├── permission │ │ ├── detailPermission.jsp │ │ ├── invitePermission.jsp │ │ └── permissionList.jsp │ │ ├── permissions │ │ ├── permissionCreate.jsp │ │ └── permissionList.jsp │ │ ├── repository │ │ ├── repositoryBrowse.jsp │ │ ├── repositoryBrowseList.jsp │ │ ├── repositoryContent.jsp │ │ ├── repositoryCreate.jsp │ │ ├── repositoryDetail.jsp │ │ ├── repositoryList.jsp │ │ ├── repositoryModify.jsp │ │ ├── repositoryView.jsp │ │ └── serviceInstantList.jsp │ │ ├── user │ │ ├── instanceUserModify.jsp │ │ ├── setFirstUserInfoModify.jsp │ │ └── userMyInfoModify.jsp │ │ └── userMyModifyPassword.jsp │ ├── messages │ └── message.properties │ └── resources │ ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── css │ ├── board.css │ ├── common.css │ ├── custom.css │ ├── font │ │ ├── NanumGothic-Bold.eot │ │ ├── NanumGothic-Bold.ttf │ │ ├── NanumGothic-Bold.woff │ │ ├── NanumGothic-Bold.woff2 │ │ ├── NanumGothic-ExtraBold.eot │ │ ├── NanumGothic-ExtraBold.ttf │ │ ├── NanumGothic-ExtraBold.woff │ │ ├── NanumGothic-ExtraBold.woff2 │ │ ├── NanumGothic-Regular.eot │ │ ├── NanumGothic-Regular.ttf │ │ ├── NanumGothic-Regular.woff │ │ └── NanumGothic-Regular.woff2 │ ├── layout.css │ └── select.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── images │ ├── a_top.gif │ ├── bg_conbartype.gif │ ├── bg_csearch.png │ ├── bg_header.png │ ├── board_ico_file.png │ ├── board_ico_folder.png │ ├── btn_totalSearch.png │ ├── favicon.ico │ ├── ico_app.png │ ├── ico_arr_down.png │ ├── ico_arr_down_click.png │ ├── ico_arr_down_on.png │ ├── ico_branches.png │ ├── ico_branches_on.png │ ├── ico_commint.png │ ├── ico_commint_on.png │ ├── ico_contributor.png │ ├── ico_contributor_on.png │ ├── ico_create.png │ ├── ico_dot_blue.gif │ ├── ico_dot_gray.gif │ ├── ico_error.png │ ├── ico_file.png │ ├── ico_file_on.png │ ├── ico_modify.png │ ├── ico_page_first.gif │ ├── ico_page_last.gif │ ├── ico_page_next.gif │ ├── ico_page_pre.gif │ ├── ico_search.gif │ ├── ico_update.png │ ├── icon_search_arrow.gif │ ├── img_git.png │ ├── img_svn.png │ ├── location_arrow.png │ ├── location_home.png │ ├── login_id_i.png │ ├── logo.png │ ├── process02_arrow.png │ ├── process_ico_admin.png │ ├── process_ico_contribute.png │ ├── process_ico_modify.png │ ├── process_ico_normal.png │ ├── process_ico_own.png │ ├── process_ico_ownership.png │ ├── process_ico_participate.png │ ├── process_ico_private.png │ ├── process_ico_public.png │ └── process_ico_stop.png │ └── js │ ├── bootstrap.js │ ├── common.js │ ├── cont_tab.js │ └── lib │ └── jquery-3.2.1.min.js └── test └── ApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/common/exception/GlobalExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/common/exception/GlobalExceptionHandler.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/common/exception/ScWebUIexceptionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/common/exception/ScWebUIexceptionException.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/common/exception/ScWebUIexceptionExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/common/exception/ScWebUIexceptionExceptionHandler.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/common/interceptor/ScwuiInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/common/interceptor/ScwuiInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/common/util/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/common/util/Common.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/common/util/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/common/util/Constants.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/common/util/DateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/common/util/DateUtil.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/common/util/PropertiesUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/common/util/PropertiesUtil.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/common/util/RestClientUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/common/util/RestClientUtil.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/config/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/config/Application.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/config/DashboardSecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/config/DashboardSecurityConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/config/FilterWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/config/FilterWrapper.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/config/ScwuiConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/config/ScwuiConfig.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/config/SecurityConfig.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/config/ServletInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/config/ServletInitializer.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/config/WebMvcConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/config/WebMvcConfig.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/admin/AdminRepositoryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/admin/AdminRepositoryController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/admin/AdminServiceInstanceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/admin/AdminServiceInstanceController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/admin/AdminServiceUserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/admin/AdminServiceUserController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/admin/LoginController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/admin/LoginController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/common/CommonController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/common/CommonController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/error/ErrorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/error/ErrorController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/user/DashboardController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/user/DashboardController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/user/PermissionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/user/PermissionController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/user/RepositoryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/user/RepositoryController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/user/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/user/UserController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/controller/user/UserServiceInstanceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/controller/user/UserServiceInstanceController.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/model/AuthUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/model/AuthUser.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/model/BrowserResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/model/BrowserResult.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/model/FileObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/model/FileObject.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/model/InstanceUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/model/InstanceUser.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/model/Repository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/model/Repository.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/model/ServiceInstanceList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/model/ServiceInstanceList.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/model/ServiceInstances.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/model/ServiceInstances.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/model/User.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/admin/AdminLoginService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/admin/AdminLoginService.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/admin/AdminRepositoryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/admin/AdminRepositoryService.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/admin/AdminServiceInstanceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/admin/AdminServiceInstanceService.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/admin/AdminUserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/admin/AdminUserService.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationDetails.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationDetailsSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationDetailsSource.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationProcessingFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationProcessingFilter.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationProvider.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationSuccessHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/cf/security/DashboardAuthenticationSuccessHandler.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/cf/security/DashboardLogoutRedirectStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/cf/security/DashboardLogoutRedirectStrategy.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/cf/security/SSLUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/cf/security/SSLUtils.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/common/CommonService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/common/CommonService.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/user/PermissionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/user/PermissionService.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/user/RepositoryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/user/RepositoryService.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/user/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/user/UserService.java -------------------------------------------------------------------------------- /src/main/java/com/paasta/scwui/service/user/UserServiceInstanceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/java/com/paasta/scwui/service/user/UserServiceInstanceService.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/tiles/tiles-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/tiles/tiles-config.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/admin/common/layouts/header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/admin/common/layouts/header.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/admin/common/list/list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/admin/common/list/list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/admin/repository/repositoryList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/admin/repository/repositoryList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/admin/serviceInstance/serviceInstanceList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/admin/serviceInstance/serviceInstanceList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/admin/user/permissionList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/admin/user/permissionList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/chartSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/chartSample.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/common/layouts/commonjs.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/common/layouts/commonjs.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/common/layouts/footer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/common/layouts/footer.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/common/layouts/header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/common/layouts/header.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/common/layouts/headerUser.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/common/layouts/headerUser.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/common/layouts/taglib.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/common/layouts/taglib.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/common/layouts/top.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/common/layouts/top.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/common/popup/popup.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/common/popup/popup.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/error/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/error/error.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/login.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/templates/adminList_layout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/templates/adminList_layout.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/templates/adminRepositoryList_layout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/templates/adminRepositoryList_layout.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/templates/admin_layout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/templates/admin_layout.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/templates/error_layout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/templates/error_layout.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/templates/login_layout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/templates/login_layout.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/templates/user_layout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/templates/user_layout.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/common/buttonCreateAhref.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/common/buttonCreateAhref.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/common/buttonCreateOnclick.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/common/buttonCreateOnclick.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/common/buttonCreateOnclick2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/common/buttonCreateOnclick2.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/common/buttonCreateOnclick3.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/common/buttonCreateOnclick3.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/common/buttonDeleteOnclick.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/common/buttonDeleteOnclick.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/permission/detailPermission.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/permission/detailPermission.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/permission/invitePermission.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/permission/invitePermission.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/permission/permissionList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/permission/permissionList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/permissions/permissionCreate.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/permissions/permissionCreate.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/permissions/permissionList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/permissions/permissionList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/repository/repositoryBrowse.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/repository/repositoryBrowse.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/repository/repositoryBrowseList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/repository/repositoryBrowseList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/repository/repositoryContent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/repository/repositoryContent.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/repository/repositoryCreate.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/repository/repositoryCreate.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/repository/repositoryDetail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/repository/repositoryDetail.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/repository/repositoryList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/repository/repositoryList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/repository/repositoryModify.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/repository/repositoryModify.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/repository/repositoryView.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/repository/repositoryView.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/repository/serviceInstantList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/repository/serviceInstantList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/user/instanceUserModify.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/user/instanceUserModify.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/user/setFirstUserInfoModify.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/user/setFirstUserInfoModify.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/user/userMyInfoModify.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/user/userMyInfoModify.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/user/userMyModifyPassword.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/WEB-INF/views/user/userMyModifyPassword.jsp -------------------------------------------------------------------------------- /src/main/webapp/messages/message.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/messages/message.properties -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/bootstrap/js/npm.js -------------------------------------------------------------------------------- /src/main/webapp/resources/css/board.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/board.css -------------------------------------------------------------------------------- /src/main/webapp/resources/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/common.css -------------------------------------------------------------------------------- /src/main/webapp/resources/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/custom.css -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-Bold.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-Bold.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-Bold.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-Bold.woff2 -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-ExtraBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-ExtraBold.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-ExtraBold.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-ExtraBold.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-Regular.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-Regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-Regular.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/css/font/NanumGothic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/font/NanumGothic-Regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/resources/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/layout.css -------------------------------------------------------------------------------- /src/main/webapp/resources/css/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/css/select.css -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/resources/images/a_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/a_top.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bg_conbartype.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/bg_conbartype.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bg_csearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/bg_csearch.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/bg_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/bg_header.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/board_ico_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/board_ico_file.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/board_ico_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/board_ico_folder.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/btn_totalSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/btn_totalSearch.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_app.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_arr_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_arr_down.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_arr_down_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_arr_down_click.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_arr_down_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_arr_down_on.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_branches.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_branches_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_branches_on.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_commint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_commint.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_commint_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_commint_on.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_contributor.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_contributor_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_contributor_on.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_create.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_dot_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_dot_blue.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_dot_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_dot_gray.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_error.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_file.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_file_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_file_on.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_modify.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_page_first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_page_first.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_page_last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_page_last.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_page_next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_page_next.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_page_pre.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_page_pre.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_search.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/ico_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/ico_update.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/icon_search_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/icon_search_arrow.gif -------------------------------------------------------------------------------- /src/main/webapp/resources/images/img_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/img_git.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/img_svn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/img_svn.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/location_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/location_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/location_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/location_home.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/login_id_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/login_id_i.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/logo.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process02_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process02_arrow.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_admin.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_contribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_contribute.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_modify.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_normal.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_own.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_ownership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_ownership.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_participate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_participate.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_private.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_public.png -------------------------------------------------------------------------------- /src/main/webapp/resources/images/process_ico_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/images/process_ico_stop.png -------------------------------------------------------------------------------- /src/main/webapp/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/webapp/resources/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/js/common.js -------------------------------------------------------------------------------- /src/main/webapp/resources/js/cont_tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/js/cont_tab.js -------------------------------------------------------------------------------- /src/main/webapp/resources/js/lib/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/main/webapp/resources/js/lib/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /src/test/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/SOURCE-CONTROL-UI/HEAD/src/test/ApplicationTests.java --------------------------------------------------------------------------------